Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Add the DiscoveryIgnoreReplicaHostnameFilters in the sample configuration. #815

Merged
merged 2 commits into from
Mar 2, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 4 additions & 0 deletions conf/orchestrator-sample-sqlite.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
"DefaultInstancePort": 3306,
"DiscoverByShowSlaveHosts": true,
"InstancePollSeconds": 5,
"DiscoveryIgnoreReplicaHostnameFilters": [
"a_host_i_want_to_ignore",
"another_host_i_want_to_ignore"
],
"UnseenInstanceForgetHours": 240,
"SnapshotTopologiesIntervalHours": 0,
"InstanceBulkOperationsWaitTimeoutSeconds": 10,
Expand Down
4 changes: 4 additions & 0 deletions conf/orchestrator-sample.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@
"DefaultInstancePort": 3306,
"DiscoverByShowSlaveHosts": true,
"InstancePollSeconds": 5,
"DiscoveryIgnoreReplicaHostnameFilters": [
"a_host_i_want_to_ignore",
"another_host_i_want_to_ignore"
],
"UnseenInstanceForgetHours": 240,
"SnapshotTopologiesIntervalHours": 0,
"InstanceBulkOperationsWaitTimeoutSeconds": 10,
Expand Down
4 changes: 4 additions & 0 deletions conf/orchestrator-simple.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
"#": "-----",
"DiscoverByShowSlaveHosts": true,
"InstancePollSeconds": 5,
"DiscoveryIgnoreReplicaHostnameFilters": [
"a_host_i_want_to_ignore",
"another_host_i_want_to_ignore"
],
"HostnameResolveMethod": "default",
"MySQLHostnameResolveMethod": "@@hostname",
"ReasonableReplicationLagSeconds": 10,
Expand Down
4 changes: 4 additions & 0 deletions docs/configuration-sample.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ The following is a production configuration file, with some details redacted.
"SlaveStartPostWaitMilliseconds": 1000,
"DiscoverByShowSlaveHosts": false,
"InstancePollSeconds": 5,
"DiscoveryIgnoreReplicaHostnameFilters": [
"a_host_i_want_to_ignore",
"another_host_i_want_to_ignore"
],
"ReadLongRunningQueries": false,
"SkipMaxScaleCheck": true,
"BinlogFileHistoryDays": 10,
Expand Down