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
ChunkedPush Chunks the given `objects` list in subset of 1000 elements max in order to make it fit in `push` requests by leveraging the Transformation pipeline setup in the Push connector (https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/connectors/push/).
3
+
4
+
@param indexName string - the index name to save objects into.
5
+
@param objects []map[string]any - List of objects to save.
6
+
@param action Action - The action to perform on the objects.
7
+
@param referenceIndexName *string - This is required when targeting an index that does not have a push connector setup (e.g. a tmp index), but you wish to attach another index's transformation to it (e.g. the source index name).
8
+
@param opts ...ChunkedBatchOption - Optional parameters for the request.
9
+
@return []ingestion.WatchResponse - List of push responses.
ChunkedPush Chunks the given `objects` list in subset of 1000 elements max in order to make it fit in `push` requests by leveraging the Transformation pipeline setup in the Push connector (https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/connectors/push/).
597
-
598
-
@param indexName string - the index name to save objects into.
599
-
@param objects []map[string]any - List of objects to save.
600
-
@param action Action - The action to perform on the objects.
601
-
@param referenceIndexName *string - This is required when targeting an index that does not have a push connector setup (e.g. a tmp index), but you wish to attach another index's transformation to it (e.g. the source index name).
602
-
@param opts ...ChunkedBatchOption - Optional parameters for the request.
603
-
@return []ingestion.WatchResponse - List of push responses.
0 commit comments