Skip to content

Commit

Permalink
effective_io_concurrency is not a valid flag
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaraphael committed Nov 18, 2023
1 parent 71d23fe commit 25f4f99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stack/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# Should be 1/4 of total system memory (15Gb)
dict(name="shared_buffers", value="468MB"),
# Should be slightly higher than expected number of simultaneous connections
dict(name="max_connections", value="500"),
dict(name="max_connections", value=500),
# Use for sorting and joining operations. work_mem * max_connections
# should be less than shared buffers. However, this is the case if
# we expect `max_connection` to relate to the number of users querying
Expand All @@ -35,7 +35,7 @@
# Only used by temp tables
dict(name="temp_buffers", value="512MB"),
# Max number of concurrent i/o processes
dict(name="effective_io_concurrency", value="100"),
# dict(name="effective_io_concurrency", value="100"),
dict(name="min_wal_size", value="1GB"),
dict(name="max_wal_size", value="4GB"),
],
Expand Down

0 comments on commit 25f4f99

Please sign in to comment.