Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PHEE-666] Reliability Testing #94

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -512,4 +512,5 @@ workflows:
# requires:
# - install-helm-chart




Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
tenants.connections[0].auto_update=true
tenants.connections[0].deadlock_max_retries=0
tenants.connections[0].deadlock_max_retry_interval=1
tenants.connections[0].deadlock_max_retries=5
tenants.connections[0].deadlock_max_retry_interval=5
tenants.connections[0].driver_class=com.mysql.cj.jdbc.Driver
tenants.connections[0].jdbcProtocol=jdbc
tenants.connections[0].jdbcSubProtocol=mysql
tenants.connections[0].name=gorilla
tenants.connections[0].pool_abandon_when_percentage_full=50
tenants.connections[0].pool_initial_size=5
tenants.connections[0].pool_log_abandoned=1
tenants.connections[0].pool_max_active=40
tenants.connections[0].pool_max_idle=10
tenants.connections[0].pool_min_evictable_idle_time_millis=60000
tenants.connections[0].pool_min_idle=20
tenants.connections[0].pool_max_active=100
tenants.connections[0].pool_max_idle=20
tenants.connections[0].pool_min_evictable_idle_time_millis=30000
tenants.connections[0].pool_min_idle=30
tenants.connections[0].pool_remove_abandoned=1
tenants.connections[0].pool_remove_abandoned_timeout=60
tenants.connections[0].pool_suspect_timeout=60
tenants.connections[0].pool_remove_abandoned_timeout=120
tenants.connections[0].pool_suspect_timeout=120
tenants.connections[0].pool_test_on_borrow=1
tenants.connections[0].pool_time_between_eviction_runs_millis=34000
tenants.connections[0].pool_time_between_eviction_runs_millis=15000
tenants.connections[0].pool_validation_interval=30000
tenants.connections[0].schema_connection_parameters=null
tenants.connections[0].schema_name=gorilla
Expand Down