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.
Supported engines
Section titled “Supported engines”- 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.
Create one
Section titled “Create one”- On the Deck, click + New and choose the database engine you want.
- Optionally set a name and (for engines that support it) a password. Leave the password blank to have one generated.
- For PostgreSQL, tick pgvector if you need vector search.
- Create it. Helicarrier provisions the database as a service node on your canvas.
pgvector for embeddings
Section titled “pgvector for embeddings”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).
Passwords
Section titled “Passwords”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.
What you get
Section titled “What you get”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.