gongstring技术博客
最新文章
源码解读
软件安装
常见问题
大数据
常用工具
鸡汤文
备案号:鄂ICP备15015839号-1
鄂公网安备 42010202001692号
Apache Atlas简介及快速体验
2021-04-08 17:10:15
作者: gongstring
大数据
/
Apache Atlas简介及快速体验
安装常见异常: ``` [INFO] Executing tasks Download HBase: [mkdir] Created dir: /root/install/apache-atlas-sources-2.1.0/distro/target/hbase [get] Destination already exists (skipping): /root/install/apache-atlas-sources-2.1.0/distro/hbase/hbase-2.0.2.tar.gz [untar] Expanding: /root/install/apache-atlas-sources-2.1.0/distro/hbase/hbase-2.0.2.tar.gz into /root/install/apache-atlas-sources-2.1.0/distro/target/hbase.temp [copy] Copying 10728 files to /root/install/apache-atlas-sources-2.1.0/distro/target/hbase [INFO] Executed tasks [INFO] [INFO] --- maven-antrun-plugin:1.7:run (solr) @ atlas-distro --- [INFO] Executing tasks Download SOLR: [mkdir] Created dir: /root/install/apache-atlas-sources-2.1.0/distro/target/solr [get] Destination already exists (skipping): /root/install/apache-atlas-sources-2.1.0/distro/solr/solr-7.5.0.tgz [untar] Expanding: /root/install/apache-atlas-sources-2.1.0/distro/solr/solr-7.5.0.tgz into /root/install/apache-atlas-sources-2.1.0/distro/target/solr.temp [copy] Copying 1555 files to /root/install/apache-atlas-sources-2.1.0/distro/target/solr ``` 解决办法: 将依赖的包,放到安装目录中,就不会从服务器下载; ``` 在部署HBase的时候,执行 start-hbase.sh命令,主节点一直起不来,后来到logs文件夹下面,看输出日志,结果报了错 java.lang.IllegalStateException: The procedure WAL relies on the ability to hsync for proper operation during component failures, but the underlying filesystem does not support doing so. Please check the config value of ‘hbase.procedure.store.wal.use.hsync’ to set the desired level of robustness and ensure the config value of ‘hbase.wal.dir’ points to a FileSystem mount that can provide it. 在hbase-site.xml增加配置
hbase.unsafe.stream.capability.enforce
false
然后记得把这个文件同步到其他节点,然后重启。就可以了 ``` 更新中...