Open koivunej opened 10 months ago
Interestingly enough, when running the tests in a loop a ipcrm -a
was not enough and raw test logs still has for example:
2024-01-22 19:58:36.042 UTC [326426] FATAL: could not resize shared memory segment "/PostgreSQL.1638637514" to 10976 bytes: No space left on device
After many successful iterations.
Reproduction on 1aea65eb9da46030f2b9740f3694b821663e0a90:
ipcs
to verify there are no shmem segmentscargo nextest run -p wal_craft v14::xlog_utils_test::test_encode_logical_message
ipcs
to confirm it DID NOT leak anythingcargo nextest run -p wal_craft wal_craft v14::xlog_utils_test::test_find_end_of_wal_simple
ipcs
to confirm it leaked one 56 byte segmentFor
v14::xlog_utils_test::test_update_next_xid
it seemed to happen at least once, for the rest it happens always, soipcs
will list 3 segments aftercargo nextest run -p wal_craft v14::xlog_utils_test::test_find_end_of_wal_simple v14::xlog_utils_test::test_find_end_of_wal_last_crossing_segment v14::xlog_utils_test::test_find_end_of_wal_crossing_segment_followed_by_small_one
.Sometimes the v15 tests do not leak, similarly to v16.
Found on https://github.com/neondatabase/neon/issues/6373#issuecomment-1904687987.