apache druid整合hadoop3.3

安装流程

修改配置文件

  1. 解压文件

    tar -xvf apache-druid-31.0.0-bin.tar.gz

    mv apache-druid-31.0.0 druid

  2. 拷贝hadoop配置文件到druid

    ln -s /app/hadoop-3.3.6/etc/hadoop/core-site.xml /app/druid/conf/druid/cluster/_common/core-site.xml

    ln -s /app/hadoop-3.3.6/etc/hadoop/hdfs-site.xml /app/druid/conf/druid/cluster/_common/hdfs-site.xml

    ln -s /app/hadoop-3.3.6/etc/hadoop/yarn-site.xml /app/druid/conf/druid/cluster/_common/yarn-site.xml

    ln -s /app/hadoop-3.3.6/etc/hadoop/mapred-site.xml /app/druid/conf/druid/cluster/_common/mapred-site.xml

  3. 拷贝连接MYSQL的jar包

    将mysql的jdbc驱动拷贝到/app/druid/extensions/mysql-metadata-storage

  4. 添加druid的mysql用户

    create database druid;

    create user 'druid'@'%' identified by 'druid';

    ALTER USER 'druid'@'%' IDENTIFIED BY 'druid';

    grant all privileges on druid.* to 'druid'@'%' with grant option;

    grant all privileges on mysql.* to 'druid'@'%' with grant option;

  5. 编辑druid的配置文件

    vim /app/druid/conf/druid/cluster/_common/common.runtime.properties

    druid.extensions.loadList=["mysql-metadata-storage","druid-hdfs-storage", "druid-kafka-indexing-service", "druid-datasketches", "druid-multi-stage-query", "druid-parquet-extensions"]

    druid.host=hadoop-drill-nn-1

    druid.zk.service.host=10.10.9.22:2181

    druid.zk.paths.base=/druid

    druid.metadata.storage.type=mysql

    druid.metadata.storage.connector.connectURI=jdbc:mysql://10.10.100.95:3306/druid

    druid.metadata.storage.connector.user=druid

    druid.metadata.storage.connector.password=druid

    druid.storage.type=hdfs

    druid.storage.storageDirectory=/druid/segments

    druid.indexer.logs.type=hdfs

    druid.indexer.logs.directory=/druid/indexing-logs

  6. 修改coordinator-overlord配置(主节点)

    vim /app/druid/conf/druid/cluster/master/coordinator-overlord/jvm.config

    -server

    -Xms2g

    -Xmx2g

    -XX:+ExitOnOutOfMemoryError

    -XX:+UseG1GC

    -Duser.timezone=UTC

    -Dfile.encoding=UTF-8

    -Djava.io.tmpdir=var/tmp

    -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager

    -Dderby.stream.error.file=var/druid/derby.log

    vim /app/druid/conf/druid/cluster/master/coordinator-overlord/runtime.properties

    druid.coordinator.http.port=18082

  7. 修改historical配置(数据节点)

    vim /app/druid/conf/druid/cluster/data/historical/jvm.config

    -server

    -Xms2g

    -Xmx2g

    -XX:MaxDirectMemorySize=13g

    -XX:+ExitOnOutOfMemoryError

    -Duser.timezone=UTC

    -Dfile.encoding=UTF-8

    -Djava.io.tmpdir=var/tmp

    -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager

    vim /app/druid/conf/druid/cluster/data/historical/runtime.properties

    #内存不够减小此值

    druid.processing.buffer.sizeBytes=50MiB

    druid.historical.http.port=18083

  8. 修改middleManager(数据节点)

    vim /app/druid/conf/druid/cluster/data/middleManager/jvm.config

    -server

    -Xms128m

    -Xmx128m

    -XX:+ExitOnOutOfMemoryError

    -Duser.timezone=UTC

    -Dfile.encoding=UTF-8

    -Djava.io.tmpdir=var/tmp

    -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager

    vim /app/druid/conf/druid/cluster/data/middleManager/runtime.properties

    druid.indexer.runner.http.port=18091

  9. 修改broker(查询节点)

    vim /app/druid/conf/druid/cluster/query/broker/jvm.config

    -server

    -Xms1g

    -Xmx1g

    -XX:MaxDirectMemorySize=6g

    -XX:+ExitOnOutOfMemoryError

    -Duser.timezone=UTC

    -Dfile.encoding=UTF-8

    -Djava.io.tmpdir=var/tmp

    -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager

    vim /app/druid/conf/druid/cluster/query/broker/runtime.properties

    druid.processing.buffer.sizeBytes=50MiB

    druid.broker.http.port=18082

  10. 修改router(查询节点)

    vim /app/druid/conf/druid/cluster/query/router/jvm.config

    vim /app/druid/conf/druid/cluster/query/router/runtime.properties

    druid.router.http.port=18888

启动相关进程

  1. 启动查询节点

    nohup start-cluster-query-server &

  2. 启动数据节点

    nohup start-cluster-data-server &

  3. 启动主节点

    nohup start-cluster-master-no-zk-server &

停止服务

复制代码
/app/druid/bin/service --down

查看运行情况

http://10.10.100.95:8888

相关推荐
网安INF1 天前
Apache Shiro 1.2.4 反序列化漏洞(CVE-2016-4437)
java·网络安全·apache
大数据追光猿2 天前
【大数据】服务器上部署Apache Paimon
大数据·服务器·docker·架构·apache
斯普信专业组2 天前
基于Kubernetes的Apache Pulsar云原生架构解析与集群部署指南(上)
云原生·kubernetes·apache
C-20023 天前
使用Deployment部署运行Nginx和Apache服务
运维·kubernetes·apache
斯普信专业组3 天前
基于Kubernetes的Apache Pulsar云原生架构解析与集群部署指南(下)
云原生·kubernetes·apache
沉默的松饼3 天前
《开源先锋Apache软件基金会:历史沿革、顶级项目与行业影响》
apache
coding侠客3 天前
使用Jmeter进行核心API压力测试
java·jmeter·apache·压力测试
爬山虎还上班3 天前
phpstudy升级新版apache
apache·phpstudy
轩昂7K3 天前
Apache Doris 使用指南:从入门到生产实践
apache
有个人神神叨叨3 天前
Apache Calcite 详细介绍
apache