Re: Error running integration tests

2015-03-25 Thread Yan Fang
Yes, you need to turn it on to run the integration test. Fang, Yan yanfang...@gmail.com +1 (206) 849-4108 On Wed, Mar 25, 2015 at 5:40 PM, Roger Hoover wrote: > That's what I was wondering. I can turn it on if necessary. > > Sent from my iPhone > > > On Mar 25, 2015, at 5:15 PM, Chris Riccomin

Re: Error running integration tests

2015-03-25 Thread Roger Hoover
That's what I was wondering. I can turn it on if necessary. Sent from my iPhone > On Mar 25, 2015, at 5:15 PM, Chris Riccomini wrote: > > Hey Roger, > > Are you able to run this command? > > ssh localhost > > This is effectively what Zopkio is doing. Wondering if you need to enable > SSH o

Re: Error running integration tests

2015-03-25 Thread Chris Riccomini
Hey Roger, Are you able to run this command? ssh localhost This is effectively what Zopkio is doing. Wondering if you need to enable SSH on your laptop? I have "remote login" enabled on my OSX laptop. Cheers, Chris On Wed, Mar 25, 2015 at 4:29 PM, Roger Hoover wrote: > Do I need to bring u

Re: Error running integration tests

2015-03-25 Thread Roger Hoover
Do I need to bring up sshd on my laptop or can the tests be made to not ssh? On Wed, Mar 25, 2015 at 4:27 PM, Roger Hoover wrote: > Hi, > > I wanted to see if I could run the integration tests on the 0.9.0 branch > on my Mac. > > I cloned the 0.9.0 branch from the github mirror, built everything

Error running integration tests

2015-03-25 Thread Roger Hoover
Hi, I wanted to see if I could run the integration tests on the 0.9.0 branch on my Mac. I cloned the 0.9.0 branch from the github mirror, built everything (./gradlew clean build), and tried to run the integration tests. ./bin/integration-tests.sh /tmp/roger I get an error when the test script tr

Re: [VOTE] Apache Samza 0.9.0 RC0

2015-03-25 Thread Yan Fang
Hi Chris, Opps, signed it with another key. Now updated all files in http://people.apache.org/~yanfang/samza-0.9.0-rc0/ . Verified. Sorry for the inconvenience. Cheers, Fang, Yan yanfang...@gmail.com +1 (206) 849-4108 On Wed, Mar 25, 2015 at 10:58 AM, Chris Riccomini wrote: > Hey Yan, > > Wer

Re: [VOTE] Apache Samza 0.9.0 RC0

2015-03-25 Thread Chris Riccomini
Hey Yan, Were you able to validate the source tarball? I ran: $ gpg --keyserver pgpkeys.mit.edu --recv-key CAC06239EA00BA80 gpg: requesting key EA00BA80 from hkp server pgpkeys.mit.edu gpg: key EA00BA80: public key "Yan Fang (CODE SIGNING KEY) < yanf...@apache.org>" imported gpg: Total number pro

Re: cannot be cast to java.lang.String

2015-03-25 Thread Chinmay Soman
I think this is a bit specific to Samza. In the KafkaSystemProducer class, it does something like this: envelope.getMessage.asInstanceOf[Array[Byte]] and not just 'byte[]'. This is why we need to be explicit about the serialization format. On Wed, Mar 25, 2015 at 3:14 AM, Jordi Blasi Uribarri w

RE: cannot be cast to java.lang.String

2015-03-25 Thread Jordi Blasi Uribarri
I am using the Kafka command line producer, so I understand that I am sending a String. bin/kafka-console-producer.sh --broker-list localhost:9092 --topic syslog What is actually the difference between a string and a json? Is it just a matter of deserialization or is there any kind of