Databases · head to head
Timeplus vs Turso

Timeplus
Databases
Streaming SQL engine built on ClickHouse internals, shipping as one small binary
- From
- Free
- Rated
- -

Turso
Databases
SQLite-lineage database platform for running very large numbers of small per-tenant databases, with an MIT-licensed engine.
- From
- Free
- Rated
- -
The short version
- Each has a real cost: Timeplus proton, the free version, is single-node by design, so any requirement for high availability or horizontal scale forces the commercial licence; the open source edition is a trial in practical terms.; Turso sQLite allows one writer per database, so a single tenant's write throughput cannot be scaled horizontally and a busy tenant serialises against itself with no sharding option.
- They diverge on capability: Timeplus covers Streaming SQL, Turso covers Per-tenant databases.
- Prices and features above were last checked on 31 August 2026.
Where they differ
Only the attributes on which Timeplus and Turso actually diverge.
Identical on both: starting price (Free), free tier (Yes), user rating (Not yet rated), category (Databases).
What each one covers
Drawn from each product's published feature list. An absence here means we hold no record of it - not that the product lacks it.
Only in Timeplus
- Streaming SQL
- Unified streaming and historical
- ClickHouse-based engine
- Single binary deployment
- External streams
- Materialised views
Only in Turso
- Per-tenant databases
- MIT licence
- Embedded replicas
- SQLite compatibility
- HTTP access
- Branching
- Point-in-time restore
- In-process engine
What people use each for
The jobs each tool is most often brought in to do.
Timeplus
- Real-time alerting on Kafka topics where standing up a Flink cluster is more work than the use case justifiesnot Turso
- Fraud or anomaly detection that must join a live event stream against recent history in one querynot Turso
- Streaming ETL from Kafka or MySQL change data capture into ClickHouse without writing Javanot Turso
- A small data team that needs continuous aggregation but has no platform engineers to operate JVM infrastructurenot Turso
Turso
- Multi-tenant SaaS where each customer gets their own database for real isolation, per-tenant restore and clean deletionnot Timeplus
- Agent or session infrastructure that creates a throwaway database per task and destroys it afterwardsnot Timeplus
- Local-first and offline-capable applications where an embedded replica serves reads at file speed and syncs when connectivity returnsnot Timeplus
- Embedding a SQLite-compatible engine in a product where the public domain original's closed contribution model is a problemnot Timeplus
Where each one falls short
Documented limitations, not opinions. Every one is a constraint you would hit in normal use.
Timeplus
- Proton, the free version, is single-node by design, so any requirement for high availability or horizontal scale forces the commercial licence; the open source edition is a trial in practical terms.
- It is a young project against Apache Flink’s decade of production history, so the hiring pool, the connector library and the body of known failure modes are all much smaller.
- Inheriting ClickHouse internals also inherits ClickHouse constraints: memory-hungry queries, awkward updates and a SQL dialect that is not portable to other engines.
- Exactly-once semantics and state recovery guarantees are less battle-tested than Flink checkpointing, which matters if the pipeline moves money.
- Cloud pricing is by provisioned instance size rather than usage, so a bursty workload pays for peak capacity around the clock or has to be resized by hand.
Turso
- SQLite allows one writer per database, so a single tenant's write throughput cannot be scaled horizontally and a busy tenant serialises against itself with no sharding option.
- Per-tenant databases mean per-tenant migrations, so every schema change becomes a fan-out job that must be idempotent and resumable, and multi-database schemas, the feature meant to solve this, is deprecated.
- There are no cross-database queries; ATTACH is deprecated on the cloud, so any report or analytic spanning tenants must be assembled in your application or in a separate warehouse you also operate.
- Data Edge, the multi-region edge replication that was Turso's original positioning, is deprecated, so a large share of the tutorials and articles describing Turso as an edge database describe behaviour you can no longer rely on.
- Three engine lineages share the name, SQLite, the libSQL fork and the Rust rewrite, and the Rust engine is still maturing, so SQLite compatibility needs verifying against your specific pragmas, extensions and query patterns; the cloud already restricts journal_mode and busy_timeout and makes user_version read-only.
Pricing, plan by plan
Timeplus
Free- Timeplus ProtonFree
- Apache 2.0 licence
- Single node only
- Full streaming SQL engine
- Timeplus Cloud$199/month
- One to thirty-two CPUs
- 4 GB to 128 GB memory
- From 250 GB SSD storage
- Self-hosted or BYOC$undefined/year
- Multi-node clustering
- Kubernetes or bare metal
- Customisable compute and storage
Turso
Free- FreeFree
- 100 databases
- 5 GB storage
- 500M monthly rows read
- Developer$4.99/month
- Unlimited databases
- 9 GB storage
- 2.5B monthly rows read
- Scaler$24.92/month
- Unlimited databases
- 24 GB storage
- 100B monthly rows read
- Pro$416.58/month
- Unlimited databases
- 50 GB storage
- 250B monthly rows read
Which should you pick?
Choose Timeplus if
- You need streaming sql.
- You want to start without paying.
- You work on Linux, macOS, Docker, Kubernetes, Web.
- You also want unified streaming and historical.
Choose Turso if
- You need per-tenant databases.
- You want to start without paying.
- You also want mit licence.
Questions people ask
- Is Timeplus or Turso better?
- Neither clearly leads. Timeplus starts at Free and Turso at Free, and user ratings are close enough to be indistinguishable. Choose on capability and platform support.
- Which is cheaper, Timeplus or Turso?
- Timeplus starts at Free and Turso at Free.
- Does Timeplus or Turso run on more platforms?
- Timeplus runs on Linux, macOS, Docker, Kubernetes, Web. Turso runs on Web.
- Can I use Timeplus for free?
- Both have a free tier, so you can try either at no cost before committing.
- What is Timeplus best used for?
- Timeplus is most often used for real-time alerting on kafka topics where standing up a flink cluster is more work than the use case justifies, fraud or anomaly detection that must join a live event stream against recent history in one query, streaming etl from kafka or mysql change data capture into clickhouse without writing java, a small data team that needs continuous aggregation but has no platform engineers to operate jvm infrastructure. Of those, real-time alerting on kafka topics where standing up a flink cluster is more work than the use case justifies and fraud or anomaly detection that must join a live event stream against recent history in one query are not what Turso is typically brought in for.
- What can Timeplus do that Turso cannot?
- Timeplus covers Streaming SQL, Unified streaming and historical, ClickHouse-based engine, Single binary deployment. Turso covers Per-tenant databases, MIT licence, Embedded replicas, SQLite compatibility.
Answered from the vendors’ own pages
Timeplus: Is Timeplus open source?
The core engine, Timeplus Proton, is Apache 2.0. Timeplus Enterprise and Cloud are commercial.
Turso: Is Turso just hosted SQLite?
Not exactly. It hosts databases built on the SQLite lineage: libSQL, an MIT fork of SQLite, and Turso Database, a newer Rust rewrite. The platform adds branching, backups, an HTTP API and programmatic database creation.
Timeplus: What is the difference from Flink?
Timeplus is one binary with SQL as the only interface; Flink is a JVM cluster with a Java and SQL API and far more operational surface.
Turso: Can I really run a million databases?
That is the design goal and the platform API exists to make provisioning and deletion programmatic. The practical constraints are the ones that come with it: migrations fan out, and nothing can query across databases.
Timeplus: Can Proton run in production?
It can, but it is single-node only, so there is no high availability without the commercial edition.
Turso: How do embedded replicas handle read-after-write?
Reads come from the local replica and writes go to the primary, so a read immediately after a write can return stale data unless you wait for a sync. Application code has to account for that rather than assume it.
Timeplus: How much is the cloud?
From 199 US dollars a month, sized by CPU and memory, with a fourteen day trial.
Turso: What licence is it under?
libSQL and Turso Database are both MIT. Turso Cloud is a commercial managed service built on them, so the engine is genuinely open even though the platform is not.
Turso: Is Turso still an edge database?
No. Data Edge, the multi-region edge replication feature, is deprecated. The current positioning is per-tenant and embedded databases, and older material describing edge replication is out of date.
Related pages
Other head to heads
- Timeplus vs Apache Flink
- Timeplus vs ClickHouse
- Timeplus vs Materialize
- Timeplus vs Redpanda
- Timeplus vs NATS
- Timeplus vs DuckDB
- Timeplus vs Estuary
- Timeplus vs RisingWave
- Timeplus vs Meilisearch
- Timeplus vs Neo4j
- Timeplus vs OpenSearch
- Timeplus vs Qdrant
- Timeplus vs SingleStore
- Timeplus vs TiDB
- Timeplus vs Tinybird
- Timeplus vs Apache Kafka
- Timeplus vs Apache Pulsar
- Timeplus vs Apache Druid
- Timeplus vs Airtable
- Timeplus vs SurrealDB
- Timeplus vs Cockroach Labs
- Timeplus vs PostgreSQL
- Timeplus vs Amazon Aurora
- Timeplus vs MotherDuck
- Timeplus vs EMQX
- Timeplus vs Nile
- Timeplus vs SQLite
- Timeplus vs Teradata
- Timeplus vs Instaclustr
- Timeplus vs Knack
- Timeplus vs LanceDB
- Timeplus vs Marqo
- Timeplus vs Ninox
- Turso vs Apache Flink
- Turso vs ClickHouse
- Turso vs Materialize
- Turso vs Redpanda
- Turso vs NATS
- Turso vs DuckDB
- Turso vs Estuary
- Turso vs RisingWave
- Turso vs Meilisearch
- Turso vs Neo4j
- Turso vs OpenSearch
- Turso vs Qdrant
- Turso vs SingleStore
- Turso vs TiDB
- Turso vs Tinybird
- Turso vs Apache Kafka
- Turso vs Apache Pulsar
- Turso vs Apache Druid
- Turso vs Airtable
- Turso vs SurrealDB
- Turso vs Cockroach Labs
- Turso vs PostgreSQL
- Turso vs Amazon Aurora
- Turso vs MotherDuck
- Turso vs EMQX
- Turso vs Nile
- Turso vs SQLite
- Turso vs Teradata
- Turso vs Instaclustr
- Turso vs Knack
- Turso vs LanceDB
- Turso vs Marqo
- Turso vs Ninox
