Skip to content

Commit

Permalink
Increase database connections to 10000
Browse files Browse the repository at this point in the history
Scale limit testing on a 64 node cluster with 13 TB RAM and 2600
cores showed that atleast 1800 database connections are required
to appropriately start 2000 virtual machines simulateounsly.  Other
documentation on the internet recommends larger values such as 8000,
so we set to a larger value that should be able to handle a maxed out
512GB ram per compute node cluster with all services enabled.

Change-Id: I8767cf3fb04e066cc22e796c647e944b4e4a1742
Closes-Bug: #1564275
  • Loading branch information
Steven Dake committed Mar 31, 2016
1 parent 3a028e4 commit 1fac190
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ansible/roles/mariadb/templates/galera.cnf.j2
Expand Up @@ -25,7 +25,7 @@ wsrep_sst_method=xtrabackup-v2
wsrep_sst_auth={{ database_user }}:{{ database_password }}
wsrep_slave_threads=4

max_connections=1000
max_connections=10000

[server]
pid-file=/var/lib/mysql/mariadb.pid

0 comments on commit 1fac190

Please sign in to comment.