Jump to:
Config parameter: | Default value: |
---|---|
replacement_sort_tuples | 150000 |
Config parameter: | Default value: |
---|---|
data_directory_mode | 0700 |
data_sync_retry | off |
enable_parallel_append | on |
enable_parallel_hash | on |
enable_partition_pruning | on |
enable_partitionwise_aggregate | off |
enable_partitionwise_join | off |
jit | off |
jit_above_cost | 100000 |
jit_debugging_support | off |
jit_dump_bitcode | off |
jit_expressions | on |
jit_inline_above_cost | 500000 |
jit_optimize_above_cost | 500000 |
jit_profiling_support | off |
jit_provider | llvmjit |
jit_tuple_deforming | on |
max_parallel_maintenance_workers | 2 |
parallel_leader_participation | on |
ssl_passphrase_command | |
ssl_passphrase_command_supports_reload | off |
vacuum_cleanup_index_scale_factor | 0.1 |
Config parameter: | Default value in Pg 10: | Default value in Pg 11.2: |
---|---|---|
wal_segment_size | 2048 | 16777216 |
⇑ Upgrade to 10.2 released on 2018-02-08 - docs
Ensure that vacuum will always clean up the pending-insertions list of a GIN index (Masahiko Sawada)
This is necessary to ensure that dead index entries get removed. The old code got it backwards, allowing vacuum to skip the cleanup if some other process were running cleanup concurrently, thus risking invalid entries being left behind in the index.
⇑ Upgrade to 10.5 released on 2018-08-09 - docs
Fix mishandling of empty uncompressed posting list pages in GIN indexes (Sivasubramanian Ramasubramanian, Alexander Korotkov)
This could result in an assertion failure after pg_upgrade of a pre-9.4 GIN index (9.4 and later will not create such pages).
⇑ Upgrade to 11 released on 2018-10-18 - docs
Add predicate locking for hash, GiST and GIN indexes (Shubham Barai)
This reduces the likelihood of serialization conflicts in serializable-mode transactions.
⇑ Upgrade to 11.2 released on 2019-02-14 - docs
Avoid deadlock between GIN vacuuming and concurrent index insertions (Alexander Korotkov, Andrey Borodin, Peter Geoghegan)
This change partially reverts a performance improvement, introduced in version 10.0, that attempted to reduce the number of index pages locked during deletion of a GIN posting tree page. That's now been found to lead to deadlocks, so we've removed it pending closer analysis.
Avoid deadlock between hot-standby queries and replay of GIN index page deletion (Alexander Korotkov)
Prevent empty GIN index pages from being reclaimed too quickly, causing failures of concurrent searches (Andrey Borodin, Alexander Korotkov)