SELECT and INSERT data from Google Cloud Storage. Requires the Storage Object User IAM role.
This is an alias of the s3 table function.
If you have multiple replicas in your cluster, you can use the s3Cluster function (which works with GCS) instead to parallelize inserts.
Syntax
Arguments
GCSThe GCS path is in this format as the endpoint for the Google XML API is different than the JSON API:and not https://storage.cloud.google.com.
url, format, structure, compression_method work in the same way, and some extra parameters are supported:
Returned value
A table with the specified structure for reading or writing data in the specified file.Examples
Selecting the first two rows from the GCS filehttps://storage.googleapis.com/clickhouse_public_datasets/my-test-bucket-768/data.csv.gz. The compression method is detected automatically from the .gz file extension:
gzip compression method specified explicitly instead of relying on autodetection:
Usage
Suppose that we have several files with following URIs on GCS:- ‘https://storage.googleapis.com/my-test-bucket-768/some_prefix/some_file_1.csv’
- ‘https://storage.googleapis.com/my-test-bucket-768/some_prefix/some_file_2.csv’
- ‘https://storage.googleapis.com/my-test-bucket-768/some_prefix/some_file_3.csv’
- ‘https://storage.googleapis.com/my-test-bucket-768/some_prefix/some_file_4.csv’
- ‘https://storage.googleapis.com/my-test-bucket-768/another_prefix/some_file_1.csv’
- ‘https://storage.googleapis.com/my-test-bucket-768/another_prefix/some_file_2.csv’
- ‘https://storage.googleapis.com/my-test-bucket-768/another_prefix/some_file_3.csv’
- ‘https://storage.googleapis.com/my-test-bucket-768/another_prefix/some_file_4.csv’
file-000.csv, file-001.csv, … , file-999.csv:
test-data.csv.gz:
test-data.csv.gz from existing table:
my-test-bucket-768 directory recursively:
test-data.csv.gz files from any folder inside my-test-bucket directory recursively:
Partitioned Write
If you specifyPARTITION BY expression when inserting data into GCS table, a separate file is created for each partition value. Splitting the data into separate files helps to improve reading operations efficiency.
Examples
- Using partition ID in a key creates separate files:
file_x.csv, file_y.csv, and file_z.csv.
- Using partition ID in a bucket name creates files in different buckets:
my_bucket_1/file.csv, my_bucket_10/file.csv, and my_bucket_20/file.csv.