<para>
Sets the maximum number of relations (tables) for which free
space will be tracked in the shared free-space map. The default
- is 100. This option can only be set at server start.
+ is 1000. This option can only be set at server start.
</para>
</listitem>
</varlistentry>
{
{"max_fsm_relations", PGC_POSTMASTER}, &MaxFSMRelations,
- 100, 10, INT_MAX, NULL, NULL
+ 1000, 10, INT_MAX, NULL, NULL
},
{
{"max_fsm_pages", PGC_POSTMASTER}, &MaxFSMPages,
# Shared Memory Size
#
#shared_buffers = 64 # 2*max_connections, min 16, typically 8KB each
-#max_fsm_relations = 100 # min 10, fsm is free space map, ~40 bytes
+#max_fsm_relations = 1000 # min 10, fsm is free space map, ~40 bytes
#max_fsm_pages = 10000 # min 1000, fsm is free space map, ~6 bytes
#max_locks_per_transaction = 64 # min 10
#wal_buffers = 8 # min 4, typically 8KB each