Google Cloud Storage¶
Google Cloud Storage is an online file storage web service for storing and accessing data on Google Cloud Platform infrastructure. The service combines the performance and scalability of Google’s cloud with advanced security and sharing capabilities. It is an Infrastructure as a Service (IaaS), comparable to Amazon S3.
omniload supports Google Cloud Storage as both a data source and destination.
URI format¶
The URI format for Google Cloud Storage is as follows:
gs://?credentials_path=/path/to/service-account.json
URI parameters:
credentials_path: path to file containing your Google Cloud Service Accountcredentials_base64: base64-encoded service account JSON (alternative to credentials_path)layout: Layout template (optional, destination only)
The --source-table must be in the format:
{bucket name}/{file glob}
Setting up a GCS Integration¶
To use Google Cloud Storage source in omniload, you will need:
A Google Cloud Project.
A Service Account with at least roles/storage.objectUser IAM permission for reading, or roles/storage.objectAdmin for writing to GCS.
A Service Account key file for the corresponding service account.
For more information on how to create a Service Account or its keys, see Create service accounts and Create or delete service account keys on Google Cloud docs.
Example: Loading data from GCS¶
Let’s assume that:
Service account key is available in the current directory, under the filename
service_account.json.The bucket you want to load data from is called
my-org-bucketThe source file is available at
data/latest/dump.csvThe data needs to be saved in a DuckDB database called
local.dbThe destination table name will be
public.latest_dump
You can run the following command line to achieve this:
omniload ingest \
--source-uri "gs://?credentials_path=$PWD/service_account.json" \
--source-table "my-org-bucket/data/latest/dump.csv" \
--dest-uri "duckdb:///local.db" \
--dest-table "public.latest_dump"
Example: Uploading data to GCS¶
For this example, we’ll assume that:
records.dbis a DuckDB database.It has a table called
public.users.The service account key is available in the current directory.
The following command demonstrates how to copy data from a local DuckDB database to GCS:
omniload ingest \
--source-uri 'duckdb:///records.db' \
--source-table 'public.users' \
--dest-uri "gs://?credentials_path=$PWD/service_account.json" \
--dest-table 'my-org-bucket/records'
This will result in a file structure like the following:
my-org-bucket/
└── records
├── _dlt_loads
├── _dlt_pipeline_state
├── _dlt_version
└── users
└── <load_id>.<file_id>.parquet
The value of load_id and file_id is determined at runtime. The default layout creates a folder with the same table name as the source and places the data inside a parquet file. This layout is configurable using the layout parameter.
For example, if you would like to create a parquet file with the same name as the source table (as opposed to a folder) you can set layout to {table_name}.{ext} in the command line above:
omniload ingest \
--source-uri 'duckdb:///records.db' \
--source-table 'public.users' \
--dest-uri "gs://?layout={table_name}.{ext}&credentials_path=$PWD/service_account.json" \
--dest-table 'my-org-bucket/records'
Result:
my-org-bucket/
└── records
├── _dlt_loads
├── _dlt_pipeline_state
├── _dlt_version
└── users.parquet
List of available Layout variables is available here
Supported File Formats¶
gs source only supports loading files in the following formats:
csv: Comma Separated Values with headerscsv_headless: CSV files without headers (use#csv_headlesssuffix)parquet: Apache Parquet storage format.jsonl: Line delimited JSON. see https://jsonlines.org/
When writing to GCS, only parquet is supported.
File Pattern¶
omniload supports glob like pattern matching for gs source.
This allows for a powerful pattern matching mechanism that allows you to specify multiple files in a single --source-table.
Below are some examples of path patterns, each path pattern is glob you can specify after the bucket name:
**/*.csv: Retrieves all the CSV files, regardless of how deep they are within the folder structure.*.csv: Retrieves all the CSV files from the first level of a folder.myFolder/**/*.jsonl: Retrieves all the JSONL files from anywhere undermyFolder.myFolder/mySubFolder/users.parquet: Retrieves theusers.parquetfile frommySubFolder.employees.jsonl: Retrieves theemployees.jsonlfile from the root level of the bucket.
Working with compressed files¶
omniload automatically detects and handles gzipped files in your GCS bucket. You can load data from compressed files with the .gz extension without any additional configuration.
For example, to load data from a gzipped CSV file:
omniload ingest \
--source-uri "gs://?credentials_path=$PWD/service_account.json" \
--source-table "my-org-bucket/logs/event-data.csv.gz" \
--dest-uri "duckdb:///compressed_data.duckdb" \
--dest-table "logs.events"
You can also use glob patterns to load multiple compressed files:
omniload ingest \
--source-uri "gs://?credentials_path=$PWD/service_account.json" \
--source-table "my-org-bucket/logs/**/*.csv.gz" \
--dest-uri "duckdb:///compressed_data.duckdb" \
--dest-table "logs.events"
File type hinting¶
If your files are properly encoded but lack the correct file extension (CSV, JSONL, or Parquet), you can provide a file type hint to inform omniload about the format of the files. This is done by appending a fragment identifier (#format) to the end of the path in your --source-table parameter.
For example, if you have JSONL-formatted log files stored in GCS with a non-standard extension:
--source-table "my-org-bucket/logs/event-data#jsonl"
This tells omniload to process the files as JSONL, regardless of their actual extension.
Supported format hints include:
#csv- For comma-separated values files with headers#csv_headless- For CSV files without headers#jsonl- For line-delimited JSON files#parquet- For Parquet format files
File type hinting works with gzip compressed files as well.
CSV files without headers¶
For CSV files that don’t have a header row, use the #csv_headless format hint. You can optionally provide column names using the --columns flag:
# With custom column names
omniload ingest \
--source-uri "gs://?credentials_path=$PWD/service_account.json" \
--source-table "my-org-bucket/data/raw-data.csv#csv_headless" \
--columns "id:bigint,name:text,value:double" \
--dest-uri "duckdb:///local.db" \
--dest-table "public.raw_data"
If no column names are provided, columns will be automatically named unknown_col_0, unknown_col_1, etc.:
# Without column names (auto-generated)
omniload ingest \
--source-uri "gs://?credentials_path=$PWD/service_account.json" \
--source-table "my-org-bucket/data/raw-data.csv#csv_headless" \
--dest-uri "duckdb:///local.db" \
--dest-table "public.raw_data"