599166320 commented on issue #13317:
URL: https://github.com/apache/druid/issues/13317#issuecomment-1304545194

   @AmatyaAvadhanula 
   
   1. dynamic config
   ```
   {
     "millisToWaitBeforeDeleting": 900000,
     "mergeBytesLimit": 524288000,
     "mergeSegmentsLimit": 1000,
     "maxSegmentsToMove": 5,
     "percentOfSegmentsToConsiderPerMove": 100,
     "useBatchedSegmentSampler": true,
     "replicantLifetime": 15,
     "replicationThrottleLimit": 10,
     "balancerComputeThreads": 5,
     "emitBalancingStats": false,
     "killDataSourceWhitelist": [],
     "killPendingSegmentsSkipList": [],
     "maxSegmentsInNodeLoadingQueue": 500,
     "decommissioningNodes": [
      
     ],
     "decommissioningMaxPercentOfMaxSegmentsToMove": 60,
     "pauseCoordination": false,
     "replicateAfterLoadTimeout": false,
     "maxNonPrimaryReplicantsToLoad": 2147483647
   }
   
   ```
   
   2. master runtime properties
   
   
   ```
   druid.service=druid/coordinator
   druid.plaintextPort=8061
   
   druid.coordinator.startDelay=PT10S
   druid.coordinator.period=PT5S
   druid.coordinator.balancer.strategy=CachingCostBalancerStrategy
   
   druid.coordinator.asOverlord.enabled=true
   druid.coordinator.asOverlord.overlordService=druid/overlord
   
   druid.indexer.queue.startDelay=PT5S
   
   druid.indexer.runner.type=remote
   druid.indexer.storage.type=metadata
   
   druid.indexer.logs.kill.enabled=true
   druid.indexer.logs.kill.durationToRetain=1
   druid.coordinator.kill.on=true
   druid.coordinator.kill.durationToRetain=PT1s
   druid.coordinator.kill.maxSegments=1000000
   ```
   
   
   3. historical runtime properties
   
   
   ```
   druid.service=druid/historical
   druid.plaintextPort=8051
   
   # HTTP server threads
   druid.server.http.numThreads=60
   
   # Processing threads and buffers
   druid.processing.buffer.sizeBytes=500000000
   druid.processing.numMergeBuffers=16
   druid.processing.numThreads=62
   druid.processing.tmpDir=var/druid/processing
   
   # Segment storage
   
druid.segmentCache.locations=[{"path":"var/druid/segment-cache","maxSize":"1000g"}]
   
   # Query cache
   druid.historical.cache.useCache=true
   druid.historical.cache.populateCache=true
   druid.cache.type=caffeine
   druid.cache.sizeInBytes=2GiB
   ```
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to