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
Copy file name to clipboardExpand all lines: docs/modules/ROOT/pages/pipes/configuration.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -136,7 +136,7 @@ See also xref:pipes/timeouts.adoc[Timeouts] for the full timeout model.
136
136
137
137
|`maxTotalTaskTimeoutMillis`
138
138
|`3600000`
139
-
|Ceiling for *request-supplied* timeout limits: a per-request `timeout-limits` override may lower its timeouts freely but can never raise `totalTaskTimeoutMillis` or `progressTimeoutMillis` above this value (values over the cap are clamped with a warning). Limits set in the server's own `parse-context` are trusted and not subject to this cap.
139
+
|Ceiling for *request-supplied* timeout limits: a per-request `timeout-limits` override may lower its timeouts freely but can never raise `totalTaskTimeoutMillis` or `progressTimeoutMillis` above this value (values over the cap are clamped with a warning). Limits set in the server's own `parse-context` — or in a preset a request selects — are trusted and not subject to this cap.
Copy file name to clipboardExpand all lines: docs/modules/ROOT/pages/pipes/plugins/json.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,6 +57,6 @@ Unlike the other iterators, this one takes no `fetcherId` / `emitterId`: each li
57
57
== Notes
58
58
59
59
* The file format is JSON-lines (also called NDJSON) — one valid JSON object per line, no surrounding array brackets.
60
-
* Each line must be a serialized `FetchEmitTuple`: `id`, `fetcher`, `fetchKey`, `emitter`, `emitKey`, and optionally `fetchRangeStart`, `fetchRangeEnd`, `metadata`, `parse-context`, `onParseException`. Any other
60
+
* Each line must be a serialized `FetchEmitTuple`: `id`, `fetcher`, `fetchKey`, `emitter`, `emitKey`, and optionally `fetchRangeStart`, `fetchRangeEnd`, `metadata`, `parse-context`, `onParseException`, `preset`. Any other
61
61
field is rejected — the deserializer does not tolerate unknown keys.
62
62
* For columnar work items in a CSV, use the xref:pipes/plugins/csv.adoc[CSV iterator] instead.
Copy file name to clipboardExpand all lines: tika-pipes/tika-pipes-core/src/main/java/org/apache/tika/pipes/core/serialization/FetchEmitTupleDeserializer.java
Copy file name to clipboardExpand all lines: tika-pipes/tika-pipes-core/src/main/java/org/apache/tika/pipes/core/serialization/FetchEmitTupleSerializer.java
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,7 @@ public class FetchEmitTupleSerializer extends JsonSerializer<FetchEmitTuple> {
0 commit comments