Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs.feldera.com/docs/formats/csv.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,3 +189,4 @@ create table FAILED_BANKS (
- `"fields"` — strip leading and trailing ASCII whitespace from every field value.
- `"headers"` — strip whitespace from header names only (effective only when `headers` is `true`).
- `"all"` — strip whitespace from both field values and header names.
- `buffer_size_records`: Maximum number of records to batch into a single output message (output connectors only). When this threshold is reached, the encoder flushes the buffer to the transport. The default is `10000`.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do we need to say encoder or transport here? I don't think they are user-facing concepts. Same comment elsewhere.

1 change: 1 addition & 0 deletions docs.feldera.com/docs/formats/json.md
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,7 @@ create table PART (
- `update_format`: Choose data change event format for this connector. Supported values are `insert_delete` and `raw`. The default is `insert_delete`.
- `array`: Whether to enable array encoding. The default is `false`.
- `lines`: How many input lines may be part of a JSON value. The default, `multiple`, allows individual JSON values to span multiple lines. Specify `single` to limit support to newline-delimited JSON (NDJSON), a subset of JSON which does not allow a new-line inside a value.
- `buffer_size_records`: Maximum number of records to batch into a single output message (output connectors only). When this threshold is reached, the encoder flushes the buffer to the transport. The default is `10000`.

See also the [input/output connector tutorial](/tutorials/basics/part3.md).

Expand Down
4 changes: 4 additions & 0 deletions docs.feldera.com/docs/formats/parquet.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ and [Arrow types](https://docs.rs/arrow/latest/arrow/datatypes/enum.DataType.htm
| `VARIANT` | `LargeUtf8` (JSON-encoded string, see [VARIANT documentation](/sql/json)) |


## Output configuration

- `buffer_size_records`: Maximum number of records to batch into a single output Parquet file (output connectors only). When this threshold is reached, the encoder flushes the buffer to the transport. The default is `100000`.

## Example

In this example, we configure a table to load data from a Parquet file.
Expand Down