DynamoDBvs
Cockroach Labs


Cockroach Labs: The cloud-native distributed SQL database

AWS-only managed key-value and document database with fixed per-partition throughput limits and no ad hoc queries.
As of 30 August 2026, DynamoDB has a free plan and paid plans start at $0.625/per million writes. DynamoDB gives predictable single-digit millisecond reads at any scale, provided every access pattern was designed into the key schema before launch. Softwr lists it under Databases. DynamoDB is made by Amazon Web Services, launched in 2006.
Overview
DynamoDB is Amazon's managed NoSQL database. Items are stored in tables and located by a partition key, optionally with a sort key, and DynamoDB spreads partitions across storage nodes automatically as data and traffic grow. Reads are eventually consistent by default with strongly consistent reads available at twice the cost, writes are atomic per item, and transactions can span up to 100 items. Secondary indexes come in two forms: global secondary indexes, which are separate replicated copies with their own throughput and their own eventual consistency, and local secondary indexes, which must be created with the table. It includes point-in-time recovery, on-demand backups, DynamoDB Streams for change data capture, global tables for multi-region replication, TTL-based expiry and an in-memory accelerator, DAX. Capacity is either provisioned with autoscaling or on-demand. The distinguishing property is that performance does not degrade with data volume, because every operation is a hash lookup into a partition rather than a query against an index whose depth grows. A table with ten billion items answers a keyed read as fast as one with ten thousand. That is what makes DynamoDB the right answer for workloads where the traffic profile is unknowable in advance, and it is why so much of AWS's own infrastructure sits on it. The price of that guarantee is that you must trade query flexibility for it up front: the key schema is the query plan, and it is chosen before the first row is written. The buyers are teams already committed to AWS with well-understood, high-volume access patterns: sessions, carts, device state, event ingestion, user profiles. The trade-off is twofold. Operationally, access patterns discovered later require a new global secondary index, which is a full extra copy of the projected attributes billed as both storage and writes, or a migration. Commercially, DynamoDB runs only on AWS and its API is proprietary, so the data layer of your application cannot be moved without rewriting it; ScyllaDB's Alternator interface is the only meaningful compatible target, and it is a smaller ecosystem. That is a deep dependency to accept for a component as central as the primary datastore.
The honest half
Concrete and checkable, so you can decide whether any of them matter to you. This is the half of a review a vendor will not write about DynamoDB.
Cross-shopped
Each pairing was judged by two reviewers asking whether a buyer would genuinely weigh the two against each other. The ones that failed were deleted rather than published.


Cockroach Labs: The cloud-native distributed SQL database


PostgreSQL: The world's most advanced open source relational database


Airtable: Create apps that perfectly fit your team's needs


Amazon Aurora: MySQL and PostgreSQL-compatible relational database built for the cloud
Pricing
Taken from the vendor's own pricing page. Prices move, so check before you buy.
On-Demand Capacity
On request
Provisioned Capacity
On request
Standard Table Class Storage
$0.25 /per GB/month
Standard-Infrequent Access Table Class
$0.1 /per GB/month
Capabilities
Managed and serverless
No instances to size or patch; storage and throughput scale without an operator
Predictable latency
Single-digit millisecond keyed reads that do not degrade as the table grows
On-demand or provisioned capacity
Pay per request, or provision capacity with autoscaling for steadier and cheaper high volume
Global secondary indexes
Alternative key schemas maintained as replicated copies with their own capacity
Transactions
Atomic operations across as many as 100 items, with condition checks for optimistic concurrency
DynamoDB Streams
An ordered change log per partition, commonly consumed by Lambda for downstream processing
Global tables
Multi-region active-active replication with last-writer-wins conflict resolution
Point-in-time recovery
Continuous backups allowing restore to any second within the retention window
Time to live
Automatic expiry and deletion of items past a timestamp attribute, at no throughput cost
DAX
An in-memory cache in front of the table for read-heavy workloads needing microsecond responses
Answered, with sources
Each answer names the page it came from, so you can check it rather than take our word for it.
On-demand suits unpredictable or spiky traffic and removes capacity planning. Provisioned with autoscaling is considerably cheaper for steady high-volume workloads. Tables can be switched between them, though not arbitrarily often.
No. DynamoDB Local exists for development and testing only. For a production-compatible alternative elsewhere, ScyllaDB's Alternator implements the DynamoDB API, but it is a different system with a different ecosystem.
Not on the table itself. Scans are slow and expensive at scale. The usual pattern is to export to S3 or stream changes out and query them in Athena, Redshift or another analytical engine.
It is the pattern that gets the most from DynamoDB when access patterns are well known, because it lets related items be retrieved in one query. It also makes the model harder to evolve, so many teams reasonably choose multiple simpler tables and accept extra requests.
400 KB per item, 1 MB per query or scan page, 100 items per transaction, roughly 3,000 read and 1,000 write units per partition, and eventual consistency on global secondary indexes.
Behind it
Keep looking
The heart of the Elastic Stack for search and analytics
Create apps that perfectly fit your team's needs
Google Cloud's serverless analytical warehouse, billed either by bytes scanned per query or by reserved compute slots.
Document-relational database whose hosted service closed in 2025 and whose core is now unmaintained Apache 2.0 code.
SQL transformation framework enabling analytics engineers to version, test and deploy models
Erlang MQTT broker for large IoT fleets, relicensed to BSL with production free use limited to one node
Store and sync data in real-time across all clients
Document-relational database whose hosted service closed in 2025 and whose core is now unmaintained Apache 2.0 code.
Softwr does not host reviews and shows no star rating for DynamoDB, because a rating we did not collect is not ours to publish. What is here is the pricing and platform detail from the vendor’s own pages, limitations we could state concretely, and alternatives a reviewer confirmed people weigh against it. Tell us if any of it is wrong.
What people switch to, and what they give up
Every tier, and where the cost actually lands
Put it head to head with anything we hold
Its rating, and an embed for your own site
Industrial process historian with published per-tag pricing and no client licence fees
Per tag band per yearNetApp-owned managed service for Cassandra, Kafka, OpenSearch, PostgreSQL and Cadence with a bring-your-own-cloud model
quoteErlang MQTT broker for large IoT fleets, relicensed to BSL with production free use limited to one node
Per month by connection and session volumeAttribute-based access control and masking applied inside Snowflake, Databricks and BigQuery
quoteMPP analytical database with a MySQL wire protocol and sub-second aggregation on wide tables
Open source, no licence feeStreaming database that maintains incremental materialised views in SQL instead of Flink jobs
Per RisingWave Unit hourCentralised data access governance from the creators of Apache Ranger, now rebranding as Trust3 AI
quoteThe Meta-lineage distributed SQL query engine, distinct from the Trino fork
Open source, no licence fee