33 KiB
集群方式部署
Apache Druid 被设计部署为可扩展和容错的集群部署方式。
在本文档中,我们将会设置一个示例集群,并且进行一些讨论,你可以进行那些修改来满足你的需求。
这个简单的集群包括有下面的特性:
- 主服务器(Master Server)将会运行 Coordinator 和 Overlord 进程
- 2 个可扩展和容错的数据服务器将会运行 Historical 和 MiddleManager 进程
- 一个查询服务器(Query Server)将会运行 Broker 和 Router 进程
在生产环境中,我们建议你部署多个 Master 服务器和多个 Query 服务器,服务器的高可用性(fault-tolerant)配置与你的数据特性和容错性要求息息相关。 但是你可以使用一个主服务器(Master Server) 和 一个查询服务器(Query Server)来启动服务,随着需求的增加你可以随时增加更多的服务器节点。
选择硬件
全新部署
如果你没有已经存在的 Druid 集群,但是你希望开始在你的环境中使用集群方式部署 Druid,本文档将会使用预配置(pre-made configurations)内容来帮助你开始部署 Druid 的集群。
主服务器(Master Server)
Coordinator 和 Overlord 进程将会负责处理 metadata 数据和在你集群中进行协调。这 2 个进程可以合并在同一个服务器上。
在本示例中,我们将会在 AWS m5.2xlarge 部署一个评估的服务器和实例。
AWS 上面硬件的配置为:
- 8 vCPUs
- 31 GB RAM
有关本服务器的配置信息和有关硬件大小的建议,可以在文件 conf/druid/cluster/master
中找到。
数据服务器(Data server)
Historicals 和 MiddleManagers 可以合并到同一个服务器上,这个 2 个进程在你的集群中用于处理实际的数据。通常来说越大 CPU, RAM, SSDs硬盘越好。
在本示例中,我们将会在 i3.4xlarge 部署一个评估的服务器和实例。
AWS 上面硬件的配置为:
- 16 vCPUs
- 122 GB RAM
- 2 * 1.9TB SSD storage
有关本服务器的配置信息和有关硬件大小的建议,可以在文件 conf/druid/cluster/data
中找到。
查询服务器(Query server)
Druid Brokers 可以接受查询,并且将接受的查询发送到集群中处理。同时他们也负责维护内存中的查询缓存, 常来说越大的 CPU, RAM 越好。
在本示例中,我们将会在 m5.2xlarge 部署一个评估的服务器和实例。
AWS 上面硬件的配置为:
- 8 vCPUs
- 31 GB RAM
你也可以考虑在运行 Broker 进程的查询服务器上部署任何开源的 UI 或者查询库。
有关本服务器的配置信息和有关硬件大小的建议,可以在文件,可以在文件 conf/druid/cluster/query
中找到。
其他硬件大小
上面的示例集群配置是从多种确定 Druid 集群可能的配置方式中选择的一个示例。
您可以根据自己的特定需求和要求来选择 较小/较大的硬件配置或 较少/更多的服务器数量。 如果你的使用实例有比较复杂的可扩展性要求,你也可以选择不将进程合并到服务器上的配置方案,而针对每一个进程配置一台服务器(例如,你可以配置一个独立的 Historical 服务器)。
有关更多的配置信息,请参考页面 basic cluster tuning guide 中的内容,能够帮助你如何对你的配置进行配置和扩展。
从独立服务器部署上合并到集群
如果你已经有一个已经存在并且独立运行的独立服务器部署的话,例如在页面 single-server deployment examples 中部署的服务器, 现在你希望将这个独立部署的服务器合并到集群的部署方式中的话,下面的这部分内容将会帮助你完成这个切换和合并的过程。 这个过程包括有如何对硬件进行的选择和针对 Master/Data/Query 服务器应该如何进行组织。
主服务器(Master Server)
The main considerations for the Master server are available CPUs and RAM for the Coordinator and Overlord heaps.
Sum up the allocated heap sizes for your Coordinator and Overlord from the single-server deployment, and choose Master server hardware with enough RAM for the combined heaps, with some extra RAM for other processes on the machine.
For CPU cores, you can choose hardware with approximately 1/4th of the cores of the single-server deployment.
Data server
When choosing Data server hardware for the cluster, the main considerations are available CPUs and RAM, and using SSD storage if feasible.
In a clustered deployment, having multiple Data servers is a good idea for fault-tolerance purposes.
When choosing the Data server hardware, you can choose a split factor N
, divide the original CPU/RAM of the single-server deployment by N
, and deploy N
Data servers of reduced size in the new cluster.
Instructions for adjusting the Historical/MiddleManager configs for the split are described in a later section in this guide.
Query server
The main considerations for the Query server are available CPUs and RAM for the Broker heap + direct memory, and Router heap.
Sum up the allocated memory sizes for your Broker and Router from the single-server deployment, and choose Query server hardware with enough RAM to cover the Broker/Router, with some extra RAM for other processes on the machine.
For CPU cores, you can choose hardware with approximately 1/4th of the cores of the single-server deployment.
The basic cluster tuning guide has information on how to calculate Broker/Router memory usage.
Select OS
We recommend running your favorite Linux distribution. You will also need:
- Java 8 or later
Warning: Druid only officially supports Java 8. Any Java version later than 8 is still experimental.
If needed, you can specify where to find Java using the environment variables
DRUID_JAVA_HOME
orJAVA_HOME
. For more details run the verify-java script.
Your OS package manager should be able to help for both Java. If your Ubuntu-based OS does not have a recent enough version of Java, WebUpd8 offers packages for those OSes.
Download the distribution
First, download and unpack the release archive. It's best to do this on a single machine at first, since you will be editing the configurations and then copying the modified distribution out to all of your servers.
Download the apache-druid-0.21.1 release.
Extract Druid by running the following commands in your terminal:
tar -xzf apache-druid-apache-druid-0.21.1-bin.tar.gz
cd apache-druid-apache-druid-0.21.1
In the package, you should find:
LICENSE
andNOTICE
filesbin/*
- scripts related to the single-machine quickstartconf/druid/cluster/*
- template configurations for a clustered setupextensions/*
- core Druid extensionshadoop-dependencies/*
- Druid Hadoop dependencieslib/*
- libraries and dependencies for core Druidquickstart/*
- files related to the single-machine quickstart
We'll be editing the files in conf/druid/cluster/
in order to get things running.
Migrating from Single-Server Deployments
In the following sections we will be editing the configs under conf/druid/cluster
.
If you have an existing single-server deployment, please copy your existing configs to conf/druid/cluster
to preserve any config changes you have made.
Configure metadata storage and deep storage
Migrating from Single-Server Deployments
If you have an existing single-server deployment and you wish to preserve your data across the migration, please follow the instructions at metadata migration and deep storage migration before updating your metadata/deep storage configs.
These guides are targeted at single-server deployments that use the Derby metadata store and local deep storage. If you are already using a non-Derby metadata store in your single-server cluster, you can reuse the existing metadata store for the new cluster.
These guides also provide information on migrating segments from local deep storage. A clustered deployment requires distributed deep storage like S3 or HDFS. If your single-server deployment was already using distributed deep storage, you can reuse the existing deep storage for the new cluster.
Metadata storage
In conf/druid/cluster/_common/common.runtime.properties
, replace
"metadata.storage.*" with the address of the machine that you will use as your metadata store:
druid.metadata.storage.connector.connectURI
druid.metadata.storage.connector.host
In a production deployment, we recommend running a dedicated metadata store such as MySQL or PostgreSQL with replication, deployed separately from the Druid servers.
The MySQL extension and PostgreSQL extension docs have instructions for extension configuration and initial database setup.
Deep storage
Druid relies on a distributed filesystem or large object (blob) store for data storage. The most commonly used deep storage implementations are S3 (popular for those on AWS) and HDFS (popular if you already have a Hadoop deployment).
S3
In conf/druid/cluster/_common/common.runtime.properties
,
-
Add "druid-s3-extensions" to
druid.extensions.loadList
. -
Comment out the configurations for local storage under "Deep Storage" and "Indexing service logs".
-
Uncomment and configure appropriate values in the "For S3" sections of "Deep Storage" and "Indexing service logs".
After this, you should have made the following changes:
druid.extensions.loadList=["druid-s3-extensions"]
#druid.storage.type=local
#druid.storage.storageDirectory=var/druid/segments
druid.storage.type=s3
druid.storage.bucket=your-bucket
druid.storage.baseKey=druid/segments
druid.s3.accessKey=...
druid.s3.secretKey=...
#druid.indexer.logs.type=file
#druid.indexer.logs.directory=var/druid/indexing-logs
druid.indexer.logs.type=s3
druid.indexer.logs.s3Bucket=your-bucket
druid.indexer.logs.s3Prefix=druid/indexing-logs
Please see the S3 extension documentation for more info.
HDFS
In conf/druid/cluster/_common/common.runtime.properties
,
-
Add "druid-hdfs-storage" to
druid.extensions.loadList
. -
Comment out the configurations for local storage under "Deep Storage" and "Indexing service logs".
-
Uncomment and configure appropriate values in the "For HDFS" sections of "Deep Storage" and "Indexing service logs".
After this, you should have made the following changes:
druid.extensions.loadList=["druid-hdfs-storage"]
#druid.storage.type=local
#druid.storage.storageDirectory=var/druid/segments
druid.storage.type=hdfs
druid.storage.storageDirectory=/druid/segments
#druid.indexer.logs.type=file
#druid.indexer.logs.directory=var/druid/indexing-logs
druid.indexer.logs.type=hdfs
druid.indexer.logs.directory=/druid/indexing-logs
Also,
- Place your Hadoop configuration XMLs (core-site.xml, hdfs-site.xml, yarn-site.xml,
mapred-site.xml) on the classpath of your Druid processes. You can do this by copying them into
conf/druid/cluster/_common/
.
Please see the HDFS extension documentation for more info.
Configure for connecting to Hadoop (optional)
If you will be loading data from a Hadoop cluster, then at this point you should configure Druid to be aware of your cluster:
-
Update
druid.indexer.task.hadoopWorkingPath
inconf/druid/cluster/middleManager/runtime.properties
to a path on HDFS that you'd like to use for temporary files required during the indexing process.druid.indexer.task.hadoopWorkingPath=/tmp/druid-indexing
is a common choice. -
Place your Hadoop configuration XMLs (core-site.xml, hdfs-site.xml, yarn-site.xml, mapred-site.xml) on the classpath of your Druid processes. You can do this by copying them into
conf/druid/cluster/_common/core-site.xml
,conf/druid/cluster/_common/hdfs-site.xml
, and so on.
Note that you don't need to use HDFS deep storage in order to load data from Hadoop. For example, if your cluster is running on Amazon Web Services, we recommend using S3 for deep storage even if you are loading data using Hadoop or Elastic MapReduce.
For more info, please see the Hadoop-based ingestion page.
Configure Zookeeper connection
In a production cluster, we recommend using a dedicated ZK cluster in a quorum, deployed separately from the Druid servers.
In conf/druid/cluster/_common/common.runtime.properties
, set
druid.zk.service.host
to a connection string
containing a comma separated list of host:port pairs, each corresponding to a ZooKeeper server in your ZK quorum.
(e.g. "127.0.0.1:4545" or "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002")
You can also choose to run ZK on the Master servers instead of having a dedicated ZK cluster. If doing so, we recommend deploying 3 Master servers so that you have a ZK quorum.
Configuration Tuning
Migrating from a Single-Server Deployment
Master
If you are using an example configuration from single-server deployment examples, these examples combine the Coordinator and Overlord processes into one combined process.
The example configs under conf/druid/cluster/master/coordinator-overlord
also combine the Coordinator and Overlord processes.
You can copy your existing coordinator-overlord
configs from the single-server deployment to conf/druid/cluster/master/coordinator-overlord
.
Data
Suppose we are migrating from a single-server deployment that had 32 CPU and 256GB RAM. In the old deployment, the following configurations for Historicals and MiddleManagers were applied:
Historical (Single-server)
druid.processing.buffer.sizeBytes=500000000
druid.processing.numMergeBuffers=8
druid.processing.numThreads=31
MiddleManager (Single-server)
druid.worker.capacity=8
druid.indexer.fork.property.druid.processing.numMergeBuffers=2
druid.indexer.fork.property.druid.processing.buffer.sizeBytes=100000000
druid.indexer.fork.property.druid.processing.numThreads=1
In the clustered deployment, we can choose a split factor (2 in this example), and deploy 2 Data servers with 16CPU and 128GB RAM each. The areas to scale are the following:
Historical
druid.processing.numThreads
: Set to(num_cores - 1)
based on the new hardwaredruid.processing.numMergeBuffers
: Divide the old value from the single-server deployment by the split factordruid.processing.buffer.sizeBytes
: Keep this unchanged
MiddleManager:
druid.worker.capacity
: Divide the old value from the single-server deployment by the split factordruid.indexer.fork.property.druid.processing.numMergeBuffers
: Keep this unchangeddruid.indexer.fork.property.druid.processing.buffer.sizeBytes
: Keep this unchangeddruid.indexer.fork.property.druid.processing.numThreads
: Keep this unchanged
The resulting configs after the split:
New Historical (on 2 Data servers)
druid.processing.buffer.sizeBytes=500000000
druid.processing.numMergeBuffers=8
druid.processing.numThreads=31
New MiddleManager (on 2 Data servers)
druid.worker.capacity=4
druid.indexer.fork.property.druid.processing.numMergeBuffers=2
druid.indexer.fork.property.druid.processing.buffer.sizeBytes=100000000
druid.indexer.fork.property.druid.processing.numThreads=1
Query
You can copy your existing Broker and Router configs to the directories under conf/druid/cluster/query
, no modifications are needed, as long as the new hardware is sized accordingly.
Fresh deployment
If you are using the example cluster described above:
- 1 Master server (m5.2xlarge)
- 2 Data servers (i3.4xlarge)
- 1 Query server (m5.2xlarge)
The configurations under conf/druid/cluster
have already been sized for this hardware and you do not need to make further modifications for general use cases.
If you have chosen different hardware, the basic cluster tuning guide can help you size your configurations.
Open ports (if using a firewall)
If you're using a firewall or some other system that only allows traffic on specific ports, allow inbound connections on the following:
Master Server
- 1527 (Derby metadata store; not needed if you are using a separate metadata store like MySQL or PostgreSQL)
- 2181 (ZooKeeper; not needed if you are using a separate ZooKeeper cluster)
- 8081 (Coordinator)
- 8090 (Overlord)
Data Server
- 8083 (Historical)
- 8091, 8100–8199 (Druid Middle Manager; you may need higher than port 8199 if you have a very high
druid.worker.capacity
)
Query Server
- 8082 (Broker)
- 8088 (Router, if used)
In production, we recommend deploying ZooKeeper and your metadata store on their own dedicated hardware, rather than on the Master server.
Start Master Server
Copy the Druid distribution and your edited configurations to your Master server.
If you have been editing the configurations on your local machine, you can use rsync to copy them:
rsync -az apache-druid-apache-druid-0.21.1/ MASTER_SERVER:apache-druid-apache-druid-0.21.1/
No Zookeeper on Master
From the distribution root, run the following command to start the Master server:
bin/start-cluster-master-no-zk-server
With Zookeeper on Master
If you plan to run ZK on Master servers, first update conf/zoo.cfg
to reflect how you plan to run ZK. Then, you
can start the Master server processes together with ZK using:
bin/start-cluster-master-with-zk-server
In production, we also recommend running a ZooKeeper cluster on its own dedicated hardware.
Start Data Server
Copy the Druid distribution and your edited configurations to your Data servers.
From the distribution root, run the following command to start the Data server:
bin/start-cluster-data-server
You can add more Data servers as needed.
For clusters with complex resource allocation needs, you can break apart Historicals and MiddleManagers and scale the components individually. This also allows you take advantage of Druid's built-in MiddleManager autoscaling facility.
Start Query Server
Copy the Druid distribution and your edited configurations to your Query servers.
From the distribution root, run the following command to start the Query server:
bin/start-cluster-query-server
You can add more Query servers as needed based on query load. If you increase the number of Query servers, be sure to adjust the connection pools on your Historicals and Tasks as described in the basic cluster tuning guide.
Loading data
Congratulations, you now have a Druid cluster! The next step is to learn about recommended ways to load data into Druid based on your use case. Read more about loading data.
其他硬件配置
上面的示例集群是从多种确定Druid集群大小的可能方式中选择的一个示例。
您可以根据自己的特定需求和限制选择较小/较大的硬件或较少/更多的服务器。
如果您的使用场景具有复杂的扩展要求,则还可以选择不将Druid服务混合部署(例如,独立的Historical Server)。
基本集群调整指南中的信息可以帮助您进行决策,并可以调整配置大小。
从单服务器环境迁移部署
如果您现在已有单服务器部署的环境,例如单服务器部署示例中的部署,并且希望迁移到类似规模的集群部署,则以下部分包含一些选择Master/Data/Query服务等效硬件的准则。
Master服务
Master服务的主要考虑点是可用CPU以及用于Coordinator和Overlord进程的堆内存。
首先计算出来在单服务器环境下Coordinator和Overlord已分配堆内存之和,然后选择具有足够内存的Master服务硬件,同时还需要考虑到为服务器上其他进程预留一些额外的内存。
对于CPU,可以选择接近于单服务器环境核数1/4的硬件。
Data服务
在为集群Data服务选择硬件时,主要考虑可用的CPU和内存,可行时使用SSD存储。
在集群化部署时,出于容错的考虑,最好是部署多个Data服务。
在选择Data服务的硬件时,可以假定一个分裂因子N
,将原来的单服务器环境的CPU和内存除以N
,然后在新集群中部署N
个硬件规格缩小的Data服务。
Query服务
Query服务的硬件选择主要考虑可用的CPU、Broker服务的堆内和堆外内存、Router服务的堆内存。
首先计算出来在单服务器环境下Broker和Router已分配堆内存之和,然后选择可以覆盖Broker和Router内存的Query服务硬件,同时还需要考虑到为服务器上其他进程预留一些额外的内存。
对于CPU,可以选择接近于单服务器环境核数1/4的硬件。
基本集群调优指南包含有关如何计算Broker和Router服务内存使用量的信息。
选择操作系统
我们建议运行您喜欢的Linux发行版,同时还需要:
- Java 8
[!WARNING] Druid服务运行依赖Java 8,可以使用环境变量
DRUID_JAVA_HOME
或JAVA_HOME
指定在何处查找Java,有关更多详细信息,请运行verify-java
脚本。
下载发行版
首先,下载并解压缩发布安装包。最好首先在单台计算机上执行此操作,因为您将编辑配置,然后将修改后的配置分发到所有服务器上。
下载Druid最新0.17.0release安装包
在终端中运行以下命令来提取Druid
tar -xzf apache-druid-0.17.0-bin.tar.gz
cd apache-druid-0.17.0
在安装包中有以下文件:
LICENSE
和NOTICE
文件bin/*
- 启停等脚本conf/druid/cluster/*
- 用于集群部署的模板配置extensions/*
- Druid核心扩展hadoop-dependencies/*
- Druid Hadoop依赖lib/*
- Druid核心库和依赖quickstart/*
- 与快速入门相关的文件
我们主要是编辑conf/druid/cluster/
中的文件。
从单服务器环境迁移部署
在以下各节中,我们将在conf/druid/cluster
下编辑配置。
如果您已经有一个单服务器部署,请将您的现有配置复制到conf/druid /cluster
以保留您所做的所有配置更改。
配置元数据存储和深度存储
从单服务器环境迁移部署
如果您已经有一个单服务器部署,并且希望在整个迁移过程中保留数据,请在更新元数据/深层存储配置之前,按照元数据迁移和深层存储迁移中的说明进行操作。
这些指南针对使用Derby元数据存储和本地深度存储的单服务器部署。 如果您已经在单服务器集群中使用了非Derby元数据存储,则可以在新集群中可以继续使用当前的元数据存储。
这些指南还提供了有关从本地深度存储迁移段的信息。集群部署需要分布式深度存储,例如S3或HDFS。 如果单服务器部署已在使用分布式深度存储,则可以在新集群中继续使用当前的深度存储。
元数据存储
在conf/druid/cluster/_common/common.runtime.properties
中,使用您将用作元数据存储的服务器地址来替换"metadata.storage.*":
druid.metadata.storage.connector.connectURI
druid.metadata.storage.connector.host
在生产部署中,我们建议运行专用的元数据存储,例如具有复制功能的MySQL或PostgreSQL,与Druid服务器分开部署。
MySQL扩展和PostgreSQL扩展文档包含有关扩展配置和初始数据库安装的说明。
深度存储
Druid依赖于分布式文件系统或大对象(blob)存储来存储数据,最常用的深度存储实现是S3(适合于在AWS上)和HDFS(适合于已有Hadoop集群)。
S3
在conf/druid/cluster/_common/common.runtime.properties
中,
- 在
druid.extension.loadList
配置项中增加"druid-s3-extensions"扩展 - 注释掉配置文件中用于本地存储的"Deep Storage"和"Indexing service logs"
- 打开配置文件中关于"For S3"部分中"Deep Storage"和"Indexing service logs"的配置
上述操作之后,您将看到以下的变化:
druid.extensions.loadList=["druid-s3-extensions"]
#druid.storage.type=local
#druid.storage.storageDirectory=var/druid/segments
druid.storage.type=s3
druid.storage.bucket=your-bucket
druid.storage.baseKey=druid/segments
druid.s3.accessKey=...
druid.s3.secretKey=...
#druid.indexer.logs.type=file
#druid.indexer.logs.directory=var/druid/indexing-logs
druid.indexer.logs.type=s3
druid.indexer.logs.s3Bucket=your-bucket
druid.indexer.logs.s3Prefix=druid/indexing-logs
更多信息可以看S3扩展部分的文档。
HDFS
在conf/druid/cluster/_common/common.runtime.properties
中,
- 在
druid.extension.loadList
配置项中增加"druid-hdfs-storage"扩展 - 注释掉配置文件中用于本地存储的"Deep Storage"和"Indexing service logs"
- 打开配置文件中关于"For HDFS"部分中"Deep Storage"和"Indexing service logs"的配置
上述操作之后,您将看到以下的变化:
druid.extensions.loadList=["druid-hdfs-storage"]
#druid.storage.type=local
#druid.storage.storageDirectory=var/druid/segments
druid.storage.type=hdfs
druid.storage.storageDirectory=/druid/segments
#druid.indexer.logs.type=file
#druid.indexer.logs.directory=var/druid/indexing-logs
druid.indexer.logs.type=hdfs
druid.indexer.logs.directory=/druid/indexing-logs
同时:
- 需要将Hadoop的配置文件(core-site.xml, hdfs-site.xml, yarn-site.xml, mapred-site.xml)放置在Druid进程的classpath中,可以将他们拷贝到
conf/druid/cluster/_common
目录中
更多信息可以看HDFS扩展部分的文档。
Hadoop连接配置
如果要从Hadoop集群加载数据,那么此时应对Druid做如下配置:
- 在
conf/druid/cluster/_common/common.runtime.properties
文件中更新druid.indexer.task.hadoopWorkingPath
配置项,将其更新为您期望的一个用于临时文件存储的HDFS路径。 通常会配置为druid.indexer.task.hadoopWorkingPath=/tmp/druid-indexing
- 需要将Hadoop的配置文件(core-site.xml, hdfs-site.xml, yarn-site.xml, mapred-site.xml)放置在Druid进程的classpath中,可以将他们拷贝到
conf/druid/cluster/_common
目录中
请注意,您无需为了可以从Hadoop加载数据而使用HDFS深度存储。例如,如果您的集群在Amazon Web Services上运行,即使您使用Hadoop或Elastic MapReduce加载数据,我们也建议使用S3进行深度存储。
更多信息可以看基于Hadoop的数据摄取部分的文档。
Zookeeper连接配置
在生产集群中,我们建议使用专用的ZK集群,该集群与Druid服务器分开部署。
在 conf/druid/cluster/_common/common.runtime.properties
中,将 druid.zk.service.host
设置为包含用逗号分隔的host:port对列表的连接字符串,每个对与ZK中的ZooKeeper服务器相对应。(例如" 127.0.0.1:4545"或"127.0.0.1:3000,127.0.0.1:3001、127.0.0.1:3002")
您也可以选择在Master服务上运行ZK,而不使用专用的ZK集群。如果这样做,我们建议部署3个Master服务,以便您具有ZK仲裁。
配置调整
从单服务器环境迁移部署
Master服务
如果您使用的是单服务器部署示例中的示例配置,则这些示例中将Coordinator和Overlord进程合并为一个合并的进程。
conf/druid/cluster/master/coordinator-overlord
下的示例配置同样合并了Coordinator和Overlord进程。
您可以将现有的 coordinator-overlord
配置从单服务器部署复制到conf/druid/cluster/master/coordinator-overlord
Data服务
假设我们正在从一个32CPU和256GB内存的单服务器部署环境进行迁移,在老的环境中,Historical和MiddleManager使用了如下的配置:
Historical(单服务器)
druid.processing.buffer.sizeBytes=500000000
druid.processing.numMergeBuffers=8
druid.processing.numThreads=31
MiddleManager(单服务器)
druid.worker.capacity=8
druid.indexer.fork.property.druid.processing.numMergeBuffers=2
druid.indexer.fork.property.druid.processing.buffer.sizeBytes=100000000
druid.indexer.fork.property.druid.processing.numThreads=1
在集群部署中,我们选择一个分裂因子(假设为2),则部署2个16CPU和128GB内存的Data服务,各项的调整如下:
Historical
druid.processing.numThreads
设置为新硬件的(CPU核数 - 1
)druid.processing.numMergeBuffers
使用分裂因子去除单服务部署环境的值druid.processing.buffer.sizeBytes
该值保持不变
MiddleManager:
druid.worker.capacity
: 使用分裂因子去除单服务部署环境的值druid.indexer.fork.property.druid.processing.numMergeBuffers
: 该值保持不变druid.indexer.fork.property.druid.processing.buffer.sizeBytes
: 该值保持不变druid.indexer.fork.property.druid.processing.numThreads
: 该值保持不变
调整后的结果配置如下:
新的Historical(2 Data服务器)
druid.processing.buffer.sizeBytes=500000000
druid.processing.numMergeBuffers=8
druid.processing.numThreads=31
新的MiddleManager(2 Data服务器)
druid.worker.capacity=4
druid.indexer.fork.property.druid.processing.numMergeBuffers=2
druid.indexer.fork.property.druid.processing.buffer.sizeBytes=100000000
druid.indexer.fork.property.druid.processing.numThreads=1
Query服务
您可以将现有的Broker和Router配置复制到conf/druid/cluster/query
下的目录中,无需进行任何修改.
首次部署
如果您正在使用如下描述的示例集群规格:
- 1 Master 服务器(m5.2xlarge)
- 2 Data 服务器(i3.4xlarge)
- 1 Query 服务器(m5.2xlarge)
conf/druid/cluster
下的配置已经为此硬件确定了,一般情况下您无需做进一步的修改。
如果您选择了其他硬件,则基本的集群调整指南可以帮助您调整配置大小。
开启端口(如果使用了防火墙)
如果您正在使用防火墙或其他仅允许特定端口上流量准入的系统,请在以下端口上允许入站连接:
Master服务
- 1527(Derby元数据存储,如果您正在使用一个像MySQL或者PostgreSQL的分离的元数据存储则不需要)
- 2181(Zookeeper,如果使用了独立的ZK集群则不需要)
- 8081(Coordinator)
- 8090(Overlord)
Data服务
- 8083(Historical)
- 8091,8100-8199(Druid MiddleManager,如果
druid.worker.capacity
参数设置较大的话,则需要更多高于8199的端口)
Query服务
- 8082(Broker)
- 8088(Router,如果使用了)
[!WARNING] 在生产中,我们建议将ZooKeeper和元数据存储部署在其专用硬件上,而不是在Master服务器上。
启动Master服务
将Druid发行版和您编辑的配置文件复制到Master服务器上。
如果您一直在本地计算机上编辑配置,则可以使用rsync复制它们:
rsync -az apache-druid-0.17.0/ MASTER_SERVER:apache-druid-0.17.0/
不带Zookeeper启动
在发行版根目录中,运行以下命令以启动Master服务:
bin/start-cluster-master-no-zk-server
带Zookeeper启动
如果计划在Master服务器上运行ZK,请首先更新conf/zoo.cfg
以标识您计划如何运行ZK,然后,您可以使用以下命令与ZK一起启动Master服务进程:
bin/start-cluster-master-with-zk-server
[!WARNING] 在生产中,我们建议将ZooKeeper运行在其专用硬件上。
启动Data服务
将Druid发行版和您编辑的配置文件复制到您的Data服务器。
在发行版根目录中,运行以下命令以启动Data服务:
bin/start-cluster-data-server
您可以在需要的时候增加更多的Data服务器。
[!WARNING] 对于具有复杂资源分配需求的集群,您可以将Historical和MiddleManager分开部署,并分别扩容组件。这也使您能够利用Druid的内置MiddleManager自动伸缩功能。
启动Query服务
将Druid发行版和您编辑的配置文件复制到您的Query服务器。
在发行版根目录中,运行以下命令以启动Query服务:
bin/start-cluster-query-server
您可以根据查询负载添加更多查询服务器。 如果增加了查询服务器的数量,请确保按照基本集群调优指南中的说明调整Historical和Task上的连接池。
加载数据
恭喜,您现在有了Druid集群!下一步是根据使用场景来了解将数据加载到Druid的推荐方法。
了解有关加载数据的更多信息。