need help for building avro

2013-07-09 Thread anup ahire
Hello, I downloaded trunk today but I am not able to build it. I am seeing following errors. [INFO] [ERROR] Failed to execute goal org.apache.avro:avro-maven-plugin:1.7.5-SNAPSHOT:schema (schemas) on project avro-ipc: Execut

Re: Is it possible to append to an already existing avro file

2013-07-09 Thread TrevniUser
Thanks for replying. You are correct. I followed this example https://gist.github.com/QwertyManiac/4724582 -- View this message in context: http://apache-avro.679487.n3.nabble.com/Is-it-possible-to-append-to-an-already-existing-avro-file-tp3762049p4027789.html Sent from the Avro - Users mailing

Re: Is it possible to append to an already existing avro file

2013-07-09 Thread Doug Cutting
Since the exception is thrown from java.io.FileInputStream#open, it's trying to append to a local file, not one in HDFS. You're passing 'new File(...)' to appendTo, when you should probably be passing 'new FsInput(...)'. Doug On Mon, Jul 8, 2013 at 9:29 AM, TrevniUser wrote: > I was following t