read_parquet, read_json, and read_csv functions, they deliver efficient data access. Built-in local and remote caching reduces latency and improves throughput for optimal query performance.
Syntax
Parameters
-
duckdb_external_location: S3 path to your data. See Load Data for format details.- Example:
s3://s3.us-west-1.amazonaws.com/bucket/path/dat.parquet accessid=xxxx secret=yyyy
- Example:
-
duckdb_external_format: Data format. Options:parquet,csv,json -
duckdb_external_options(optional): Additional parameters passed to DuckDB.- Example: Include filename in results with
{"filename": true}
- Example: Include filename in results with
No need to define columns explicitly—Relyt ONE automatically samples the data to infer column names and types. After creation, use
\d+ <table_name> or SELECT * FROM <table> LIMIT 1 to inspect the schema.