The neon extension
An extension for Neon-specific statistics including the Local File Cache hit ratio
The neon
extension provides functions and views designed to gather Neon-specific metrics.
The neon_stat_file_cache view
The neon_stat_file_cache
view provides insights into how effectively the Local File Cache (LFC) is being used.
What is the Local File Cache?
Neon computes have a Local File Cache (LFC), which is a layer of caching that stores frequently accessed data in the local memory of the Neon compute instance. Like Postgres shared buffers, the LFC reduces latency and improves query performance by minimizing the need to fetch data from Neon storage (the Pageserver) repeatedly. The LFC acts as an add-on or extension of Postgres shared buffers. In Neon computes, the shared_buffers
parameter is always set to 128 MB, regardless of compute size. The LFC extends the cache memory to approximately 80% of your compute's RAM. To view the LFC size for each Neon compute size, see How to size your compute.
When data is requested, Postgres checks shared buffers first, then the LFC. If the requested data is not found in the LFC, it is read from Neon storage. Shared buffers and the LFC both cache your most frequently or most recently accessed data, but they may not cache exactly the same data due to different cache eviction patterns. The LFC is also much larger than shared buffers, so it stores significantly more data.
neon_stat_file_cache metrics
The neon_stat_file_cache
view includes the following metrics:
-
file_cache_misses
: The number of times the requested page block is not found in Postgres shared buffers or the LFC. In this case, the page block is retrieved from Neon storage. -
file_cache_hits
: The number of times the requested page block was not found in Postgres shared buffers but was found in the LFC. -
file_cache_used
: The number of times the LFC was accessed. -
file_cache_writes
: The number of writes to the LFC. A write occurs when a requested page block is not found in Postgres shared buffers or the LFC. In this case, the data is retrieved from Neon storage and then written to shared buffers and the LFC. -
file_cache_hit_ratio
: The percentage of database requests that are served from the LFC rather than Neon storage. This is a measure of cache efficiency, indicating how often requested data is found in the cache. A higher cache hit ratio suggests better performance, as accessing data from memory is faster than accessing data from storage. The ratio is calculated using the following formula:For OLTP workloads, you should aim for a cache hit ratio of 99% or better. However, the ideal cache hit ratio depends on your specific workload and data access patterns. In some cases, a slightly lower ratio might still be acceptable, especially if the workload involves a lot of sequential scanning of large tables where caching might be less effective.
Using the neon_stat_file_cache view
To use the neon_stat_file_cache
view, install the neon
extension on a preferred database or connect to the Neon-managed postgres
database where the neon
extension is always available.
To install the extension on a preferred database:
To connect to the Neon-managed postgres
database instead:
If you are already connected via psql
, you can simply switch to the postgres
database using the \c
command:
Issue the following query to view LFC usage data for your compute instance:
View LFC metrics with EXPLAIN ANALYZE
You can also use EXPLAIN ANALYZE
with the FILECACHE
option to view LFC cache hit and miss data. Installing the noen
extension is not required. For example:
info
LFC statistics are for the lifetime of your compute, from the last time the compute started until the time you ran the query. Statistics are lost when your compute stops, and gathered again from scratch when your compute restarts. Also, keep in mind that your compute runs an instance of Postgres, which may contain multiple databases and tables. LFC statistics are for your entire compute, not specific databases or tables.
Views for Neon internal use
The neon
extension is installed by default to a system-owned postgres
database in each Neon project. The postgres
database includes functions and views owned by the Neon system role (cloud_admin
) that are used to collect statistics. This data helps the Neon team enhance the Neon service.
Need help?
Join our Discord Server to ask questions or see what others are doing with Neon. Users on paid plans can open a support ticket from the console. For more detail, see Getting Support.
Last updated on