-
-
Notifications
You must be signed in to change notification settings - Fork 183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reusable Initialization of aiobotocore S3 Client #1111
Comments
I tried implementing using the below code but it did not work I was getting Runtime error, Event loop is closed. I am executing operations such as download, upload in my celery task. class AsyncS3ClientSingleton(metaclass=AWSMeta):
_async_s3_client = None
@classmethod
async def get_s3_client(cls) -> Any:
if not cls._async_s3_client:
# Lazy initialization of the S3 client
session = aioboto3.Session()
ctx = session.client(
"s3",
aws_access_key_id=AWS_ACCESS_KEY,
aws_secret_access_key=AWS_ACCESS_KEY_SECRET,
region_name="us-east-1",
)
cls._async_s3_client = await ctx.__aenter__()
return cls._async_s3_client But when I create the session and client for every operation as shown below it works fine, though it defeats the purpose of reusing the client. session = aioboto3.Session()
async with session.client(
"s3",
aws_access_key_id=AWS_ACCESS_KEY,
aws_secret_access_key=AWS_ACCESS_KEY_SECRET,
region_name="us-east-1",
) as async_s3_client:
await async_s3_client.upload_file(file_name, bucket, key) Please help me fix this. I feel it has something to do with session being tied to an event loop and everytime a new celery task is initiated, new event loop is created. Only speculation though |
you need to track the lifetimes of your event loops. The client is only valid for the life of the run loop |
sorry it took so long to get back, somehow missed this |
Is tracking an obligation? Especially in runtimes that are shortlived (e.g. AWS Lambda), this shouldn't really be a concern. I also use (and am looking for an equivalent) the singleton pattern (i.e. initialising one client and using it for everything) in Kotlin and other languages. Is it possible to achieve it with aiobotocore or should we just initialize these connections with the async enter/exit pattern? |
This issue has been marked as stale because it has been inactive for more than 60 days. Please update this pull request or it will be automatically closed in 7 days. |
For lambdas you basically just use a context from your main. So when main exits the client is unrolled |
Discussed in #1110
Originally posted by all4one-max April 21, 2024
I'm in the process of migrating our Python package, used by various applications within our organization, from boto3 to aiobotocore. In our existing implementation with boto3, we ensure singleton initialization of the S3 client to optimize resource usage and avoid redundant client creation.
Existing Implementation with boto3:
However, transitioning to aiobotocore poses a challenge as it requires using context managers for client creation, and the client doesn't exist outside the context. I aim to encapsulate this singleton logic within our package itself, rather than relying on configuration in the application lifecycle.
I've explored several sources, including the aiobotocore documentation and relevant discussions on GitHub and Stack Overflow, but haven't found a satisfactory solution yet.
Sources referred:
The text was updated successfully, but these errors were encountered: