Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to configure the DBeaver and Cassandra

I am very new to DBeaver. From forum i got to know that driver need to update for cassandra 3+ to work with DBeaver. https://github.com/serge-rider/dbeaver/issues/167 I downloaded this new driver but unable to set the class path. Can anyone help me on this.Below is the current config i did for driver and cassandra.

enter image description here

like image 223
samir Avatar asked Sep 12 '16 21:09

samir


People also ask

Does DBeaver work with Cassandra?

Overview. DBeaver EE supports Cassandra schema browser, data viewer and CQL queries execution. Also it supports various administrative tools. You can connect directly to a server or use SSH tunneling or SOCKS proxy.

How do I view Cassandra DB?

Users can access Cassandra through its nodes using Cassandra Query Language (CQL). CQL treats the database (Keyspace) as a container of tables. Programmers use cqlsh: a prompt to work with CQL or separate application language drivers. Clients approach any of the nodes for their read-write operations.


1 Answers

As I had some problems finding Cassandra driver after DBeaver install, I went through another way:

  • Cloned this GitHub project
  • Built the jar file (mvn package)
  • Added this jar file to the Driver Manager configuration, using the JDBC Class Name and JDBC URL values as described at project README:

enter image description here

like image 109
manasouza Avatar answered Sep 16 '22 14:09

manasouza