addObject, deleteIndex, editSettings
Use chunkedPush to push a large number of records to an index
through the transformation pipeline.
This helper method splits your records into batches (1,000 records by default)
and sends each batch as a push request.
This lets you index large datasets without worrying about request size limits.
To use this method, you need a Push to Algolia connector.
The Search API client helpers,
such as saveObjectsWithTransformation
and replaceAllObjectsWithTransformation,
use chunkedPush internally.
Use chunkedPush directly on the Ingestion client if you need more control
over the indexing action or batch size.
This method is subject to connector limits.
Usage
Parameters
- C#
- Go
- Java
- JavaScript
- PHP
- Python
Name of the index to push records to.
Records to push.
Indexing action to perform on the records,
such as
AddObject or PartialUpdateObject.Whether to wait for each push task to complete before returning.
Number of records to include in each batch.
Index to use as a reference for index settings.
Additional request options.
Token to cancel the operation.