Skip to content

Provision a database

Helicarrier Cloud runs managed databases for you in a part of the platform called the Hangar. You pick an engine, and Helicarrier provisions it, keeps it running, and handles backups and connection details — no server setup.

  • PostgreSQL — the default relational database. Optionally enable pgvector at creation for embeddings and vector search.
  • MySQL and MariaDB — widely compatible relational databases.
  • Redis — in-memory key/value store for caching, queues, and sessions.
  • MongoDB — document database.
  • ClickHouse — columnar warehouse for analytics.
  • Qdrant — vector database for AI/embedding workloads.
  1. On the Deck, click + New and choose the database engine you want.
  2. Optionally set a name and (for engines that support it) a password. Leave the password blank to have one generated.
  3. For PostgreSQL, tick pgvector if you need vector search.
  4. Create it. Helicarrier provisions the database as a service node on your canvas.

If you are building AI features, enable pgvector when you create a PostgreSQL database. Helicarrier installs the extension so you can store and query embeddings directly in Postgres — no separate vector store needed (though Qdrant is available if you prefer a dedicated one).

For PostgreSQL, MySQL, MariaDB, MongoDB, and Redis you can rotate the password later from the database’s settings — the change applies live. ClickHouse and Qdrant set their password at boot and are not rotatable after creation.

Once provisioned, the database exposes everything you need on its drawer:

  • Connection details — internal and external URLs and split credentials (see Connect to your database).
  • Backups — on-demand and automatic daily backups (see Backups & restore).
  • Data tools — browse tables, collections, and keys right in the dashboard.

Wire it up: Connect to your database.