May 2023 Summaries
5 posts from Tiger Data
Filter
Month:
Year:
Post Summaries
Back to Blog
Have you ever marveled at what the future holds? Whether you are developing a crypto trading platform, collecting data from IoT devices to measure energy consumption, or working on an application to forecast sales, a time-series plot is an indispensable tool for predicting the future. It helps uncover hidden patterns in your data so that you can gain insights into trends, cycles, and fluctuations over time. Understanding how to create and interpret time-series plots is essential as they help us make better decisions and stay ahead of the competition.
May 31, 2023
3,977 words in the original blog post.
pgcrypto is a PostgreSQL extension that enables encryption, decryption, hashing, and digital signatures within the database. It offers various functions for performing cryptographic operations, including encryption, decryption, hashing, and digital signatures. The extension provides symmetric and asymmetric encryption algorithms and supports key management for ensuring data security. With Timescale, users can install and use pgcrypto to secure sensitive information in their time-series databases. By leveraging pgcrypto's cryptographic functions, users can encrypt specific columns, hash data integrity, and ensure the authenticity of the information. To get started with pgcrypto and Timescale, users can follow a simple installation process and then use the extension to create hypertables, insert encrypted data, and decrypt it using the `pgp_sym_encrypt` and `pgp_sym_decrypt` functions.
May 25, 2023
859 words in the original blog post.
The author, who has experience building databases for 50 years, highlights the need for sophisticated visualization systems to provide meaningful insights from massive amounts of data. He introduces Hopara, which can produce pan-zoom displays for any kind of data, and demonstrates its application with a real-time monitoring system powered by TimescaleDB. The system is used by FC, a French company operating 58 factories in Brazil, to monitor vibration issues in sensor-tagged machines. The author explains that Hopara's "detail-on-demand" system provides both analytics dashboards and visualizations, allowing users to move from an overview to detailed time-series data with ease. He also discusses the importance of response time and performance considerations for real-time visualizations, highlighting TimescaleDB as a powerful tool for IoT applications.
May 18, 2023
2,005 words in the original blog post.
We are a cloud company now, with a primary product called "Timescale" that offers a PostgreSQL-like experience with additional features such as data tiering to S3. Our open-source extension, TimescaleDB, will continue to be available for time series and analytics workloads. We have also updated our brand identity with a new logo, color palette, and tiger mascot, signaling an evolution of our business towards serving developers in the cloud-first era. These changes represent another step in our journey as we reinvent the database to meet the needs of the cloud-native architecture.
May 17, 2023
1,408 words in the original blog post.
Timescale employs PostgreSQL contributors to address a problem with PostgreSQL's design that has been present for decades. The issue, known as "transaction ID wraparound," affects all branches and forks of PostgreSQL, leading to failures in databases such as Amazon RDS, Greenplum, Netezza, and Amazon Aurora. This problem arises from the use of a 32-bit integer counter to track transactions, which can lead to issues when the number of concurrent transactions exceeds this limit. To mitigate this issue, Timescale provides solutions such as batching data ingestion, using a general-purpose job scheduler for VACUUM and CLUSTER operations, and providing a user-friendly interface to manage these tasks. While Timescale does not solve transaction ID wraparound failure, it can help prevent it by batching data and automating tasks, making it easier for users to manage their databases and avoid this issue altogether.
May 10, 2023
2,195 words in the original blog post.