QuestDB is the world's fastest growing open-source time-series database. It offers massive ingestion throughput, millisecond queries, powerful time-series SQL extensions, and scales well with minimal and maximal hardware. Save costs with better performance and efficiency.
Query over 1.2 billion rows in milliseconds
Try QuestDB demo in your browser
Easily adopted, time-series optimized SQL
SELECT timestamp, tempCFROM sensorsWHERE timestamp IN '2021-05-14;1M';
-- Search timeSELECT timestamp, tempCFROM sensorsWHERE timestamp IN '2021-05-14;1M';
SELECT timestamp, avg(tempC)FROM sensorsSAMPLE BY 5m;
-- Slice timeSELECT timestamp, avg(tempC)FROM sensorsSAMPLE BY 5m;
SELECT timestamp, sensorName, tempCFROM sensorsLATEST ON timestamp PARTITION BY sensorName;
-- Navigate timeSELECT timestamp, sensorName, tempCFROM sensorsLATEST ON timestamp PARTITION BY sensorName;
SELECT sensors.timestamp ts, rain1HFROM sensorsASOF JOIN weather;
-- Merge timeSELECT sensors.timestamp ts, rain1HFROM sensorsASOF JOIN weather;
Hyper ingestion
For massive volumes of time-series data, trust a specialized time-series database. Timestamps are first-class, and blistering throughput is sustained even through the highest data cardinality. Deduplication and out-of-order ingestion also work right out-of-the-box.
Category user reviews on G2 rate QuestDB with the highest user satisfaction. Visit our vibrant Slack to chat with the community, the QuestDB core developers, and our technical AI-bot, to find out why.
Max performance, min hardware
Compute costs keep rising. Keep them low with an efficient solution. QuestDB runs well on low hardware, within high cardinality data and with deduplication and out-of-order indexing. On just a 4GB Raspberry Pi, QuestDB outperforms competitors on robust hardware. Have robust hardware? QuestDB scales up to many millions of rows per second.
QuestDB is a time series database truly built by developers for developers. We found that QuestDB provides a unicorn solution to handle extreme TPS while also offering a simplified SQL programming interface.