How do I request a python sdk boto3 feature?

0

i want a python equivalent of the amazonSNSAsync.publishAsync() call in boto3. how do i request that feature? this needs to be done for a customer too.

archws
asked 2 months ago126 views
2 Answers
0

Hello.

If you have a feature request for boto3, there is a possibility that it will be responded to if you make the request as an issue on GitHub.
https://github.com/boto/boto3

If you want to perform asynchronous processing in Python, I think you should use something like "asyncio" to reproduce it.
https://docs.python.org/3/library/asyncio.html

profile picture
EXPERT
answered 2 months ago
profile picture
EXPERT
reviewed 2 months ago
  • yeah i've tried a handful of asyncio, concurrent processing combo solutions, I still want to cut down on the publish() blocking time.

0

Why do you need this feature? You have the option to send messages of course. The API call is blocking, but this is how boto3 works for all APIs. Java has a different way of interacting with services

profile pictureAWS
EXPERT
Uri
answered 2 months ago
profile picture
EXPERT
reviewed 2 months ago
  • i need this feature because the python implementation of publish() is taking too long (70ms latency first call then plateaus around 20ms). I don't need to wait around for a success/failure response. I want to send and forget

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions