You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The RestHighLevelClient had a convenience method on BulkRequest that allowed us to dynamically batch bulk operations without exceeding OpenSearch's max request size.
What solution would you like?
Is this available in the current client? If not, can it be added? I don't mind porting the old implementation if needed.
What alternatives have you considered?
I'm implementing it myself but I have to use reflection to access private fields on UpdateOperationData such as the script to get its length if I don't want to serialize it just to get its size and then have the library reserialize it again when it sends it as part of the request.
Do you have any additional context?
Nope!
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem?
The RestHighLevelClient had a convenience method on BulkRequest that allowed us to dynamically batch bulk operations without exceeding OpenSearch's max request size.
What solution would you like?
Is this available in the current client? If not, can it be added? I don't mind porting the old implementation if needed.
What alternatives have you considered?
I'm implementing it myself but I have to use reflection to access private fields on UpdateOperationData such as the script to get its length if I don't want to serialize it just to get its size and then have the library reserialize it again when it sends it as part of the request.
Do you have any additional context?
Nope!
The text was updated successfully, but these errors were encountered: