Citus vs TimescaleDB

Need advice about which tool to choose?Ask the StackShare community!

Citus

58
122
+ 1
10
TimescaleDB

209
370
+ 1
44
Add tool

Citus vs TimescaleDB: What are the differences?

Introduction:

Both Citus and TimescaleDB are popular extensions for PostgreSQL that are designed to handle large volumes of data. While they both have similarities, there are key differences between the two technologies.

  1. Horizontal versus Vertical Scaling: The main difference between Citus and TimescaleDB lies in their approach to scaling. Citus focuses on horizontal scaling by distributing data across multiple nodes, allowing it to handle larger workloads and deliver higher performance. On the other hand, TimescaleDB specializes in vertical scaling, utilizing advanced compression techniques and optimized indexing structures to efficiently store and query time-series data.

  2. Data Distribution: Citus employs a technique known as sharding to distribute data across multiple physical or virtual machines. This allows for parallel processing of queries across the shards, providing faster query response times. In contrast, TimescaleDB utilizes a hypertable concept that abstracts the underlying sharding details. It automatically partitions data into smaller chunks and distributes them across hypertable chunks, simplifying the management of distributed data.

  3. Query Optimization: Citus provides distributed query execution and optimization techniques to enhance query performance. By leveraging distributed joins and aggregations, it can parallelize query execution across multiple nodes for faster processing. TimescaleDB, on the other hand, focuses on optimizing time-series queries. It offers a variety of time-based optimizations, including time-based indexing, chunk-aware query planning, and continuous aggregations, which significantly speed up time-series queries.

  4. Workload Support: Citus is well-suited for multi-tenant applications and scenarios that require real-time analytics on large datasets. It can handle diverse workloads, including OLTP and OLAP workloads, due to its ability to distribute data across multiple nodes. TimescaleDB, on the other hand, is purpose-built for time-series data, making it an excellent choice for applications that generate and analyze large volumes of time-stamped data, such as IoT, monitoring, and financial data.

  5. Managing Data Locality: In terms of data locality, Citus offers more control as it allows users to define placement rules for distributing data across nodes based on specific criteria. This enables users to optimize data placement for specific workloads and customize data placement strategies. TimescaleDB, on the other hand, abstracts data distribution details, allowing users to focus on time-series modeling and query optimization, without having to worry about data placement.

  6. Ecosystem and Community: Both Citus and TimescaleDB have active open-source communities and vibrant ecosystems. However, Citus has been commercially acquired by Microsoft, which may provide additional support and integration options within the Microsoft ecosystem. TimescaleDB is an independent company focused solely on time-series data and has partnerships and integrations with various cloud providers and third-party tools, offering a broader set of options for users.

In Summary, Citus and TimescaleDB differ in their scaling approaches, data distribution methods, query optimization techniques, workload support, data locality management, and the respective ecosystems they are part of. These differences make them suitable for different use cases, with Citus being ideal for distributed workloads and real-time analytics, while TimescaleDB excels at handling time-series data.

Advice on Citus and TimescaleDB
Umair Iftikhar
Technical Architect at ERP Studio · | 3 upvotes · 433.4K views
Needs advice
on
CassandraCassandraDruidDruid
and
TimescaleDBTimescaleDB

Developing a solution that collects Telemetry Data from different devices, nearly 1000 devices minimum and maximum 12000. Each device is sending 2 packets in 1 second. This is time-series data, and this data definition and different reports are saved on PostgreSQL. Like Building information, maintenance records, etc. I want to know about the best solution. This data is required for Math and ML to run different algorithms. Also, data is raw without definitions and information stored in PostgreSQL. Initially, I went with TimescaleDB due to PostgreSQL support, but to increase in sites, I started facing many issues with timescale DB in terms of flexibility of storing data.

My major requirement is also the replication of the database for reporting and different purposes. You may also suggest other options other than Druid and Cassandra. But an open source solution is appreciated.

See more
Replies (1)
Recommends
on
MongoDBMongoDB

Hi Umair, Did you try MongoDB. We are using MongoDB on a production environment and collecting data from devices like your scenario. We have a MongoDB cluster with three replicas. Data from devices are being written to the master node and real-time dashboard UI is using the secondary nodes for read operations. With this setup write operations are not affected by read operations too.

See more
Needs advice
on
InfluxDBInfluxDBMongoDBMongoDB
and
TimescaleDBTimescaleDB

We are building an IOT service with heavy write throughput and fewer reads (we need downsampling records). We prefer to have good reliability when comes to data and prefer to have data retention based on policies.

So, we are looking for what is the best underlying DB for ingesting a lot of data and do queries easily

See more
Replies (3)
Yaron Lavi
Recommends
on
PostgreSQLPostgreSQL

We had a similar challenge. We started with DynamoDB, Timescale, and even InfluxDB and Mongo - to eventually settle with PostgreSQL. Assuming the inbound data pipeline in queued (for example, Kinesis/Kafka -> S3 -> and some Lambda functions), PostgreSQL gave us a We had a similar challenge. We started with DynamoDB, Timescale and even InfluxDB and Mongo - to eventually settle with PostgreSQL. Assuming the inbound data pipeline in queued (for example, Kinesis/Kafka -> S3 -> and some Lambda functions), PostgreSQL gave us better performance by far.

See more
Recommends
on
DruidDruid

Druid is amazing for this use case and is a cloud-native solution that can be deployed on any cloud infrastructure or on Kubernetes. - Easy to scale horizontally - Column Oriented Database - SQL to query data - Streaming and Batch Ingestion - Native search indexes It has feature to work as TimeSeriesDB, Datawarehouse, and has Time-optimized partitioning.

See more
Ankit Malik
Software Developer at CloudCover · | 3 upvotes · 320.6K views
Recommends
on
Google BigQueryGoogle BigQuery

if you want to find a serverless solution with capability of a lot of storage and SQL kind of capability then google bigquery is the best solution for that.

See more
Decisions about Citus and TimescaleDB
Benoit Larroque
Principal Engineer at Sqreen · | 2 upvotes · 133.2K views

I chose TimescaleDB because to be the backend system of our production monitoring system. We needed to be able to keep track of multiple high cardinality dimensions.

The drawbacks of this decision are our monitoring system is a bit more ad hoc than it used to (New Relic Insights)

We are combining this with Grafana for display and Telegraf for data collection

See more
Get Advice from developers at your company using StackShare Enterprise. Sign up for StackShare Enterprise.
Learn More
Pros of Citus
Pros of TimescaleDB
  • 6
    Multi-core Parallel Processing
  • 2
    Drop-in PostgreSQL replacement
  • 2
    Distributed with Auto-Sharding
  • 9
    Open source
  • 8
    Easy Query Language
  • 7
    Time-series data analysis
  • 5
    Established postgresql API and support
  • 4
    Reliable
  • 2
    Paid support for automatic Retention Policy
  • 2
    Chunk-based compression
  • 2
    Postgres integration
  • 2
    High-performance
  • 2
    Fast and scalable
  • 1
    Case studies

Sign up to add or upvote prosMake informed product decisions

Cons of Citus
Cons of TimescaleDB
    Be the first to leave a con
    • 5
      Licensing issues when running on managed databases

    Sign up to add or upvote consMake informed product decisions

    What is Citus?

    It's an extension to Postgres that distributes data and queries in a cluster of multiple machines. Its query engine parallelizes incoming SQL queries across these servers to enable human real-time (less than a second) responses on large datasets.

    What is TimescaleDB?

    TimescaleDB: An open-source database built for analyzing time-series data with the power and convenience of SQL — on premise, at the edge, or in the cloud.

    Need advice about which tool to choose?Ask the StackShare community!

    What companies use Citus?
    What companies use TimescaleDB?
    See which teams inside your own company are using Citus or TimescaleDB.
    Sign up for StackShare EnterpriseLearn More

    Sign up to get full access to all the companiesMake informed product decisions

    What tools integrate with Citus?
    What tools integrate with TimescaleDB?

    Sign up to get full access to all the tool integrationsMake informed product decisions

    Blog Posts

    What are some alternatives to Citus and TimescaleDB?
    CockroachDB
    CockroachDB is distributed SQL database that can be deployed in serverless, dedicated, or on-prem. Elastic scale, multi-active availability for resilience, and low latency performance.
    Apache Aurora
    Apache Aurora is a service scheduler that runs on top of Mesos, enabling you to run long-running services that take advantage of Mesos' scalability, fault-tolerance, and resource isolation.
    Cassandra
    Partitioning means that Cassandra can distribute your data across multiple machines in an application-transparent matter. Cassandra will automatically repartition as machines are added and removed from the cluster. Row store means that like relational databases, Cassandra organizes data by rows and columns. The Cassandra Query Language (CQL) is a close relative of SQL.
    Vitess
    It is a database solution for deploying, scaling and managing large clusters of MySQL instances. It’s architected to run as effectively in a public or private cloud architecture as it does on dedicated hardware. It combines and extends many important MySQL features with the scalability of a NoSQL database.
    Clickhouse
    It allows analysis of data that is updated in real time. It offers instant results in most cases: the data is processed faster than it takes to create a query.
    See all alternatives