配置hbase zookeeper時遇到的問題

2021-09-12 07:11:12 字數 1090 閱讀 3459

今天在配置hbase+zookeeper時遇到了問題,使用list和create語句時沒有問題,但是使用put語句一直報錯:

put 『students』, 『stud003』, 『info:name』, 『tom』

2019-03-09 13:39:08,238 error [main] client.asyncprocess: failed to get region location

org.apache.hadoop.hbase.client.noserverforregionexception: no server address listed in hbase:meta for region students,1552108739539.23f6a3aed5b74cc07c3544bca5df5c71. containing row stud003。。

。我之前搭建zookeeper時使用了4臺機器,所以hbase中也是配置了四台,配置完zookeeper時也沒有全部檢查,後來使用zkserver status 檢視zookeeper狀態後發現有一台機器沒有連線到集群上。

using config: /root/training/zookeeper-3.4.10/bin/…/conf/zoo.cfg

error contacting service. it is probably not running.

索性改為使用奇數臺配置。

更改完成後就能正常put了。

hbase(main):002:0> put 『students』,『stu001』,『info:age』,『28』

0 row(s) in 0.1890 seconds

hbase(main):003:0> list

table

students

1 row(s) in 0.0070 seconds

=> [「students」]

hbase(main):004:0> scan 『students』

row column+cell

stu001 column=info:age, timestamp=1552113209322, value=28

1 row(s) in 0.0290 seconds

linux配置 網路配置

ip位址,子網掩碼,閘道器 設定ip位址,子網掩碼並啟用 ifconfig eth0 10.192.77.250 netmask 255.255.255.0 up 注 ip,掩碼,閘道器都設定到 etc sysconfig network scripts ifcfg eth0裡面了。設定多ip 可以...

elementui配置 element配置

vue elementui 配置 第一步 安裝elementui node命令 npm i element ui s 第二步 在man.js中配置 import elementui from element ui import element ui lib theme chalk index.css...

Thinkphp 配置 讀取配置

無論何種配置檔案,定義了配置檔案之後,都統一使用系統提供的c方法 可以借助config單詞來幫助記憶 來讀取已有的配置。用法 c 引數名稱 例如,讀取當前的url模式配置引數 model c url model 由於配置引數不區分大小寫,因此下面的寫法是等效的 model c url model 但...