Bug: dbeaver connect hbase using phoenix,click the table Data button,throw the error.
See original GitHub issueEnv: dbeaver: 4.0.5 phoenix: phoenix-4.11-HBase-1.2 hbase: 1.2.0(CDH5.11)
Steps:
- I config the dbeaver connecting the hbase using phoenix.
- I create the schema and table in the script of dbeaver.
CREATE SCHEMA JYDW;
CREATE TABLE JYDW.USERINFO(id bigint not null primary key, name varchar null,age integer null, address varchar null) ;
upsert into JYDW.USERINFO(id,name,age,address) values(1,'name1',11,'china1');
SELECT * from JYDW.USERINFO ;
These create and upsert and select sql are successful. And I create spark project with scala, operating the table “JYDW.USERINFO”, also is successful.
- But, I select the connection(HBase) and refresh, and I find that the table name is “USERINFO” without the schema info ,instead of “JYDW.USERINFO”.
4.Then I click the “USERINFO” table, and again click the “Data” button, throw the error: SQL Error [1012] [42M03]: ERROR 1012 (42M03): Table undefined. tableName=USERINFO org.apache.phoenix.schema.TableNotFoundException: ERROR 1012 (42M03): Table undefined. tableName=USERINFO
5.I think that the table is lost the schema info in Dbeaver,so that leads to this error. @serge-rider Please help to see it, thankyou.
Issue Analytics
- State:
- Created 6 years ago
- Comments:16 (8 by maintainers)
Top Results From Across the Web
Bug: dbeaver connect hbase using phoenix,click the table ...
Bug : dbeaver connect hbase using phoenix,click the table Data button,throw the error. ... Steps: 1. I config the dbeaver connecting the hbase...
Read more >cannot access db tables - DBeaver Forum • View topic
I upgraded to version 3.5.4 (from version 3.4.5) After sucessfully connecting to the db, i get the following error: DBCException: SQL Error ......
Read more >How To Connect To Hbase Using Phoenix Jdbc Driver (Can't ...
Use the thin driver to connect to PQS. Bug: dbeaver connect hbase using phoenix,click the table Data button,throw the error. #2148. Closed. Hackeruncle...
Read more >jdbc - Unable to establish connection. using DBeaver apache ...
I have a standalone Apache HBase Database installed on an ubuntu vm, i want to be able to connect to the db from...
Read more >Connect to HBase Data in DBeaver - CData Software
The CData JDBC Driver for HBase implements JDBC standards that enable third-party tools to interoperate, from wizards in IDEs to business intelligence tools ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
For some reason DBeaver didn’t read list of phoenix schemas.
Thanks for info