March 2026 Summaries
4 posts from Neon
Filter
Month:
Year:
Post Summaries
Back to Blog
Hans Norheim, a Senior Staff Software Engineer at Databricks, discusses how Neon and Databricks Lakebase are utilizing the lakebase architecture to achieve zero-downtime patching by employing a technique called prewarming. This process aims to make database version updates and security patches seamless and unnoticeable to users by preventing performance degradation after restarts, which typically suffer from cold caches. The lakebase architecture leverages stateless compute nodes and a disaggregated storage system, allowing compute replicas to be spun up and prewarmed without affecting the active primary database. By preloading data into cache and subscribing to the write-ahead log from shared storage, the new compute node is ready to take over as the primary without restarting the database server. The prewarming approach significantly reduces the time needed for cache recovery, maintaining consistent performance during maintenance and eliminating the need for full replicas or complex orchestration. This innovation ensures that the planned maintenance windows can be executed without disrupting the availability and performance of customer databases.
Mar 27, 2026
979 words in the original blog post.
Neon, in collaboration with Stripe Projects, is enhancing the capabilities of AI coding agents by enabling seamless agentic provisioning of databases directly from the command line interface. Traditionally, while AI agents excelled at writing code, the task of setting up databases and managing credentials was manual and cumbersome. With the integration of Neon into Stripe Projects, developers and AI agents can now provision infrastructure like Postgres databases through a simple CLI workflow, bypassing the need for dashboards and manual key handling. This advancement is significant for agent workflows, as it provides a deterministic and reliable process for database provisioning, addressing the need for immediacy and cost-effectiveness with features like rapid database readiness, a free tier with no upfront costs, and the ability to scale to zero when inactive. Built on a lakebase architecture that separates storage and compute, Neon is optimized for this new era of agent-provisioned services, making it a suitable choice for developers seeking efficient and automated project deployment.
Mar 26, 2026
771 words in the original blog post.
Specific.dev is a cloud platform designed to streamline the infrastructure for coding agents by allowing them to define and deploy their needs through a single configuration file and CLI command, addressing the fragmented stack issue faced by developers using multiple platforms like Vercel, Supabase, and Railway. The platform utilizes Neon as its database solution due to its serverless architecture, which scales to zero to reduce idle compute costs, and its ability to create isolated branching environments for testing. This integration enables Specific to efficiently manage over 10,000 Neon databases, providing a seamless experience for developers by automating database provisioning and ensuring consistency between local and production environments. Specific's roadmap focuses on enhancing the self-serve AI engineer experience by incorporating features such as full-stack branching and automated log analysis.
Mar 18, 2026
920 words in the original blog post.
George MacKerron delves into the intricacies and security concerns surrounding the cancellation of queries in Postgres via the psql command-line interface, highlighting the use of Ctrl-C which sends an unencrypted CancelRequest message to the server. The process involves establishing a new connection using a special protocol version, targeting a connection rather than a specific query, and is identified via a process ID and a secret key provided by the server. Despite the availability of functions to encrypt these messages since Postgres 17, psql still sends them in plaintext, posing potential security risks such as Denial of Service attacks. The article discusses the efforts to refactor psql to utilize encrypted cancellation functions and introduces Elephantshark, a tool designed to monitor Postgres network traffic and address related challenges. MacKerron suggests measures for improved security, such as using newer Postgres versions with enhanced protocol settings and employing VPNs.
Mar 05, 2026
2,405 words in the original blog post.