Use this file to discover all available pages before exploring further.
Required ACL:addObject, deleteIndex, editSettingsUse 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.
// Initialize the clientvar client = new IngestionClient( new IngestionConfig("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY", "ALGOLIA_APPLICATION_REGION"));// Records to pushvar objects = new List<object>{ new { objectID = "1", name = "Record 1" }, new { objectID = "2", name = "Record 2" },};// Push records in batchesvar responses = await client.ChunkedPushAsync( "INDEX_NAME", objects, Action.AddObject, waitForTasks: true, batchSize: 1000);