February 2023 Summaries
4 posts from QuestDB
Filter
Month:
Year:
Post Summaries
Back to Blog
QuestDB 7.0 introduces the Write Ahead Log (WAL) feature, which enables concurrent data ingestion across all interfaces and enhances the data ingestion rate. This development marks the initial step towards implementing high availability and replication, which are planned for future updates.
Feb 28, 2023
45 words in the original blog post.
Play is a user-friendly platform designed to allow individuals to experiment with a database effortlessly, featuring a Jupyter Lab notebook, data, sample code, queries, and graphs. It provides grid energy usage and forecasts data at 15-minute intervals, offering users the opportunity to engage with nearly half a million rows of data. Users can test queries and create graphs, making it an interactive way to explore and visualize complex data sets.
Feb 22, 2023
60 words in the original blog post.
QuestDB is an open-source time-series database designed for high-performance tasks such as those encountered on trading floors or in mission control, offering low latency and high ingestion throughput. It supports multiple database instances and the exchange of data across these instances, facilitating applications like IoT systems with globally deployed sensors. The text discusses the challenges of creating unique IDs for sensor data collection and explores several strategies, including the use of UUIDs (Universally Unique Identifiers) which are 128-bit values generated without the need for coordination, ensuring global uniqueness. UUIDs are advantageous as they occupy less space and optimize database operations compared to storing them as strings, which not only saves disk space but also enhances query performance. QuestDB has implemented UUIDs as a first-class data type to improve query efficiency and reduce storage costs, demonstrating a significant performance boost in data retrieval speed when using UUIDs instead of strings. The text further highlights the benefits of using UUIDs for distributed applications and suggests that future QuestDB versions will enhance UUID performance through vectorization and SIMD instructions.
Feb 10, 2023
1,684 words in the original blog post.
QuestDB, an open-source time-series database, is designed for high-performance workloads, offering ultra-low latency and high ingestion throughput with a multi-tier storage engine. It supports Parquet and SQL, ensuring data portability and readiness for AI applications without vendor lock-in. As industries undergo digital transformation, the exponential growth of data points necessitates effective data integration strategies to manage diverse data sources and formats. Traditional data integration methods, like ETL, which involve batch processing and complex transformations, struggle with large and varied datasets. In contrast, ELT offers more real-time analysis by loading raw data first and transforming it within the system, though it may require additional steps for complex transformations. Change Data Capture (CDC) provides a solution for real-time data replication by continuously streaming changes from source systems to target systems, such as time-series databases (TSDBs), without significantly altering existing architectures. A reference implementation utilizing QuestDB demonstrates how CDC can integrate seamlessly into existing systems to enable real-time insights for time-series data, maintaining transactional guarantees while adding new components like TSDBs for enhanced analysis.
Feb 06, 2023
1,280 words in the original blog post.