I'm trying without success use a cassandra database with mondrian, there's some way to make it work? or it's just impossible cause mondrian only works with relational database? my code works with mysql
Connection connection = new Connection();
connection.setCatalogPath( getClass().getResource( "/mySchema.xml" ).getPath() );
connection.setDriver( "com.datastax.driver.core.Cluster" );
connection.setUrl( "127.0.0.1:9160/myKeySpace" );
connection.setPassword( "cassandra" );
connection.setUser( "cassandra" );
rolapConnection = (RolapConnection) DriverManager.getConnection( connection.getProperties(), null );
I was trying to do this way, and always getting this error
mondrian.olap.MondrianException: Mondrian Error:Internal error: Error while creating SQL connection: Jdbc=jdbc:cassandra://127.0.0.1:9160/myKeySpace; JdbcUser=cassandra; JdbcPassword=cassandra
No suitable driver found for jdbc:cassandra://127.0.0.1:9160/myKeySpace
some super cool guy/girl could help me?