Feedback
Did this article resolve your question/issue?

   

Article

Multiple users connecting to Cassandra database using Cassandra JDBC driver with the same SchemaMap and createMap=forceNew results in error

Information

 
TitleMultiple users connecting to Cassandra database using Cassandra JDBC driver with the same SchemaMap and createMap=forceNew results in error
URL Namemultiple-users-connecting-to-cassandra-database-using-cassandra-jdbc-driver-with-the-same-schemamap-and-createmap-forcenew-results-in-error
Article Number000113357
EnvironmentProduct: Connect for JDBC Cassandra Driver
Version : 6.0.0.000251
OS: JAVA
Database : Cassandra
Application: All supported applications
Question/Problem Description
When two users connecting to Cassandra database one after the other using the same SchemaMap and createMap=forceNew,
It results in 2nd user not found error even if 2nd user is a valid Cassandra database user.
Steps to ReproduceNote that test01 and test02 are valid users for this Cassandra database.

Class.forName("com.ddtek.jdbc.cassandra.CassandraDriver");

String url = "jdbc:datadirect:cassandra://nc-lnx143:9042;KeyspaceName=system;User=test02;Password=test02;createMap=forceNew;SchemaMap=C:\\Users\\Default\\AppData\\Local\\Progress\\DataDirect\\pranab
nc-lnx143.config" ;

String url1 = "jdbc:datadirect:cassandra://nc-lnx143:9042;KeyspaceName=system;User=test01;Password=test01;createMap=forceNew;SchemaMap=C:\\Users\\Default\\AppData\\Local\\Progress\\DataDirect\\pranab
nc-lnx143.config" ;

Connection con = DriverManager.getConnection (url);

Connection con1 = DriverManager.getConnection (url1);
Clarifying Information
Error MessageSQLState: HY000

Message: [DataDirect][Cassandra JDBC Driver][Cassandra]User not found: TEST01

Vendor: -9037

at com.ddtek.jdbc.cassandrabase.ddcl.b(Unknown Source)

at com.ddtek.jdbc.cassandrabase.ddcl.a(Unknown Source)
Defect NumberDefect XDBC-13889
Enhancement Number
Cause
Resolution
Fixed in hot fix 6.0.0.000265.
Also need to use the following connection URL format when multiple users are connecting:
String url = "jdbc:datadirect:cassandra://<host name>:<port number>;KeyspaceName=<keyspace anme>;InitializationString=REFRESH MAP; User=<user id>;Password=<password>;SchemaMap=<location of the config file>" ;

Refer to "Connect for JDBC hot fix download and install instructions” for instructions on how to download and install the hot fix.
 
Workaround
Notes
Last Modified Date6/5/2019 3:36 PM
Files
Disclaimer The origins of the information on this site may be internal or external to Progress Software Corporation (“Progress”). Progress Software Corporation makes all reasonable efforts to verify this information. However, the information provided is for your information only. Progress Software Corporation makes no explicit or implied claims to the validity of this information.

Any sample code provided on this site is not supported under any Progress support program or service. The sample code is provided on an "AS IS" basis. Progress makes no warranties, express or implied, and disclaims all implied warranties including, without limitation, the implied warranties of merchantability or of fitness for a particular purpose. The entire risk arising out of the use or performance of the sample code is borne by the user. In no event shall Progress, its employees, or anyone else involved in the creation, production, or delivery of the code be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or other pecuniary loss) arising out of the use of or inability to use the sample code, even if Progress has been advised of the possibility of such damages.