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
demandé il y a 3 mois131 vues
2 réponses
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
répondu il y a 3 mois
profile picture
EXPERT
vérifié il y a 2 mois
  • 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
répondu il y a 2 mois
profile picture
EXPERT
vérifié il y a 2 mois
  • 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

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions