Merge pull request #55093 from melvynator/patch-12

Update s3queue.md to add experimental flag
This commit is contained in:
robot-ch-test-poll4 2023-09-29 13:55:55 +02:00 committed by GitHub
commit df4b4ea46a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,9 +4,16 @@ sidebar_position: 7
sidebar_label: S3Queue
---
# S3Queue Table Engine
# [experimental] S3Queue Table Engine
This engine provides integration with [Amazon S3](https://aws.amazon.com/s3/) ecosystem and allows streaming import. This engine is similar to the [Kafka](../../../engines/table-engines/integrations/kafka.md), [RabbitMQ](../../../engines/table-engines/integrations/rabbitmq.md) engines, but provides S3-specific features.
:::note
This table engine is experimental. To use it, set `allow_experimental_s3queue` to 1 by using the `SET` command:
```sql
SET allow_experimental_s3queue=1
```
:::
## Create Table {#creating-a-table}
``` sql