Skip to content

Commit

Permalink
0002893: Set the defaults for pull.thread.per.server.count and
Browse files Browse the repository at this point in the history
push.thread.per.server.count to something bigger than 1
  • Loading branch information
chenson42 committed Nov 8, 2016
1 parent 11e8fb0 commit 436940f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -360,8 +360,6 @@ private ParameterConstants() {
public static final String SMTP_USE_AUTH = "smtp.auth";
public static final String SMTP_ALLOW_UNTRUSTED_CERT = "smtp.allow.untrusted.cert";

public final static String CHANNEL_THREADING = "channel.threading.enabled";

public final static String MONITOR_EVENTS_CAPTURE_ENABLED = "monitor.events.capture.enabled";

public final static String HYBRID_PUSH_PULL_ENABLED = "hybrid.push.pull.enabled";
Expand Down
11 changes: 2 additions & 9 deletions symmetric-core/src/main/resources/symmetric-default.properties
Original file line number Diff line number Diff line change
Expand Up @@ -648,13 +648,6 @@ auto.reload.reverse=false
# Type: boolean
auto.resolve.foreign.key.violation=true

# If this is true, then nodes will communicate with other nodes using a thread per node per channel versus a thread per node.
#
# DatabaseOverridable: true
# Tags: load
# Type: boolean
channel.threading.enabled=false

# Indicate whether the process of inserting data, data_events and outgoing_batches for
# a reload is transactional. The only reason this might be marked as false is to reduce
# possible contention while multiple nodes connect for reloads at the same time.
Expand Down Expand Up @@ -893,7 +886,7 @@ start.monitor.job=true
#
# DatabaseOverridable: true
# Tags: jobs
pull.thread.per.server.count=1
pull.thread.per.server.count=10

# The amount of time a single pull worker node_communication lock will timeout after.
#
Expand All @@ -905,7 +898,7 @@ pull.lock.timeout.ms=7200000
#
# DatabaseOverridable: true
# Tags: jobs
push.thread.per.server.count=1
push.thread.per.server.count=10

# The amount of time a single push worker node_communication lock will timeout after.
#
Expand Down

0 comments on commit 436940f

Please sign in to comment.