Slackbot
02/10/2023, 3:25 AMSharath S
02/10/2023, 3:25 AMSharath S
02/10/2023, 3:26 AM#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# <http://www.apache.org/licenses/LICENSE-2.0>
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
druid.service=druid/broker
druid.plaintextPort=8082
# HTTP server settings
# Modify this number base on Number of Data instances 350 * 2 instances < 800 in historical
druid.server.http.numThreads=350
druid.server.http.enableRequestLimit = true
druid.server.http.defaultQueryTimeout = 60000
druid.server.http.queueSize = 30000
# HTTP client settings
# Modify this number base on Number of Data instances
druid.broker.http.numConnections=350
druid.broker.http.maxQueuedBytes=15MiB
# Processing threads and buffers
druid.processing.buffer.sizeBytes=1GiB
druid.processing.numMergeBuffers=8
druid.processing.numThreads=4
druid.processing.tmpDir=var/druid/processing
# Query cache disabled -- push down caching and merging instead
druid.broker.cache.useCache=false
druid.broker.cache.populateCache=falseKaran Kumar
02/10/2023, 3:33 AMSharath S
02/10/2023, 3:43 AMBen Krug
02/10/2023, 5:16 AMSharath S
02/10/2023, 5:45 AMBrandon Tan
02/10/2023, 5:46 AMKaran Kumar
02/10/2023, 5:54 AMSharath S
02/10/2023, 6:16 AMBrandon Tan
02/10/2023, 6:18 AMSharath S
02/10/2023, 6:28 AMBrandon Tan
02/10/2023, 6:47 AMSo, when data nodes are horizontally scaled, scale query nodes vertically is correct understanding?Yes, we would look at the
numThreads and mergeBuffers for groupBy queries etcKaran Kumar
02/10/2023, 9:12 AM