Home / Companies / PeerDB / Blog / April 2024

April 2024 Summaries

4 posts from PeerDB

Filter
Month: Year:
Post Summaries Back to Blog
The text discusses how to make pg_dump and pg_restore 5 times faster. These tools are essential for backing up and restoring Postgres databases but can be slow for large tables due to their single-threaded nature at the table level. Parallel Snapshotting is an idea that could make these tools multi-threaded at the single table level by logically partitioning the table based on CTIDs and copying multiple partitions simultaneously. PeerDB, an open-source Postgres replication tool, has already implemented this concept. Through Parallel Snapshotting, a 1.5TB table can be migrated 5 times faster than using pg_dump and pg_restore alone.
Apr 25, 2024 1,208 words in the original blog post.
PeerDB, a data movement platform for PostgreSQL, has secured $3.6 million in seed funding from investors including 8VC, Y Combinator, and several others. The company aims to become the de facto standard for data movement and ETL (extract, transform, and load) for businesses running on Postgres. PeerDB's platform enables fast and cost-effective data replication from PostgreSQL to data warehouses like Snowflake and queues such as Kafka. The funding will be used to expand the engineering team, support go-to-market initiatives, and drive client acquisition.
Apr 11, 2024 1,385 words in the original blog post.
PeerDB has achieved full compliance with the General Data Protection Regulation (GDPR), demonstrating its dedication to data protection and privacy. The company's Trust Center provides detailed information on their security measures, including data encryption and strict access controls. GDPR compliance ensures enhanced data security and transparency for clients, while PeerDB continues to improve its security infrastructure in preparation for the SOC 2 Type 2 certification. PeerDB Cloud offers a secure platform for businesses' Postgres Data Movement needs, with trust and privacy at its core.
Apr 04, 2024 460 words in the original blog post.
Logical Replication is a feature in Postgres that allows databases to replicate data to other Postgres databases or ETL tools like PeerDB. It has evolved over time, with newer versions offering improvements such as streaming of large in-progress transactions and parallel apply of in-flight transactions. The latest version 4 supports spreading out the load of applying a single large transaction over multiple processes in the standby. By using version 2 to stream in-flight transactions, users can efficiently manage WAL spikes during sizable transactions, enhancing logical decoding performance and mitigating disk full issues caused by replication slot growth. This approach reduces the lag between the Postgres source and its readers, improving overall reliability and performance.
Apr 01, 2024 1,679 words in the original blog post.