You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add managed databases CLI for parquet table loads.
Introduce `hotdata databases` as the UX for managed connections: create catalogs, declare tables, load parquet uploads, and query via `name.schema.table`. Includes unit and integration tests plus README docs.
Managed databases are Hotdata-owned catalogs you create and populate yourself (no remote source to sync). Query them with SQL as `database_name.schema.table` — the database name is the connection name.
134
+
135
+
```sh
136
+
hotdata databases list [-w <id>] [-o table|json|yaml]
-`create` registers a managed connection (`source_type: managed`) with no external credentials. Use `--table` to declare tables up front (required before `tables load` on the current API).
148
+
-`tables load` uploads a **parquet** file (or uses a staged `upload_id` from `POST /v1/files`) and publishes it as the table generation (`replace` mode).
149
+
- For CSV/JSON uploads without a managed database, use `hotdata datasets create` instead (`datasets.main.*`).
0 commit comments