Re: Cassandra trigger following the CQL for Cassandra 2.0 tutorial does not work

2014-07-28 Thread Jack Krupansky
the specifics. -- Jack Krupansky -Original Message- From: Michael Dykman Sent: Monday, July 28, 2014 10:35 AM To: Cassandra Users Subject: Re: Cassandra trigger following the CQL for Cassandra 2.0 tutorial does not work How to compile is a much biggest question and probably way off topi

Re: Cassandra trigger following the CQL for Cassandra 2.0 tutorial does not work

2014-07-28 Thread Michael Dykman
How to compile is a much biggest question and probably way off topic for this list. I think you need a starter tutorial on building and packaing java; there is more than one concept at work. you will need a compiler of the appropriate version. that source has external dependancies declared in th

Re: Cassandra trigger following the CQL for Cassandra 2.0 tutorial does not work

2014-07-28 Thread Martin Marinov
I'm not compiling it. I just download it from: https://git-wip-us.apache.org/repos/asf?p=cassandra.git;a=blob_plain;f=examples/triggers/src/org/apache/cassandra/triggers/InvertedIndex.java;hb=HEAD Save the downloaded file into a .class file and jar it. How do I compile it ? On 07/28/2014 05:11

Re: Cassandra trigger following the CQL for Cassandra 2.0 tutorial does not work

2014-07-28 Thread Michael Dykman
This is not really a Cassandra problem: it's a basic Java packaging problem. First of all, the java source file is not what the runtime needs to see in your jar; it needs the class file which was generated by compiling it. That compiled class needs to be in a folder corresponding to it's package,

Re: Cassandra trigger following the CQL for Cassandra 2.0 tutorial does not work

2014-07-28 Thread Martin Marinov
Correction. It's: unzip -l /etc/cassandra/triggers/InvertedIndex.jar Archive: /etc/cassandra/triggers/InvertedIndex.jar Length DateTimeName - -- - 0 2014-07-25 10:07 META-INF/ 68 2014-07-25 10:07 META-INF/MANIFEST.MF 2761 2014

Re: Cassandra trigger following the CQL for Cassandra 2.0 tutorial does not work

2014-07-28 Thread Martin Marinov
The output is: unzip /etc/cassandra/triggers/InvertedIndex.jar Archive: /etc/cassandra/triggers/InvertedIndex.jar creating: META-INF/ inflating: META-INF/MANIFEST.MF inflating: InvertedIndex.java On 07/28/2014 03:54 PM, Michael Dykman wrote: I wonder; your jar creation looks a little

Re: Cassandra trigger following the CQL for Cassandra 2.0 tutorial does not work

2014-07-28 Thread Michael Dykman
I wonder; your jar creation looks a little off and I suspect your problem might be the jar format which would lead to the failure to load. Could you list the output of $ unzip -l my.jar? On Jul 28, 2014 3:49 AM, "Martin Marinov" wrote: > I did: > ls /etc/cassandra/triggers/ > InvertedIndex.jar

Re: Cassandra trigger following the CQL for Cassandra 2.0 tutorial does not work

2014-07-28 Thread Martin Marinov
I did: ls /etc/cassandra/triggers/ InvertedIndex.jar README.txt But I'm not sure I'm creating the jar correctly. I'm running: jar cvf /etc/cassandra/triggers/org.apache.cassandra.triggers.InvertedIndex.jar org.apache.cassandra.triggers.InvertedIndex.class where org.apache.cassandra.trigger

Re: Cassandra trigger following the CQL for Cassandra 2.0 tutorial does not work

2014-07-28 Thread DuyHai Doan
Did you put the jar into the /lib folder on the server ? I know it's a basic question but it's the first idea to come in mind On Mon, Jul 28, 2014 at 9:36 AM, Martin Marinov wrote: > Anybody got an idea on this matter ? > > > On 07/24/2014 06:34 PM, Martin Marinov wrote: > > Hi, > > I posted t

Re: Cassandra trigger following the CQL for Cassandra 2.0 tutorial does not work

2014-07-28 Thread Martin Marinov
Anybody got an idea on this matter ? On 07/24/2014 06:34 PM, Martin Marinov wrote: Hi, I posted the question on stackoverflow: http://stackoverflow.com/questions/24937425/cassandra-trigger-following-the-cql-for-cassandra-2-0-tutorial-does-not-work On 07/24/2014 06:25 PM, Martin Marinov wrote:

Re: Cassandra trigger following the CQL for Cassandra 2.0 tutorial does not work

2014-07-24 Thread Martin Marinov
Hi, I posted the question on stackoverflow: http://stackoverflow.com/questions/24937425/cassandra-trigger-following-the-cql-for-cassandra-2-0-tutorial-does-not-work On 07/24/2014 06:25 PM, Martin Marinov wrote: Hi, I'm following the tutorial at: http://www.datastax.com/documentation/cql/3.1/