Hi
I'm a new user for Kylin. install the Cloudera QuickStart VM 5.4 in my
computer and the Kylin version is Apache Kylin v1.5.2.1
set KYLIN_HOME and CATALINA_HOME
when I finish installatioin, enter the hbase shell create a table, it's can
reach by my java program in eclipse. like:
Configuration configuration = HBaseConfiguration.create();
configuration.set("hbase.zookeeper.quorum", "quickstart.cloudera");
configuration.set("hbase.zookeeper.property.clientPort", "2181");
configuration.set("hbase.defaults.for.version.skip", "true");
configuration.set("zookeeper.znode.parent", "/hbase");
so I think the cluster is correct.
then i add dfs.permissions property in hdfs-site.xml set value fasle.
use the root execute ./check-env.sh
but when start the Kylin, ./kylin.sh start . I get a error.
aused by: java.lang.IllegalArgumentException: File not exist by
'kylin_metadata@hbase': /usr/mysoft/kylin/bin/kylin_metadata@hbase
at
org.apache.kylin.common.persistence.FileResourceStore.<init>(FileResourceStore.java:49)
... 58 more
2016-06-21 21:37:17,095 ERROR [localhost-startStop-1]
persistence.ResourceStore:91 : Create new store instance failed
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
Caused by: java.lang.IllegalArgumentException: Failed to find metadata store by
url: kylin_metadata@hbase
at
org.apache.kylin.common.persistence.ResourceStore.createResourceStore(ResourceStore.java:93)
at
org.apache.kylin.common.persistence.ResourceStore.getStore(ResourceStore.java:104)
at org.apache.kylin.cube.CubeManager.getStore(CubeManager.java:880)
is there any problem in kylin.properties setting of kylin_metadata@hbase ?
thx