Chinaunix首页 | 论坛 | 博客
  • 博客访问: 6682995
  • 博文数量: 1005
  • 博客积分: 8199
  • 博客等级: 中将
  • 技术积分: 13071
  • 用 户 组: 普通用户
  • 注册时间: 2010-05-25 20:19
个人简介

脚踏实地、勇往直前!

文章分类

全部博文(1005)

文章存档

2020年(2)

2019年(93)

2018年(208)

2017年(81)

2016年(49)

2015年(50)

2014年(170)

2013年(52)

2012年(177)

2011年(93)

2010年(30)

分类: 大数据

2019-03-11 18:04:18

今天在部署pinpoint的时候,执行创建表语句的脚本,报表已经存在的错误,但是那个hbase数据目录是刚创建的,表肯定是不存在的

  1. <property>
  2.     <name>hbase.rootdir</name>
  3.     <value>file:///home/yeemiao/hbase-1.2.11/data/hbase</value>
  4.     <!-- <value>hdfs://10.26.212.253:8020/pinpoint</value> -->
  5.   </property>
  6. <property>

后来百度找到解决的办法,原因是表信息还保留在zookeeper中,登陆zk删除掉相应的表即可,解决办法如下:


[yeemiao@pp-monitor bin]$ ./hbase zkcli
[zk: localhost:2181(CONNECTED) 14] ls /hbase/table


rmr /hbase/table/ApplicationTraceIndex
rmr /hbase/table/ApplicationMapStatisticsCaller_Ver2
rmr /hbase/table/ApplicationMapStatisticsSelf_Ver2
rmr /hbase/table/ApplicationMapStatisticsCallee_Ver2
rmr /hbase/table/AgentStatV2
rmr /hbase/table/AgentLifeCycle
rmr /hbase/table/ApiMetaData
rmr /hbase/table/SqlMetaData_Ver2
rmr /hbase/table/ApplicationIndex
rmr /hbase/table/TraceV2
rmr /hbase/table/AgentEvent

然后重新初始化建表脚本:
./hbase shell /home/yeemiao/hbase/hbase-create.hbase
阅读(11509) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~