Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify supported version for batch #128

Merged
merged 1 commit into from
Dec 12, 2024
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
4 changes: 4 additions & 0 deletions delivery/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,10 @@ File sink currently supports only append-only mode, so please change the query t

## Batching strategy for file sink

<Note>
Batching strategy for file sink is newly introduced in version 2.1 and is not supported in versions prior to 2.1. If you want to use it, please upgrade to version 2.1.
</Note>

RisingWave implements batching strategies for file sinks to optimize file management by preventing the generation of numerous small files. The batching strategy is available for Parquet, JSON, and CSV encode.

### Category
Expand Down
4 changes: 4 additions & 0 deletions ingestion/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,10 @@ RisingWave supports reading data from file sources including AWS S3, GCS, and Az

### Batch reading from file source

<Note>
Batch reading from file source is newly introduced in version 2.1 and is not supported in versions prior to 2.1. If you want to use it, please upgrade to version 2.1.
</Note>

To read data in batch from file sources, you need to create a materialized view from the source or create a table with the appropriate connector. You can also directly query the file source. Below are examples using AWS S3.

```sql
Expand Down
Loading