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.

...

  1. Uncomment the following code in bin/kylin.sh        
Code Block
languagebash
linenumberstrue
# uncomment the following code
if [ -n "${hbase_dependency}" ]; then
   hadoop_dependencies=${hadoop_dependencies}:${hbase_dependency}
fi

     2. Open conf/kylin.properties 

Code Block
languagebash
linenumberstrue
# add metadata url for HBase
kylin.metadata.url=kylin_metadata@hbase
# 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

...

Code Block
languagebash
titlekylin.sh
linenumberstruecollapsetrue
if [ -n "${hbase_dependency}" ]; then
   hadoop_dependencies=${hadoop_dependencies}:${hbase_dependency}
fi

...

Code Block
languagebash
titlekylin.properties
linenumberstruecollapsetrue
# HBase Metadata url
kylin.metadata.url=kylin_metadata@hbase
# Connect to a remote zookeeper with the url, should set kylin.env.zookeeper-is-local to false
kylin.env.zookeeper-connect-string=hostname:port

...