From 9661dd2253bbde20b6c3d45c2f9cde89e1d6376e Mon Sep 17 00:00:00 2001 From: Stas Kelvich Date: Thu, 8 Feb 2024 17:38:45 +0200 Subject: [PATCH] Update docs/rfcs/032-compute-aux-files.md Co-authored-by: Bodobolero --- docs/rfcs/032-compute-aux-files.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rfcs/032-compute-aux-files.md b/docs/rfcs/032-compute-aux-files.md index 0845c90de2..7d4304d917 100644 --- a/docs/rfcs/032-compute-aux-files.md +++ b/docs/rfcs/032-compute-aux-files.md @@ -58,7 +58,7 @@ https://github.com/neondatabase/postgres/blob/f7ea954989a2e7901f858779cff55259f2 *Ensuring Data Integrity:* To ensure data integrity across unexpected shutdowns, extensions like pg_stat_statements can also leverage PostgreSQL's WAL (Write-Ahead Logging) for critical data that must survive crashes. However, for performance statistics, a simple file-based persistence mechanism is often sufficient and involves less overhead. The following important extensions are supported by Neon and we could either provide an extension specific mechanism to survive their AUX files or write a generic mechanism that can support more extensions in their hooks. -### pg_stat_statements +#### pg_stat_statements * Stale file: Not currently supported, but could be added if desired. * Lost file: Results in lost stats, but everything else will work.