Outputs a data directory containing metadata for a specified ClickHouse table. This metadata can be used to create a ClickHouse table on a different server containing a read-only dataset backed by a web disk.
Don’t use this tool to migrate data. Instead, use the BACKUP and RESTORE commands.
Usage
Commands
When using clickhouse-static-files-disk-uploader, you must obtain the metadata path for your desired table.
- Run the following query specifying your target table and database:
- This should return the path to the data directory for the specified table:
Using the target output directory output and a given metadata path, execute the following command:
If successful, you should see the following message, and the output directory should contain the metadata for the specified table:
This step is similar to outputting the data directory to the local filesystem but with the addition of the --test-mode flag. Instead of specifying an output directory, you must specify a target URL via the --url flag.
With test mode enabled, the table metadata directory is uploaded to the specified URL via a PUT request.
Once you have the table metadata directory, you can use it to create a ClickHouse table on a different server.
Please see this GitHub repo showing a demo. In the example, we create a table using a web disk, which allows us to attach the table to a dataset on a different server. Last modified on June 29, 2026