Home / Companies / Tiger Data / Blog / July 2019

July 2019 Summaries

4 posts from Tiger Data

Filter
Month: Year:
Post Summaries Back to Blog
Products & Services`, `Support Services`, and `Workloads` are offered for various use cases, infrastructure, and budgets. The platform provides a reliable PostgreSQL cloud for demanding businesses, with features such as `AI and Vector`, `Security Scanner`, and `Time Series and Real-Time Analytics`. It also offers documentation, learning resources, and benchmarking tools to help users scale their database performance and learn the basics of PostgreSQL. Various industries rely on this platform, including articles highlighting its benefits and performance. `Timescale Benchmarks` demonstrate its competitive edge.
Jul 31, 2019 112 words in the original blog post.
TimescaleDB is an open-source time-series database that leverages PostgreSQL and extends it to scale for time-series workloads. It partitions data into chunks, allowing for faster inserts and optimizing query performance by intelligently reducing the number of chunks queried. TimescaleDB optimizes query performance using three stages: planner exclusion (preventing unneeded chunks from entering the query plan), executor startup exclusion (removing unneeded chunks before execution), and executor runtime exclusion (preventing unneeded chunks from being accessed during execution). These optimizations result in significant performance improvements, particularly for queries with constraints on partitioning columns. By leveraging PostgreSQL's internals and implementing custom scan nodes, TimescaleDB achieves constraint exclusion at plan time, executor startup, and runtime, making it a powerful tool for time-series data analysis.
Jul 23, 2019 1,609 words in the original blog post.
TimescaleDB 1.4 has been released with several planner improvements and the ability to apply multiple continuous aggregates per hypertable, improving performance for time-series workloads by enabling users to speed up historical queries even further. The new release includes run-time constraint exclusion performance optimizations that allow users to benefit from constraint exclusion even for queries that cannot leverage PostgreSQL's built-in constraint exclusion during planning stage. Additionally, the new version enables users to apply multiple continuous aggregates per hypertable, reducing computation required during query time and enabling more flexible data storage options.
Jul 18, 2019 473 words in the original blog post.
SQL is making a comeback after years of being left for dead due to the rise of NoSQL databases. The major cloud providers now offer popular managed relational database services, and SQL interfaces on top of Hadoop, Spark, and Kafka continue to thrive. This resurgence can be attributed to the limitations of NoSQL languages, which led to issues such as increased complexity, denormalization, and lack of JOINs. In response, new scalable databases that fully embrace SQL have emerged, such as Google's Spanner database. The adoption of SQL is not limited to these systems but has also become a common interface across multiple systems within Google. As data continues to grow exponentially, the need for a universal interface that can connect various layers of the data stack is becoming increasingly important. SQL has become this universal interface, allowing pieces of the stack to communicate with one another and enabling users to transfer their understanding of the language between different systems. This shift towards SQL is seen as a positive development, restoring balance to the force and providing a standardized interface for data analysis.
Jul 08, 2019 2,570 words in the original blog post.