{
"stages": [
{
"type": "<string>",
"id": "<string>",
"skip": false,
"label": "<string>",
"condition": "<string>"
}
],
"output": {},
"outputEncounteredCount": 123
}Debug a pipeline
The documents to be debugged are sent in the request body. The output shows the state of the document after each indexing stage. A debug request will index documents to the system, but you can prevent it from doing so by setting the query parameter ‘simulate’ to false.
{
"stages": [
{
"type": "<string>",
"id": "<string>",
"skip": false,
"label": "<string>",
"condition": "<string>"
}
],
"output": {},
"outputEncounteredCount": 123
}Path Parameters
The name of a specific pipeline
The name of a specific collection
Query Parameters
If true, documents won’t be sent to Solr for indexing; the solr-index stage is skipped
If true, return the list of indexed documents; if false, no output is returned
The maximum number of documents to list in the output
If true, documents will be buffered before sending to Solr; this is an asynchronous mode and may give faster performance when indexing a large number of documents
A string containing the name of the index pipeline that processes the link events; required for event processing
A comma-separated list of eventTypes to be processed by the specified index pipeline; the only supported event type is 'links'
Body
The body is of type any.
Was this page helpful?