Sha256: f6caae5b20f2c4599df077d96c56f54d7f52c3caea257d16a239975ce45edbf9
Contents?: true
Size: 1.11 KB
Versions: 18
Compression:
Stored size: 1.11 KB
Contents
# Some of these options are from mongo_ha # default_options: &default_options :w: 1 :pool_size: 5 :pool_timeout: 5 :connect_timeout: 5 :reconnect_attempts: 53 :reconnect_retry_seconds: 0.1 :reconnect_retry_multiplier: 2 :reconnect_max_retry_seconds: 5 development: uri: mongodb://localhost:27017/development_rocketjob options: <<: *default_options development_work: uri: mongodb://localhost:27017/development_rocketjob_work options: <<: *default_options test: uri: mongodb://localhost:27017/test_rocketjob options: <<: *default_options test_work: uri: mongodb://localhost:27017/test_rocketjob_work options: <<: *default_options # Sample Production Settings production: uri: mongodb://mongo1.site.com:27017,mongo2.site.com:27017/production_rocketjob options: <<: *default_options :pool_size: 50 :pool_timeout: 5 production_work: uri: mongodb://mongo_local.site.com:27017/production_rocketjob_work options: <<: *default_options :pool_size: 50 :pool_timeout: 5
Version data entries
18 entries across 18 versions & 1 rubygems