jina.clients.request.asyncio module
Module for async requests generator.
async jina.clients.request.asyncio.request_generator(exec_endpoint, data, request_size=0, data_type=DataInputType.AUTO, target_executor=None, parameters=None, \*kwargs*)[source]
An async :function:`request_generator`.
Parameters
exec_endpoint (
str
) – the endpoint string, by convention starts with /data (GeneratorSourceType) – the data to use in the request
request_size (
int
) – the number of Documents per requestdata_type (DataInputType) – if
data
is an iterator over self-contained document, i.e.DocumentSourceType
; or an iterator over possible Document content (set to text, blob and buffer).parameters (
Optional
[Dict
]) – the kwargs that will be sent to the executortarget_executor (
Optional
[str
]) – a regex string. Only matching Executors will process the request.kwargs – additional arguments
Yield
request
Return type
AsyncIterator
[ForwardRef
]