phoenix创建索引报错“ Mutable secondary indexes must have the hbase.regionserver.wal.codec property”
生活随笔
收集整理的這篇文章主要介紹了
phoenix创建索引报错“ Mutable secondary indexes must have the hbase.regionserver.wal.codec property”
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
phoenix 創建hbase表索引時異常,報錯如下
Error: ERROR 1029 (42Y88): Mutable secondary indexes must have the hbase.regionserver.wal.codec property set to org.apache.hadoop.hbase.regionserver.wal.IndexedWALEditCodec in the hbase-sites.xml of every region server. tableName=MY_INDEX (state=42Y88,code=1029) java.sql.SQLException: ERROR 1029 (42Y88): Mutable secondary indexes must have the hbase.regionserver.wal.codec property set to org.apache.hadoop.hbase.regionserver.wal.IndexedWALEditCodec in the hbase-sites.xml of every region server. tableName=MY_INDEXat org.apache.phoenix.exception.SQLExceptionCode$Factory$1.newException(SQLExceptionCode.java:494)at org.apache.phoenix.exception.SQLExceptionInfo.buildException(SQLExceptionInfo.java:150)at org.apache.phoenix.schema.MetaDataClient.createIndex(MetaDataClient.java:1524)at org.apache.phoenix.compile.CreateIndexCompiler$1.execute(CreateIndexCompiler.java:85)at org.apache.phoenix.jdbc.PhoenixStatement$2.call(PhoenixStatement.java:408)at org.apache.phoenix.jdbc.PhoenixStatement$2.call(PhoenixStatement.java:391)at org.apache.phoenix.call.CallRunner.run(CallRunner.java:53)at org.apache.phoenix.jdbc.PhoenixStatement.executeMutation(PhoenixStatement.java:389)at org.apache.phoenix.jdbc.PhoenixStatement.executeMutation(PhoenixStatement.java:378)at org.apache.phoenix.jdbc.PhoenixStatement.execute(PhoenixStatement.java:1825)at sqlline.Commands.execute(Commands.java:822)at sqlline.Commands.sql(Commands.java:732)at sqlline.SqlLine.dispatch(SqlLine.java:813)at sqlline.SqlLine.begin(SqlLine.java:686)at sqlline.SqlLine.start(SqlLine.java:398)at sqlline.SqlLine.main(SqlLine.java:291)?在hbase-site.xml 中配置中加入,重啟服務
<property> <name>hbase.regionserver.wal.codec</name> <value>org.apache.hadoop.hbase.regionserver.wal.IndexedWALEditCodec</value> </property>再次創建,創建成功
0: jdbc:phoenix:xxxx:2181:/hbase> CREATE INDEX MY_INDEX21 ON "test_ns"."article" ("fn"."name"); 6,266,659 rows affected (254.798 seconds)?
總結
以上是生活随笔為你收集整理的phoenix创建索引报错“ Mutable secondary indexes must have the hbase.regionserver.wal.codec property”的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: C++继承详解:共有(public)继承
- 下一篇: Hive 行转列,列传行 - Impal