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 your Neon compute's cache is being used.
What is the compute cache?
Neon uses up to 75% of your compute's RAM for data caching. This cache stores frequently accessed data in the local memory of the Neon compute, which reduces latency and improves query performance by minimizing the need to fetch data from database storage. Like Postgres shared buffers, it caches your most recently accessed data. To view the compute cache size for each Neon compute size, see How to size your compute.
Monitoring compute cache usage
You can monitor compute cache usage by installing the neon extension on your database and querying the neon_stat_file_cache view or using EXPLAIN ANALYZE. Additionally, you can monitor the Compute cache hit rate graph on the Monitoring page in the Neon console, or check it from the terminal with neon inspect db lfc-hit-rate and neon inspect db working-set.
neon_stat_file_cache view
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 compute cache. In this case, the page block is retrieved from database storage. -
file_cache_hits: The number of times the requested page block was not found in Postgres shared buffers but was found in the compute cache. -
file_cache_used: The number of times the compute cache was accessed. -
file_cache_writes: The number of writes to the compute cache. A write occurs when a requested page block is not found in Postgres shared buffers or the compute cache. In this case, the data is retrieved from database storage and then written to shared buffers and the compute cache. -
file_cache_hit_ratio: The percentage of database requests that are served from the compute cache rather than database 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:file_cache_hit_ratio = (file_cache_hits / (file_cache_hits + file_cache_misses)) * 100For 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. If you find that your cache hit ratio is quite low, your working set may not be fully or adequately in memory. In this case, consider using a larger compute with more memory. Please keep in mind that the statistics are for the entire compute, not specific databases or tables.
Using the neon_stat_file_cache view
To use the neon_stat_file_cache view, install the neon extension on your database:
To install the extension on a database:
CREATE EXTENSION neon;To connect to your database. You can find a connection string for your database on the Neon Dashboard.
psql postgresql://alex:AbC123dEf@ep-cool-darkness-123456.us-east-2.aws.neon.tech/dbname?sslmode=require&channel_binding=requireIssue the following query to view compute cache usage data for your compute:
SELECT * FROM neon_stat_file_cache;
file_cache_misses | file_cache_hits | file_cache_used | file_cache_writes | file_cache_hit_ratio
-------------------+-----------------+-----------------+-------------------+----------------------
2133643 | 108999742 | 607 | 10767410 | 98.08note
Compute cache statistics represent the lifetime of your compute, from the last time the compute started until the time you ran the query. Be aware that statistics are lost when your compute stops and gathered again from scratch when your compute restarts. You'll only want to run the cache hit ratio query after a representative workload has been run. For example, say that you increased your compute size after seeing a cache hit ratio below 99%. Changing the compute size restarts your compute, so you lose all of your current usage statistics. In this case, you should run your workload before you try the cache hit ratio query again to see if your cache hit ratio improved.
Remember that Postgres checks shared buffers first before it checks your compute cache. If you are only working with a small amount of data, queries may be served entirely from the shared buffers, resulting in no compute cache hits.
View compute cache metrics with EXPLAIN ANALYZE
You can also use EXPLAIN ANALYZE with the FILECACHE and PREFETCH options to view compute cache hit and miss data, as well as prefetch statistics. Installing the neon extension is not required. For example, this query fetches data for a SELECT COUNT(*) query.
EXPLAIN (ANALYZE,BUFFERS,PREFETCH,FILECACHE) SELECT COUNT(*) FROM pgbench_accounts;
Finalize Aggregate (cost=214486.94..214486.95 rows=1 width=8) (actual time=5195.378..5196.034 rows=1 loops=1)
Buffers: shared hit=178875 read=143691 dirtied=128597 written=127346
Prefetch: hits=0 misses=1865 expired=0 duplicates=0
File cache: hits=141826 misses=1865
-> Gather (cost=214486.73..214486.94 rows=2 width=8) (actual time=5195.366..5196.025 rows=3 loops=1)
Workers Planned: 2
Workers Launched: 2
Buffers: shared hit=178875 read=143691 dirtied=128597 written=127346
Prefetch: hits=0 misses=1865 expired=0 duplicates=0
File cache: hits=141826 misses=1865
-> Partial Aggregate (cost=213486.73..213486.74 rows=1 width=8) (actual time=5187.670..5187.670 rows=1 loops=3)
Buffers: shared hit=178875 read=143691 dirtied=128597 written=127346
Prefetch: hits=0 misses=1865 expired=0 duplicates=0
File cache: hits=141826 misses=1865
-> Parallel Index Only Scan using pgbench_accounts_pkey on pgbench_accounts (cost=0.43..203003.02 rows=4193481 width=0) (actual time=0.574..4928.995 rows=3333333 loops=3)
Heap Fetches: 3675286
Buffers: shared hit=178875 read=143691 dirtied=128597 written=127346
Prefetch: hits=0 misses=1865 expired=0 duplicates=0
File cache: hits=141826 misses=1865PREFETCH option
The PREFETCH option provides information about Neon's prefetching mechanism, which predicts which pages will be needed soon and sends prefetch requests to the page server before the page is actually requested by the executor. This helps reduce latency by having data ready when it's needed. The PREFETCH option includes the following metrics:
hits- Number of pages received from the page server before actually requested by the executor. Prefetch distance is controlled by theeffective_io_concurrencyparameter. The larger this value, the more likely the page server will complete the request before it's needed. However, it should not be larger thanneon.prefetch_buffer_size.misses- Number of accessed pages that were not prefetched. Prefetch is not implemented for all plan nodes, and even for supported nodes (like sequential scan), some mispredictions can occur.expired- Pages that were updated since the prefetch request was sent, or results that weren't used because the executor didn't need the page (for example, due to aLIMITclause in the query).duplicates- Multiple prefetch requests for the same page. For some nodes like sequential scan, predicting next pages is straightforward. However, for index scans that prefetch referenced heap pages, index entries can have multiple references to the same heap page, resulting in duplicate prefetch requests.
FILECACHE option
The FILECACHE option provides information about compute cache usage during query execution:
hits- Number of accessed pages found in the compute cache.misses- Number of accessed pages not found in the compute cache.
Views for Neon internal use
The neon extension also 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. The extension is installed by default in a system-owned postgres database in each Neon project.
Need help?
Join our Discord Server to ask questions or see what others are doing with Neon. For paid plan support options, see Support.








