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
summary: Pushes records to be transformed through the Pipeline, directly to an index
3
+
description: >
4
+
Pushes records through the Pipeline, directly to an index. You can make the call synchronous by providing the `watch` parameter,
5
+
for asynchronous calls, you can use the observability endpoints and/or debugger dashboard to see the status of your task.
6
+
7
+
If you want to leverage the [pre-indexing data transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data/), this is the recommended way of ingesting your records.
8
+
9
+
This method is similar to `pushTask`, but requires an `indexName` instead of a `taskID`. If zero or many tasks are found,
Copy file name to clipboardExpand all lines: specs/ingestion/paths/tasks/v2/pushTask.yml
+10-28Lines changed: 10 additions & 28 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,14 @@
1
1
post:
2
2
tags:
3
3
- tasks
4
-
summary: Push a `batch` request payload through the Pipeline
5
-
description: Push a `batch` request payload through the Pipeline. You can check the status of task pushes with the observability endpoints.
4
+
summary: Pushes records to be transformed through the Pipeline, directly to an index
5
+
description: >
6
+
Pushes records through the Pipeline, directly to an index. You can make the call synchronous by providing the `watch` parameter,
7
+
for asynchronous calls, you can use the observability endpoints and/or debugger dashboard to see the status of your task.
8
+
9
+
If you want to leverage the [pre-indexing data transformation](https://www.algolia.com/doc/guides/sending-and-managing-data/send-and-update-your-data/how-to/transform-your-data/), this is the recommended way of ingesting your records.
10
+
11
+
This method is similar to `push`, but requires a `taskID` instead of a `indexName`, which is useful when many `destinations` target the same `indexName`.
0 commit comments