Michael Penkov
Michael Penkov
@SootyOwl What is the use case? Why are you attempting to pass a botocore session? Are you sure that object is safe to pass across a subprocess boundary? Under the...
As discussed in #749, botocore sessions are not pickle-able, so it is impossible to pass them to a child subprocess, which is what iter_bucket does (it starts a bunch of...
Are you able to profile the code to work out where the time-consuming part is? It seems that *downloading* is slow, because you're using smart_open for the upload in both...
Closing as stale
Closing as stale
The links on PyPI come from README.md, AFAIK https://github.com/RaRe-Technologies/gensim/blob/develop/README.md
Thank you!
Sounds reasonable, but let's use shorter values for the options, e.g. `optimize: [reading|streaming|auto]` @jcushman Can you comment on the defer seek part?
After thinking about this some more, I can think of another alternative. We can specify the range to always read at most N bytes, where N is configurable via transport...
Yes, that makes sense. 1. Seeking should _not_ close the body when the seek position is within the buffer 2. I think we can remove it, and provide documentation for...