-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
type: docs | ||
title: "Connectors" | ||
linkTitle: "Connectors" | ||
description: '' | ||
weight: 70 | ||
--- | ||
|
||
## Connectors | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
type: docs | ||
title: "S3 Parquet Dataset" | ||
linkTitle: "S3 Parquet Dataset" | ||
description: 'S3 Parquet Dataset YAML reference' | ||
weight: 80 | ||
--- | ||
|
||
Parquet data in S3-compatible storage can be queried in mesh mode or accelerated locally. | ||
|
||
# `dataset` | ||
|
||
```yaml | ||
- from: s3://s3-bucket-name/path/to/parquet/file.parquet | ||
name: s3_file | ||
auth: s3 | ||
params: | ||
endpoint: https://your.minio.host | ||
region: "" | ||
acceleration: | ||
enabled: true | ||
refresh_mode: full | ||
``` | ||
## `params` | ||
|
||
- `endpoint`: Check `with_endpoint` in [object store](https://docs.rs/object_store/latest/object_store/aws/struct.AmazonS3Builder.html) | ||
- `region`: Check `with_region` in [object store](https://docs.rs/object_store/latest/object_store/aws/struct.AmazonS3Builder.html) | ||
|
||
## `acceleration` | ||
|
||
Optional. | ||
|
||
When `null`, query will run in mesh mode; parquet data will be read directly from the object store for each query. | ||
|
||
Only `full` refresh mode is supported. | ||
|
||
## `auth` | ||
|
||
Check [Secrets]({{<ref "reference/Secrets">}}). | ||
|
||
Required attribbutes: | ||
- `key` | ||
- `secret` |