Implement support for asyncio.#251
Conversation
|
@chrisimcevoy let me know if you have feedback! |
Current coverage is 93.32% (diff: 71.42%)@@ master #251 diff @@
==========================================
Files 39 39
Lines 3786 3775 -11
Methods 0 0
Messages 0 0
Branches 0 0
==========================================
- Hits 3540 3523 -17
- Misses 246 252 +6
Partials 0 0
|
|
Hey @mvantellingen - Good stuff! I wasn't expecting to see this so soon! Your implementation is a lot cleaner in the way you separated the asyncio stuff into its own module. I like the example too - the direct comparison between sync and async is striking. I haven't had a lot of time to play with this PR yet, but at first glance I have two comments if you don't mind? i) AsyncTransport._load_remote_data() uses a synchronous GET via requests.Session(), the same as the regular zeep.Transport()... It seems undesirable to have a blocking operation there if the user expects concurrency? In other words, while you can call operations asynchronously once the Client is instantiated, it isn't possible for the user to instantiate multiple Clients/AsyncTransports concurrently with this code; You would have to wait for each AsyncTransport to fetch it's WSDL one after the other, which sounds counter-intuitive. In #207 this was possible via the Client.create() classmethod/coroutine (although that classmethod maybe looks a little garish in hindsight), for example: ii) I don't think that requests.auth.HTTPBasicAuth() and aiohttp.BasicAuth() are interchangeable. As far as I can tell, passing an http_auth kwarg to this PR's AsyncTransport will result in one of two errors because the same value is used for both the AsyncTransport._load_session (requests) and the AsyncTransport.session (aiohttp). I did an implicit conversion on this in #207 inside of AsyncTransport's init() to avoid confusion for end users who are accustomed to zeep's synchronous, requests-based API. Those points aside, very excited to see this going somewhere! |
Thanks, wanted to play a bit with the async io stuff after a Django under the hood presentation last friday. :-)
I actually really appreciate the feedback!
So my idea was to first only offer async during regular operations. This minimises the impact on the codebase as a whole and still offers a number of benefits. The client should be thread safe so creating the client once and reusing it in coroutines shouldn't be an problem (as far as I can tell now, my experience with asyncio is very limited). However that said, I will go through your code again to see if making the load() operations async aware is possible. Otherwise this might be a good step as long as the limitiations are documented clearly.
Ok, yeah makes sense. The http_auth is now used for both aiohttp and requests. So maybe the best solution is to use the aiohttp for synchronous requests (see point 1)? Is this even possible? I'll try to get a better grasp of the module.
Yeah, I think it's quite cool and allows you to easily fanout multiple requests |
31baac2 to
e70f5ce
Compare
This adds an optional AsyncTransport class which only works for Python 3.5. Code is heavily inspired by the pull-request from chrisimcevoy (see #207)
This is for now a blocking call to make the integration easier.
e70f5ce to
fde7fe7
Compare
This adds an optional AsyncTransport class which only works for
Python 3.5. Code is heavily inspired by the pull-request from
chrisimcevoy (see #207)