THIS IS A TEST INSTANCE. ALL YOUR CHANGES WILL BE LOST!!!!

Apache Kylin : Analytical Data Warehouse for Big Data

Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Kylin 4.X recomend you to use RDBMS as metastore rather than HBase so you will not rely on HBase any more. But we did reserve HBase as secondary choice at the moment, but we may remove this support in near future.

HDP 2.X

// todo

  1. Open bin/kylin.sh

        

Code Block
# uncomment the following code
if [ -n "${hbase_dependency}" ]; then
   hadoop_dependencies=${hadoop_dependencies}:${hbase_dependency}
fi

     2. Open conf/kylin.properties 

Code Block
# uncomment the following code
## uncomment for HDP
kylin.engine.spark-conf.spark.driver.extraJavaOptions=-Dhdp.version=current
kylin.engine.spark-conf.spark.yarn.am.extraJavaOptions=-Dhdp.version=current
kylin.engine.spark-conf.spark.executor.extraJavaOptions=-Dhdp.version=current
# add for hdp
kylin.query.spark-conf.spark.driver.extraJavaOptions=-Dhdp.version=current
kylin.query.spark-conf.spark.yarn.am.extraJavaOptions=-Dhdp.version=current
kylin.query.spark-conf.spark.executor.extraJavaOptions=-Dhdp.version=current

    3. start kylin

    bin/kylin.sh start

CDH 5.X

// todo