Home / Companies / Aiven / Blog / November 2025

November 2025 Summaries

4 posts from Aiven

Filter
Month: Year:
Post Summaries Back to Blog
ClickHouse's refreshable materialized views offer a new approach to managing data updates by allowing users to set specific refresh intervals directly within ClickHouse, thereby reducing reliance on external orchestration tools like cron jobs and dbt pipelines. Unlike traditional incremental materialized views, which only update with new data inserts and require complex manual interventions for changes, the refreshable views provide more flexibility by enabling periodic refreshes and synchronization of dependent tables through the DEPENDS ON clause. This functionality allows for the creation of Directed Acyclical Graphs (DAGs) that ensure data consistency and streamline operations by skipping refreshes if source data updates fail. While these new features don't replace the efficiency of incremental views or the full complexity of dbt, they offer a balance between real-time streaming and traditional batch processing capabilities, allowing users to choose the appropriate level of complexity for their needs.
Nov 28, 2025 924 words in the original blog post.
Building agentic RAG with PostgreSQL and n8n involves enhancing traditional Retrieval-Augmented Generation (RAG) pipelines by incorporating a reasoning loop instead of a linear process, using PostgreSQL and n8n for orchestration and storage. Unlike standard RAG, which handles every query identically, agentic RAG employs an AI agent to dynamically evaluate queries and select the appropriate tools for data retrieval, improving accuracy. This approach consolidates vector storage, chat memory, and SQL data within PostgreSQL, reducing infrastructure complexity and enabling a seamless transition between semantic searches and precise database queries. The system leverages PostgreSQL's pgvector extension for vector storage, while also using tables for document metadata and content to manage and query large texts effectively. The integration of n8n provides orchestration capabilities, allowing the system to function as a chatbot or API backend, and the flexibility to add various tools for document and vector data handling.
Nov 25, 2025 1,120 words in the original blog post.
Aiven has introduced a new Developer tier for its PostgreSQL services, positioned between the existing Free and Professional tiers, starting at $8 USD per month. This tier provides enhanced features compared to the Free tier, including increased storage capacity up to 8GB, basic support services, and the assurance that inactive services will not automatically power off, ensuring continuous uptime. Designed as a cost-effective solution for test and personal projects, the Developer tier allows users to maintain a stable PostgreSQL environment with essential features like daily backups, while offering the flexibility to downgrade to the Free tier or upgrade to the Professional tier as project needs evolve. The introduction of this tier aims to offer users a scalable option that balances cost and functionality without the advanced features of the Professional tier, such as specific cloud provider selection and advanced networking options.
Nov 12, 2025 943 words in the original blog post.
PostgreSQL 18 introduces Asynchronous I/O (AIO) to enhance database performance, particularly for read-heavy workloads in environments with higher storage latency, such as cloud platforms. Unlike the previous synchronous I/O model, which required blocking system calls for each data retrieval, AIO allows multiple read operations to be conducted concurrently, thus enabling overlap between I/O and computation for more efficient processing. This update utilizes an io_method configuration parameter that offers flexibility by supporting three methods: the default asynchronous worker method, synchronous I/O for maintaining previous behaviors, and io_uring for optimized performance on Linux systems. PostgreSQL 18's AIO is especially beneficial for large, read-intensive tasks, although write operations remain synchronous. The version also introduces the pg_aios system view for monitoring asynchronous I/O activities, providing users with deeper insights into database operations and performance.
Nov 11, 2025 1,172 words in the original blog post.