Skip to content

Instantly share code, notes, and snippets.

@william-richard
Created April 30, 2015 21:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save william-richard/bb94ef0b510202a0b96f to your computer and use it in GitHub Desktop.
Save william-richard/bb94ef0b510202a0b96f to your computer and use it in GitHub Desktop.
collins akka config example
# Akka System Configuration
# ~~~~~
# Akka system used internally by Collins
akka {
actor {
default-dispatcher = {
fork-join-executor {
parallelism-factor = 1.0
parallelism-max = 24
}
}
deployment = {
/background-processor = {
dispatcher = default-dispatcher
router = round-robin
nr-of-instances = 128
}
/solr_asset_updater = {
dispatcher = default-dispatcher
router = round-robin
nr-of-instances = 1
}
/solr_asset_log_updater = {
dispatcher = default-dispatcher
router = round-robin
nr-of-instances = 1
}
/change_queue_processor = {
dispatcher = default-dispatcher
router = round-robin
nr-of-instances = 1
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment