You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instances of object-storage (e.g. S3Client) and credential-vending clients (e.g. StsClient) are "fully" created for every client request. This means, that also implicit resources like HTTP connection pools and thread pools are created for every client request. This is too expensive.
@flyrain re-creating HTTP connections and thread pools is a completely unnecessary waste of system resources, without guarantees that these system resources are properly released, risking system stability. So the labels you've removed are IMHO justified, so I'm re-adding those.
Describe the bug
Instances of object-storage (e.g.
S3Client
) and credential-vending clients (e.g.StsClient
) are "fully" created for every client request. This means, that also implicit resources like HTTP connection pools and thread pools are created for every client request. This is too expensive.Related to #563
The text was updated successfully, but these errors were encountered: