Skip to main content

Supported Repository Types

Data in kamu is shared via . There are multiple types of repositories that differ by the kinds of services they provide. The most basic repository allows you to upload (“push”) and download (“pull”) data, while more advanced can allow searching datasets, query data in-place, or subscribing for updates.

Push / Pull Aliases

Starting out, you can always use explicit URLs when syncing data from and to repositories. If some remote source contains a dataset you’re interested in you can download it using the pull command:
If you have a dataset you would like to share, or made some changes to a dataset you are sharing with your friends - you can upload the new data using the push command:
When you run these commands, kamu will automatically create “pull” and “push aliases” for this dataset:
With aliases in place, next time you want to pull or push data you can simply do:
Both pull and push commands will analyze the state of the dataset in the and at the repository and will only upload data and metadata that wasn’t previously seen (a minimal update). These commands are also “safe”. They will detect all types of concurrent changes and history divergence and prevent you from overwriting someone else’s changes.
When you pull a Root dataset from a remote source running kamu pull on it will attempt to sync it from the repository, and NOT execute a polling or other ingest action. In kamu list datasets with pull aliases will be showing up as Remote(...).

Repositories

If you store multiple datasets side by side in some locations you can add it as a repository. Repositories are configured per using the kamu repo command group. To add new repo use:
This repo will now be visible in kamu repo list. To pull/push a dataset from/to this repo you can now use remote references like <repo-name>/<dataset-name>:

Searching for Data

To look for datasets in the repos use:
Search is delegated to the repository implementations and its capabilities depend on the type of the repo. Whereas smart repos may support advanced full-text search, simple storage-only repos may be limited to a substring search by dataset name.
Last modified on March 16, 2026