Cassandra driver class

2016-01-29 Thread KAMM, BILL
I'm just getting started with Cassandra, and am trying to integrate it with JBoss. I'm configuring the standalone-ha-full.xml file, but don't know what to use for the driver class. For example, I have this: com.datastax.driver.core. What do I replace ""

Re: Cassandra driver class

2016-01-29 Thread Jack Krupansky
>From the little reading I did do about TEIID it sounded as if they do have a connector that uses the Cassandra Java Driver, which is of course a good thing. But that doesn't make their connector itself a topic for the Java Driver list. I mean, the folks on the Java List are no more likely to know

Re: Cassandra driver class

2016-01-29 Thread Corry Opdenakker
Fully correct Steve, it is a source of confusion an having a standard pool at app/driver level will work as good as the jee solution, but just like the cql foresees an easy developer entry for cassandra because it is similar to sql, the jee datasource could do the same in front of the middleware

Re: Cassandra driver class

2016-01-29 Thread Steve Robenalt
It's probably a source of some confusion that in the JEE world, the driver isn't pooled, but the data source is. Since the Java Driver for Cassandra includes the pooling, there's no need for a JEE data source on top of it. This also means that the Java Driver for Cassandra isn't a one-for-one

Re: Cassandra driver class

2016-01-29 Thread Alex Popescu
I think both of those options expect a JDBC driver, while the DataStax Java driver is not one. As a side note, if you'd provide a more detailed description of the setup you want to get and post it to the Java driver mailing list

Re: Cassandra driver class

2016-01-29 Thread Corry Opdenakker
What about this cassandra specific howto explained in a recent jboss doc? https://docs.jboss.org/author/display/TEIID/Cassandra+Data+Sources?_sscc=t Im also searching for the real recommended way of connecting to a cassandra db from a jee server, but I didnt found any standard documented solution

Re: Cassandra driver class

2016-01-29 Thread Jack Krupansky
Unfortunately, somebody is likely going to need to educate us in the Cassandra community as to what a JBOSS VDB and TEIID really are. For now, our response will probably end up being that you should use the Java Driver for Cassandra, bypassing any JBOSS/VDB/TEIID support, for now. That TEIID link