zoukankan      html  css  js  c++  java
  • hive metastore && hiveserver2 . 基本配置

    # hiveserver2 && metastore 配置

    标签(空格分隔): Hive

    ---

    基本配置:

    ```
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <?xml-stylesheet type="text/xsl" href="configuration.xsl"?><!--
    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.
    --><configuration>
    <!-- WARNING!!! This file is auto generated for documentation purposes ONLY! -->
    <!-- WARNING!!! Any changes you make to this file will be ignored by Hive. -->
    <!-- WARNING!!! You must make your changes in hive-site.xml instead. -->
    <!-- Hive Execution Parameters -->

    <!-- Hive Metastore Setting Turning Begin-->

    <property>
    <name>hive.metastore.server.max.threads</name>
    <value>3000</value>
    </property>

    <property>
    <name>hive.metastore.server.min.threads</name>
    <value>50</value>
    </property>

    <property>
    <name>datanucleus.connectionPool.maxPoolSize</name>
    <value>50</value>
    </property>

    <property>
    <name>hive.metastore.server.max.message.size</name>
    <value>500</value>
    </property>
    <!-- metastore - mysql-->
    <property>
    <name>javax.jdo.option.ConnectionURL</name>
    <value>jdbc:mysql://10.111.50.227:3306/hivetest?createDatabaseIfNotExist=true&amp;characterEncoding=UTF-8&amp;useSSL=false</value>
    <description></description>
    </property>
    <property>
    <name>javax.jdo.option.ConnectionDriverName</name>
    <value>com.mysql.jdbc.Driver</value>
    <description></description>
    </property>
    <property>
    <name>javax.jdo.option.ConnectionUserName</name>
    <value>hive</value>
    <description></description>
    </property>
    <property>
    <name>javax.jdo.option.ConnectionPassword</name>
    <value>Hive.123</value>
    <description></description>
    </property>

    <!-- Hive Metastore Setting Turning End-->


    <!-- Hive HiveServer2 Setting Turning -->
    <property>
    <name>hive.metastore.uris</name>
    <value>thrift://VECS00542:9083</value>
    <description>Thrift URI for the remote metastore. Used by metastore client to connect to remote metastore.</description>
    </property>
    <property>
    <name>hive.exec.scratchdir</name>
    <value>/tmp/hive-staging</value>
    </property>
    <property>
    <name>hive.metastore.warehouse.dir</name>
    <value>hdfs://flashHadoop/user/hive/warehouse</value>
    </property>
    <property>
    <name>hive.querylog.location</name>
    <value>/data1/data/hive</value>
    </property>
    <property>
    <name>hive.metastore.schema.verification</name>
    <value>false</value>
    <description>
    </description>
    </property>
    <property>
    <name>hive.async.log.enabled</name>
    <value>false</value>
    <description>
    </description>
    </property>
    <property>
    <name>hive.server2.support.dynamic.service.discovery</name>
    <value>true</value>
    <description>
    </description>
    </property>
    <property>
    <name>hive.server2.zookeeper.namespace</name>
    <value>hiveserver2</value>
    <description>The parent node in ZooKeeper used by HiveServer2 when supporting dynamic service discovery.</description>
    </property>
    <property>
    <name>hive.zookeeper.quorum</name>
    <value>host1:2181,host1:2181,host1:2181,host1:2181,host1:2181</value>
    <description>
    </description>
    </property>
    <property>
    <name>hive.zookeeper.client.port</name>
    <value>2181</value>
    <description>
    </description>
    </property>
    <property>
    <name>hive.server2.thrift.port</name>
    <value>10000</value>
    </property>
    <property>
    <name>hive.server2.thrift.bind.host</name>
    <value>0.0.0.0</value>
    </property>
    <property>
    <name>hive.server2.enable.doAs</name>
    <value>false</value>
    </property>
    <property>
    <name>hive.server2.session.check.interval</name>
    <value>900000</value>
    </property>
    <property>
    <name>hive.server2.idle.session.timeout</name>
    <value>43200000</value>
    </property>
    <property>
    <name>hive.server2.idle.session.timeout_check_operation</name>
    <value>true</value>
    </property>
    <property>
    <name>hive.server2.idle.operation.timeout</name>
    <value>21600000</value>
    </property>
    <property>
    <name>hive.server2.webui.host</name>
    <value>0.0.0.0</value>
    </property>
    <property>
    <name>hive.server2.webui.port</name>
    <value>10002</value>
    </property>
    <property>
    <name>hive.server2.webui.max.threads</name>
    <value>50</value>
    </property>
    <property>
    <name>hive.server2.webui.use.ssl</name>
    <value>false</value>
    </property>

    </configuration>
    ```

  • 相关阅读:
    达梦数据库学习(二、管理数据库实例)
    达梦数据库学习(一、linux操作系统安装及数据库安装)
    SQL Server 数据库还原进度查看
    关于索引的学习(主要是聚集索引与非聚集索引)
    SQL Server批量向表中插入多行数据语句
    最大流-前置push-relabel算法实现
    调度算法(二)
    调度算法(一)
    软件工程:提问回顾
    软件工程:个人阅读作业与总结
  • 原文地址:https://www.cnblogs.com/hit-zb/p/9637636.html
Copyright © 2011-2022 走看看