Six store engines: hash, b-tree, FIFO, LIFO, heap and blob. The engine is chosen when the bucket is created.
An engine cannot be changed after the bucket is created, and indexes are declared at creation time.
What hoardDB does today, each statement with its source.
Six store engines: hash, b-tree, FIFO, LIFO, heap and blob. The engine is chosen when the bucket is created.
An engine cannot be changed after the bucket is created, and indexes are declared at creation time.
Each engine is a different way to read: hash by key, b-tree in key order, FIFO oldest first, LIFO newest first, heap by priority, blob as bytes.
Placement is a consistent hash ring keyed by xxHash64. Membership is declarative — there are no elections and no arbiters.
No elections is the same fact as no automatic promotion: losing a node needs an operator.
The database is one binary. There is no sidecar and no separate indexer process.
The CLI is a second binary, and it is a client rather than a component of the database.
hoardDB-server starts with no arguments and no configuration file.
On first start it generates a self-signed TLS keypair and serves over TLS.
The certificate is self-signed: a first client connection trusts it on first use and records its fingerprint. It is not a CA-issued certificate.
Authentication is always required. There is no flag that turns it off.
The CLI's -insecure flag is a client-side TLS verification bypass. It is not a server authentication switch, and there is no server-side equivalent.
A root credential is generated on the first start and written to ./data/root.password at mode 0600.
Passwords are hashed with Argon2id.
Replication is in the binary and free: replication factor, write-ahead log, and a write concern of one, majority or all.
hoardDB never promotes or removes a node automatically. Losing a node needs an operator. Replication is off until a replication factor above one is configured.
Audit logging is in the server and free.
It is off by default — turn it on in the configuration.
Users, roles and per-database grants are persisted and enforced.
A role change applies at the next authentication, not to a connection that is already open.
dump and restore write ordinary BSON that other tools can read.
Blob payloads and user accounts are not included in a dump.
hoardDB is not MongoDB wire-compatible and does not aim to be. HQL is inspired by MongoDB's syntax; it is a different language.
hoardDB is pre-1.0. Expect breaking changes.
Quoted from MongoDB's own documentation, linked and dated.
MongoDB's own reference for mongod says --noauth is currently the default.
MongoDB's free self-managed search runs as a separate mongot process.
Encryption at rest and auditing are MongoDB Enterprise features.
MongoDB's multi-document transactions require a replica set or a sharded cluster; a standalone rejects them.
What it does not do yet is on Limitations. What is planned, and what is not planned, is on the Roadmap.