Skip to main content

Cassandra cannot find keyspace with uppercase letters.

  • February 17, 2022
  • 0 replies
  • 22 views

AkshayJadhav
StreamSets Employee
Forum|alt.badge.img

When specifying a keyspace in the Cassandra Target with uppercase letters you may get a NullPointerException or error stating that the Keyspace cannot be found.

 

This is because Cassandra's case-sensitivity rules dictate that in general, everything is treated as lowercase unless double quoted.

 

From the Cassandra Java Driver documentation:

We expect client-facing APIs to behave like cqlsh, that is:
* - identifiers that are mixed-case or contain special characters should be quoted.
* - unquoted identifiers will be lowercased: getKeyspace("Foo") will look for a keyspace named "foo"

 

Thus, if you are looking to write to a table MyKeyspace.table_name you must specify it as "MyKeyspace".table_name

Did this topic help you find an answer to your question?

0 replies

Be the first to reply!

Reply