You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@drill.apache.org by AnilKumar B <ak...@gmail.com> on 2013/08/05 15:42:13 UTC

mvn clean install is failing

Hi,

I am unable install "common". I am facing following issue. Do I need to
change the pom?

[INFO] --- maven-enforcer-plugin:1.2:enforce (no_commons_logging) @ common
---
[INFO]
[INFO] --- protobuf-maven-plugin:0.6.3:run (default) @ common ---
[INFO] Protobuf dependency version 2.5.0
[INFO]
------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] prototype-parent .................................. SUCCESS [1.133s]
[INFO] common ............................................ FAILURE [0.270s]
[INFO] contrib-parent .................................... SKIPPED
[INFO] pom ............................................... SKIPPED
[INFO] Netty/Drill/Buffer ................................ SKIPPED
[INFO] exec .............................................. SKIPPED
[INFO] java-exec ......................................... SKIPPED
[INFO] Logical Plan Execution Reference Implementation ... SKIPPED
[INFO] planner ........................................... SKIPPED
[INFO] sqlparser ......................................... SKIPPED
[INFO]
------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO]
------------------------------------------------------------------------
[INFO] Total time: 1.616s
[INFO] Finished at: Mon Aug 05 09:38:35 EDT 2013
[INFO] Final Memory: 9M/22M
[INFO]
------------------------------------------------------------------------
[ERROR] Failed to execute goal
com.github.igor-petruk.protobuf:protobuf-maven-plugin:0.6.3:run (default)
on project common: 'protoc' failed. Exit code 1 -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e
switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions,
please read the following articles:
[ERROR] [Help 1]
http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the
command
[ERROR]   mvn <goals> -rf :common
user@ubuntu:~/Work/incubator-drill/sandbox/prototype$ protoc
Missing input file.


Thanks,
B Anil Kumar.

Re: mvn clean install is failing

Posted by Jacques Nadeau <ja...@apache.org>.
I think you have to manually add the generated sources paths to
eclipse for it to be happy. (And run it once at the cli).

On Mon, Aug 5, 2013 at 10:22 AM, AnilKumar B <ak...@gmail.com> wrote:
> Hi,
>
> mvn clean install and mvn eclipse:eclipse are successful, but still in
> eclipse there few errors.
>
> org.apache.drill.exec.proto.GeneralRPCProtos.Ack  is not resolved. It
> seems, this is generated class. But it's not generated.
>
> Thanks & Regards,
> B Anil Kumar.
>
>
> On Mon, Aug 5, 2013 at 10:39 PM, Julien Le Dem <ju...@twitter.com> wrote:
>
>> Hi,
>> It looks like sonatype automatically deletes snapdhots when a release is
>> made.
>> Good news is now you will be able to depend on fixed releases.
>> Julien
>>
>> On Mon, Aug 5, 2013 at 9:44 AM, Jacques Nadeau <ja...@apache.org> wrote:
>> > Yeah, we need to fix that.  Apparently, the Parquet snapshot jar was
>> > deleted from the sonatype repository.
>> >
>> > If you modify the block:
>> >     <dependency>
>> >       <groupId>com.twitter</groupId>
>> >       <artifactId>parquet-column</artifactId>
>> >       <version>1.0.0-SNAPSHOT</version>
>> >     </dependency>
>> >
>> > To look like:
>> >     <dependency>
>> >       <groupId>com.twitter</groupId>
>> >       <artifactId>parquet-column</artifactId>
>> >       <version>1.0.0</version>
>> >     </dependency>
>> >
>> > In the file:
>> > sandbox/prototype/exec/java-exec/pom.xml
>> >
>> > And then retry, things should work.  Assuming protoc --version returns
>> > "libprotoc 2.5.0"
>> >
>> > J
>> >
>> >
>> >
>> > On Mon, Aug 5, 2013 at 9:35 AM, AnilKumar B <ak...@gmail.com>
>> wrote:
>> >> Thanks Jason.
>> >>
>> >> I already installed protobuf.
>> >> user@ubuntu:~/Work/incubator-drill/sandbox/prototype$ protoc
>> >> Missing input file.
>> >>
>> >>
>> >> Even I tried with protobuf-2.5.0  & jdk-1.7, still I am getting
>> following
>> >> error.
>> >> [INFO]
>> >> ------------------------------------------------------------------------
>> >> [INFO] Building java-exec 1.0-SNAPSHOT
>> >> [INFO]
>> >> ------------------------------------------------------------------------
>> >> [WARNING] The POM for com.twitter:parquet-column:jar:1.0.0-SNAPSHOT is
>> >> missing, no dependency information available
>> >> [INFO]
>> >> ------------------------------------------------------------------------
>> >> [INFO] Reactor Summary:
>> >> [INFO]
>> >> [INFO] prototype-parent .................................. SUCCESS
>> [1.184s]
>> >> [INFO] common ............................................ SUCCESS
>> [3.319s]
>> >> [INFO] contrib-parent .................................... SUCCESS
>> [0.087s]
>> >> [INFO] pom ............................................... SUCCESS
>> [0.182s]
>> >> [INFO] Netty/Drill/Buffer ................................ SUCCESS
>> [0.943s]
>> >> [INFO] exec .............................................. SUCCESS
>> [0.124s]
>> >> [INFO] java-exec ......................................... FAILURE
>> [0.229s]
>> >> [INFO] Logical Plan Execution Reference Implementation ... SKIPPED
>> >> [INFO] planner ........................................... SKIPPED
>> >> [INFO] sqlparser ......................................... SKIPPED
>> >> [INFO]
>> >> ------------------------------------------------------------------------
>> >> [INFO] BUILD FAILURE
>> >> [INFO]
>> >> ------------------------------------------------------------------------
>> >> [INFO] Total time: 6.300s
>> >> [INFO] Finished at: Mon Aug 05 12:34:54 EDT 2013
>> >> [INFO] Final Memory: 26M/62M
>> >> [INFO]
>> >> ------------------------------------------------------------------------
>> >> [ERROR] Failed to execute goal on project java-exec: Could not resolve
>> >> dependencies for project
>> org.apache.drill.exec:java-exec:jar:1.0-SNAPSHOT:
>> >> Failure to find com.twitter:parquet-column:jar:1.0.0-SNAPSHOT in
>> >> http://conjars.org/repo was cached in the local repository, resolution
>> will
>> >> not be reattempted until the update interval of conjars has elapsed or
>> >> updates are forced -> [Help 1]
>> >> [ERROR]
>> >> [ERROR] To see the full stack trace of the errors, re-run Maven with
>> the -e
>> >> switch.
>> >> [ERROR] Re-run Maven using the -X switch to enable full debug logging.
>> >>
>> >>
>> >>
>> >>
>> >>
>> >> Thanks & Regards,
>> >> B Anil Kumar.
>> >>
>> >>
>> >> On Mon, Aug 5, 2013 at 7:40 PM, Jason Altekruse <
>> altekrusejason@gmail.com>wrote:
>> >>
>> >>> Anil,
>> >>>
>> >>> The important line in the log is this one:
>> >>> on project common: 'protoc' failed.
>> >>>
>> >>> You need to install protoc on your machine to run the build, the
>> version we
>> >>> are targeting is 2.5.
>> >>>
>> >>> You might have seen the discussion on the list about protoc versions,
>> this
>> >>> only applies as we try to incorporate Hadoop 2.0 and YARN, because they
>> >>> are dependent on an older version and the 2.5 release is not backwards
>> >>> compatible. It seems like that has been solved thanks to Lisen's work,
>> but
>> >>> should not affect just running the build right now.
>> >>>
>> >>> -Jason
>> >>>
>>

Re: mvn clean install is failing

Posted by AnilKumar B <ak...@gmail.com>.
Hi,

mvn clean install and mvn eclipse:eclipse are successful, but still in
eclipse there few errors.

org.apache.drill.exec.proto.GeneralRPCProtos.Ack  is not resolved. It
seems, this is generated class. But it's not generated.

Thanks & Regards,
B Anil Kumar.


On Mon, Aug 5, 2013 at 10:39 PM, Julien Le Dem <ju...@twitter.com> wrote:

> Hi,
> It looks like sonatype automatically deletes snapdhots when a release is
> made.
> Good news is now you will be able to depend on fixed releases.
> Julien
>
> On Mon, Aug 5, 2013 at 9:44 AM, Jacques Nadeau <ja...@apache.org> wrote:
> > Yeah, we need to fix that.  Apparently, the Parquet snapshot jar was
> > deleted from the sonatype repository.
> >
> > If you modify the block:
> >     <dependency>
> >       <groupId>com.twitter</groupId>
> >       <artifactId>parquet-column</artifactId>
> >       <version>1.0.0-SNAPSHOT</version>
> >     </dependency>
> >
> > To look like:
> >     <dependency>
> >       <groupId>com.twitter</groupId>
> >       <artifactId>parquet-column</artifactId>
> >       <version>1.0.0</version>
> >     </dependency>
> >
> > In the file:
> > sandbox/prototype/exec/java-exec/pom.xml
> >
> > And then retry, things should work.  Assuming protoc --version returns
> > "libprotoc 2.5.0"
> >
> > J
> >
> >
> >
> > On Mon, Aug 5, 2013 at 9:35 AM, AnilKumar B <ak...@gmail.com>
> wrote:
> >> Thanks Jason.
> >>
> >> I already installed protobuf.
> >> user@ubuntu:~/Work/incubator-drill/sandbox/prototype$ protoc
> >> Missing input file.
> >>
> >>
> >> Even I tried with protobuf-2.5.0  & jdk-1.7, still I am getting
> following
> >> error.
> >> [INFO]
> >> ------------------------------------------------------------------------
> >> [INFO] Building java-exec 1.0-SNAPSHOT
> >> [INFO]
> >> ------------------------------------------------------------------------
> >> [WARNING] The POM for com.twitter:parquet-column:jar:1.0.0-SNAPSHOT is
> >> missing, no dependency information available
> >> [INFO]
> >> ------------------------------------------------------------------------
> >> [INFO] Reactor Summary:
> >> [INFO]
> >> [INFO] prototype-parent .................................. SUCCESS
> [1.184s]
> >> [INFO] common ............................................ SUCCESS
> [3.319s]
> >> [INFO] contrib-parent .................................... SUCCESS
> [0.087s]
> >> [INFO] pom ............................................... SUCCESS
> [0.182s]
> >> [INFO] Netty/Drill/Buffer ................................ SUCCESS
> [0.943s]
> >> [INFO] exec .............................................. SUCCESS
> [0.124s]
> >> [INFO] java-exec ......................................... FAILURE
> [0.229s]
> >> [INFO] Logical Plan Execution Reference Implementation ... SKIPPED
> >> [INFO] planner ........................................... SKIPPED
> >> [INFO] sqlparser ......................................... SKIPPED
> >> [INFO]
> >> ------------------------------------------------------------------------
> >> [INFO] BUILD FAILURE
> >> [INFO]
> >> ------------------------------------------------------------------------
> >> [INFO] Total time: 6.300s
> >> [INFO] Finished at: Mon Aug 05 12:34:54 EDT 2013
> >> [INFO] Final Memory: 26M/62M
> >> [INFO]
> >> ------------------------------------------------------------------------
> >> [ERROR] Failed to execute goal on project java-exec: Could not resolve
> >> dependencies for project
> org.apache.drill.exec:java-exec:jar:1.0-SNAPSHOT:
> >> Failure to find com.twitter:parquet-column:jar:1.0.0-SNAPSHOT in
> >> http://conjars.org/repo was cached in the local repository, resolution
> will
> >> not be reattempted until the update interval of conjars has elapsed or
> >> updates are forced -> [Help 1]
> >> [ERROR]
> >> [ERROR] To see the full stack trace of the errors, re-run Maven with
> the -e
> >> switch.
> >> [ERROR] Re-run Maven using the -X switch to enable full debug logging.
> >>
> >>
> >>
> >>
> >>
> >> Thanks & Regards,
> >> B Anil Kumar.
> >>
> >>
> >> On Mon, Aug 5, 2013 at 7:40 PM, Jason Altekruse <
> altekrusejason@gmail.com>wrote:
> >>
> >>> Anil,
> >>>
> >>> The important line in the log is this one:
> >>> on project common: 'protoc' failed.
> >>>
> >>> You need to install protoc on your machine to run the build, the
> version we
> >>> are targeting is 2.5.
> >>>
> >>> You might have seen the discussion on the list about protoc versions,
> this
> >>> only applies as we try to incorporate Hadoop 2.0 and YARN, because they
> >>> are dependent on an older version and the 2.5 release is not backwards
> >>> compatible. It seems like that has been solved thanks to Lisen's work,
> but
> >>> should not affect just running the build right now.
> >>>
> >>> -Jason
> >>>
>

Re: mvn clean install is failing

Posted by AnilKumar B <ak...@gmail.com>.
Awesome. It's working....Thanks Jacques.

Thanks & Regards,
B Anil Kumar.


On Mon, Aug 5, 2013 at 10:14 PM, Jacques Nadeau <ja...@apache.org> wrote:

> Yeah, we need to fix that.  Apparently, the Parquet snapshot jar was
> deleted from the sonatype repository.
>
> If you modify the block:
>     <dependency>
>       <groupId>com.twitter</groupId>
>       <artifactId>parquet-column</artifactId>
>       <version>1.0.0-SNAPSHOT</version>
>     </dependency>
>
> To look like:
>     <dependency>
>       <groupId>com.twitter</groupId>
>       <artifactId>parquet-column</artifactId>
>       <version>1.0.0</version>
>     </dependency>
>
> In the file:
> sandbox/prototype/exec/java-exec/pom.xml
>
> And then retry, things should work.  Assuming protoc --version returns
> "libprotoc 2.5.0"
>
> J
>
>
>
> On Mon, Aug 5, 2013 at 9:35 AM, AnilKumar B <ak...@gmail.com> wrote:
> > Thanks Jason.
> >
> > I already installed protobuf.
> > user@ubuntu:~/Work/incubator-drill/sandbox/prototype$ protoc
> > Missing input file.
> >
> >
> > Even I tried with protobuf-2.5.0  & jdk-1.7, still I am getting following
> > error.
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] Building java-exec 1.0-SNAPSHOT
> > [INFO]
> > ------------------------------------------------------------------------
> > [WARNING] The POM for com.twitter:parquet-column:jar:1.0.0-SNAPSHOT is
> > missing, no dependency information available
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] Reactor Summary:
> > [INFO]
> > [INFO] prototype-parent .................................. SUCCESS
> [1.184s]
> > [INFO] common ............................................ SUCCESS
> [3.319s]
> > [INFO] contrib-parent .................................... SUCCESS
> [0.087s]
> > [INFO] pom ............................................... SUCCESS
> [0.182s]
> > [INFO] Netty/Drill/Buffer ................................ SUCCESS
> [0.943s]
> > [INFO] exec .............................................. SUCCESS
> [0.124s]
> > [INFO] java-exec ......................................... FAILURE
> [0.229s]
> > [INFO] Logical Plan Execution Reference Implementation ... SKIPPED
> > [INFO] planner ........................................... SKIPPED
> > [INFO] sqlparser ......................................... SKIPPED
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] BUILD FAILURE
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] Total time: 6.300s
> > [INFO] Finished at: Mon Aug 05 12:34:54 EDT 2013
> > [INFO] Final Memory: 26M/62M
> > [INFO]
> > ------------------------------------------------------------------------
> > [ERROR] Failed to execute goal on project java-exec: Could not resolve
> > dependencies for project
> org.apache.drill.exec:java-exec:jar:1.0-SNAPSHOT:
> > Failure to find com.twitter:parquet-column:jar:1.0.0-SNAPSHOT in
> > http://conjars.org/repo was cached in the local repository, resolution
> will
> > not be reattempted until the update interval of conjars has elapsed or
> > updates are forced -> [Help 1]
> > [ERROR]
> > [ERROR] To see the full stack trace of the errors, re-run Maven with the
> -e
> > switch.
> > [ERROR] Re-run Maven using the -X switch to enable full debug logging.
> >
> >
> >
> >
> >
> > Thanks & Regards,
> > B Anil Kumar.
> >
> >
> > On Mon, Aug 5, 2013 at 7:40 PM, Jason Altekruse <
> altekrusejason@gmail.com>wrote:
> >
> >> Anil,
> >>
> >> The important line in the log is this one:
> >> on project common: 'protoc' failed.
> >>
> >> You need to install protoc on your machine to run the build, the
> version we
> >> are targeting is 2.5.
> >>
> >> You might have seen the discussion on the list about protoc versions,
> this
> >> only applies as we try to incorporate Hadoop 2.0 and YARN, because they
> >> are dependent on an older version and the 2.5 release is not backwards
> >> compatible. It seems like that has been solved thanks to Lisen's work,
> but
> >> should not affect just running the build right now.
> >>
> >> -Jason
> >>
>

Re: mvn clean install is failing

Posted by Jacques Nadeau <ja...@apache.org>.
Fix for this problem should be in master now.

J

On Mon, Aug 5, 2013 at 11:28 AM, Jacques Nadeau <ja...@apache.org> wrote:
> from above, sandbox/prototype/exec/java-exec/pom.xml
>
> Jason and Steven are working on a Parquet reader and should have this fix in it.
>
> J
>
> On Mon, Aug 5, 2013 at 10:57 AM, AnilKumar B <ak...@gmail.com> wrote:
>> May I know, In which pom, I should change the version as 1.0.0?
>>
>> Thanks & Regards,
>> B Anil Kumar.
>>
>>
>> On Mon, Aug 5, 2013 at 11:11 PM, Timothy Chen <tn...@gmail.com> wrote:
>>
>>> +1
>>>
>>> I manually changed to 1.0.0 in my repo to get it to work too.
>>>
>>> Tim
>>>
>>>
>>> On Mon, Aug 5, 2013 at 10:39 AM, Jacques Nadeau <ja...@apache.org>
>>> wrote:
>>>
>>> > :D
>>> >
>>> > I guess that is what you get for relying on the bleeding edge of
>>> > snapshot-land.  We'll get it pointed to the first 1.0.0 release soon.
>>> >
>>> > J
>>> >
>>> > On Mon, Aug 5, 2013 at 10:09 AM, Julien Le Dem <ju...@twitter.com>
>>> wrote:
>>> > > Hi,
>>> > > It looks like sonatype automatically deletes snapdhots when a release
>>> is
>>> > made.
>>> > > Good news is now you will be able to depend on fixed releases.
>>> > > Julien
>>> > >
>>> > > On Mon, Aug 5, 2013 at 9:44 AM, Jacques Nadeau <ja...@apache.org>
>>> > wrote:
>>> > >> Yeah, we need to fix that.  Apparently, the Parquet snapshot jar was
>>> > >> deleted from the sonatype repository.
>>> > >>
>>> > >> If you modify the block:
>>> > >>     <dependency>
>>> > >>       <groupId>com.twitter</groupId>
>>> > >>       <artifactId>parquet-column</artifactId>
>>> > >>       <version>1.0.0-SNAPSHOT</version>
>>> > >>     </dependency>
>>> > >>
>>> > >> To look like:
>>> > >>     <dependency>
>>> > >>       <groupId>com.twitter</groupId>
>>> > >>       <artifactId>parquet-column</artifactId>
>>> > >>       <version>1.0.0</version>
>>> > >>     </dependency>
>>> > >>
>>> > >> In the file:
>>> > >> sandbox/prototype/exec/java-exec/pom.xml
>>> > >>
>>> > >> And then retry, things should work.  Assuming protoc --version returns
>>> > >> "libprotoc 2.5.0"
>>> > >>
>>> > >> J
>>> > >>
>>> > >>
>>> > >>
>>> > >> On Mon, Aug 5, 2013 at 9:35 AM, AnilKumar B <ak...@gmail.com>
>>> > wrote:
>>> > >>> Thanks Jason.
>>> > >>>
>>> > >>> I already installed protobuf.
>>> > >>> user@ubuntu:~/Work/incubator-drill/sandbox/prototype$ protoc
>>> > >>> Missing input file.
>>> > >>>
>>> > >>>
>>> > >>> Even I tried with protobuf-2.5.0  & jdk-1.7, still I am getting
>>> > following
>>> > >>> error.
>>> > >>> [INFO]
>>> > >>>
>>> > ------------------------------------------------------------------------
>>> > >>> [INFO] Building java-exec 1.0-SNAPSHOT
>>> > >>> [INFO]
>>> > >>>
>>> > ------------------------------------------------------------------------
>>> > >>> [WARNING] The POM for com.twitter:parquet-column:jar:1.0.0-SNAPSHOT
>>> is
>>> > >>> missing, no dependency information available
>>> > >>> [INFO]
>>> > >>>
>>> > ------------------------------------------------------------------------
>>> > >>> [INFO] Reactor Summary:
>>> > >>> [INFO]
>>> > >>> [INFO] prototype-parent .................................. SUCCESS
>>> > [1.184s]
>>> > >>> [INFO] common ............................................ SUCCESS
>>> > [3.319s]
>>> > >>> [INFO] contrib-parent .................................... SUCCESS
>>> > [0.087s]
>>> > >>> [INFO] pom ............................................... SUCCESS
>>> > [0.182s]
>>> > >>> [INFO] Netty/Drill/Buffer ................................ SUCCESS
>>> > [0.943s]
>>> > >>> [INFO] exec .............................................. SUCCESS
>>> > [0.124s]
>>> > >>> [INFO] java-exec ......................................... FAILURE
>>> > [0.229s]
>>> > >>> [INFO] Logical Plan Execution Reference Implementation ... SKIPPED
>>> > >>> [INFO] planner ........................................... SKIPPED
>>> > >>> [INFO] sqlparser ......................................... SKIPPED
>>> > >>> [INFO]
>>> > >>>
>>> > ------------------------------------------------------------------------
>>> > >>> [INFO] BUILD FAILURE
>>> > >>> [INFO]
>>> > >>>
>>> > ------------------------------------------------------------------------
>>> > >>> [INFO] Total time: 6.300s
>>> > >>> [INFO] Finished at: Mon Aug 05 12:34:54 EDT 2013
>>> > >>> [INFO] Final Memory: 26M/62M
>>> > >>> [INFO]
>>> > >>>
>>> > ------------------------------------------------------------------------
>>> > >>> [ERROR] Failed to execute goal on project java-exec: Could not
>>> resolve
>>> > >>> dependencies for project
>>> > org.apache.drill.exec:java-exec:jar:1.0-SNAPSHOT:
>>> > >>> Failure to find com.twitter:parquet-column:jar:1.0.0-SNAPSHOT in
>>> > >>> http://conjars.org/repo was cached in the local repository,
>>> > resolution will
>>> > >>> not be reattempted until the update interval of conjars has elapsed
>>> or
>>> > >>> updates are forced -> [Help 1]
>>> > >>> [ERROR]
>>> > >>> [ERROR] To see the full stack trace of the errors, re-run Maven with
>>> > the -e
>>> > >>> switch.
>>> > >>> [ERROR] Re-run Maven using the -X switch to enable full debug
>>> logging.
>>> > >>>
>>> > >>>
>>> > >>>
>>> > >>>
>>> > >>>
>>> > >>> Thanks & Regards,
>>> > >>> B Anil Kumar.
>>> > >>>
>>> > >>>
>>> > >>> On Mon, Aug 5, 2013 at 7:40 PM, Jason Altekruse <
>>> > altekrusejason@gmail.com>wrote:
>>> > >>>
>>> > >>>> Anil,
>>> > >>>>
>>> > >>>> The important line in the log is this one:
>>> > >>>> on project common: 'protoc' failed.
>>> > >>>>
>>> > >>>> You need to install protoc on your machine to run the build, the
>>> > version we
>>> > >>>> are targeting is 2.5.
>>> > >>>>
>>> > >>>> You might have seen the discussion on the list about protoc
>>> versions,
>>> > this
>>> > >>>> only applies as we try to incorporate Hadoop 2.0 and YARN, because
>>> > they
>>> > >>>> are dependent on an older version and the 2.5 release is not
>>> backwards
>>> > >>>> compatible. It seems like that has been solved thanks to Lisen's
>>> > work, but
>>> > >>>> should not affect just running the build right now.
>>> > >>>>
>>> > >>>> -Jason
>>> > >>>>
>>> >
>>>

Re: mvn clean install is failing

Posted by Jacques Nadeau <ja...@apache.org>.
from above, sandbox/prototype/exec/java-exec/pom.xml

Jason and Steven are working on a Parquet reader and should have this fix in it.

J

On Mon, Aug 5, 2013 at 10:57 AM, AnilKumar B <ak...@gmail.com> wrote:
> May I know, In which pom, I should change the version as 1.0.0?
>
> Thanks & Regards,
> B Anil Kumar.
>
>
> On Mon, Aug 5, 2013 at 11:11 PM, Timothy Chen <tn...@gmail.com> wrote:
>
>> +1
>>
>> I manually changed to 1.0.0 in my repo to get it to work too.
>>
>> Tim
>>
>>
>> On Mon, Aug 5, 2013 at 10:39 AM, Jacques Nadeau <ja...@apache.org>
>> wrote:
>>
>> > :D
>> >
>> > I guess that is what you get for relying on the bleeding edge of
>> > snapshot-land.  We'll get it pointed to the first 1.0.0 release soon.
>> >
>> > J
>> >
>> > On Mon, Aug 5, 2013 at 10:09 AM, Julien Le Dem <ju...@twitter.com>
>> wrote:
>> > > Hi,
>> > > It looks like sonatype automatically deletes snapdhots when a release
>> is
>> > made.
>> > > Good news is now you will be able to depend on fixed releases.
>> > > Julien
>> > >
>> > > On Mon, Aug 5, 2013 at 9:44 AM, Jacques Nadeau <ja...@apache.org>
>> > wrote:
>> > >> Yeah, we need to fix that.  Apparently, the Parquet snapshot jar was
>> > >> deleted from the sonatype repository.
>> > >>
>> > >> If you modify the block:
>> > >>     <dependency>
>> > >>       <groupId>com.twitter</groupId>
>> > >>       <artifactId>parquet-column</artifactId>
>> > >>       <version>1.0.0-SNAPSHOT</version>
>> > >>     </dependency>
>> > >>
>> > >> To look like:
>> > >>     <dependency>
>> > >>       <groupId>com.twitter</groupId>
>> > >>       <artifactId>parquet-column</artifactId>
>> > >>       <version>1.0.0</version>
>> > >>     </dependency>
>> > >>
>> > >> In the file:
>> > >> sandbox/prototype/exec/java-exec/pom.xml
>> > >>
>> > >> And then retry, things should work.  Assuming protoc --version returns
>> > >> "libprotoc 2.5.0"
>> > >>
>> > >> J
>> > >>
>> > >>
>> > >>
>> > >> On Mon, Aug 5, 2013 at 9:35 AM, AnilKumar B <ak...@gmail.com>
>> > wrote:
>> > >>> Thanks Jason.
>> > >>>
>> > >>> I already installed protobuf.
>> > >>> user@ubuntu:~/Work/incubator-drill/sandbox/prototype$ protoc
>> > >>> Missing input file.
>> > >>>
>> > >>>
>> > >>> Even I tried with protobuf-2.5.0  & jdk-1.7, still I am getting
>> > following
>> > >>> error.
>> > >>> [INFO]
>> > >>>
>> > ------------------------------------------------------------------------
>> > >>> [INFO] Building java-exec 1.0-SNAPSHOT
>> > >>> [INFO]
>> > >>>
>> > ------------------------------------------------------------------------
>> > >>> [WARNING] The POM for com.twitter:parquet-column:jar:1.0.0-SNAPSHOT
>> is
>> > >>> missing, no dependency information available
>> > >>> [INFO]
>> > >>>
>> > ------------------------------------------------------------------------
>> > >>> [INFO] Reactor Summary:
>> > >>> [INFO]
>> > >>> [INFO] prototype-parent .................................. SUCCESS
>> > [1.184s]
>> > >>> [INFO] common ............................................ SUCCESS
>> > [3.319s]
>> > >>> [INFO] contrib-parent .................................... SUCCESS
>> > [0.087s]
>> > >>> [INFO] pom ............................................... SUCCESS
>> > [0.182s]
>> > >>> [INFO] Netty/Drill/Buffer ................................ SUCCESS
>> > [0.943s]
>> > >>> [INFO] exec .............................................. SUCCESS
>> > [0.124s]
>> > >>> [INFO] java-exec ......................................... FAILURE
>> > [0.229s]
>> > >>> [INFO] Logical Plan Execution Reference Implementation ... SKIPPED
>> > >>> [INFO] planner ........................................... SKIPPED
>> > >>> [INFO] sqlparser ......................................... SKIPPED
>> > >>> [INFO]
>> > >>>
>> > ------------------------------------------------------------------------
>> > >>> [INFO] BUILD FAILURE
>> > >>> [INFO]
>> > >>>
>> > ------------------------------------------------------------------------
>> > >>> [INFO] Total time: 6.300s
>> > >>> [INFO] Finished at: Mon Aug 05 12:34:54 EDT 2013
>> > >>> [INFO] Final Memory: 26M/62M
>> > >>> [INFO]
>> > >>>
>> > ------------------------------------------------------------------------
>> > >>> [ERROR] Failed to execute goal on project java-exec: Could not
>> resolve
>> > >>> dependencies for project
>> > org.apache.drill.exec:java-exec:jar:1.0-SNAPSHOT:
>> > >>> Failure to find com.twitter:parquet-column:jar:1.0.0-SNAPSHOT in
>> > >>> http://conjars.org/repo was cached in the local repository,
>> > resolution will
>> > >>> not be reattempted until the update interval of conjars has elapsed
>> or
>> > >>> updates are forced -> [Help 1]
>> > >>> [ERROR]
>> > >>> [ERROR] To see the full stack trace of the errors, re-run Maven with
>> > the -e
>> > >>> switch.
>> > >>> [ERROR] Re-run Maven using the -X switch to enable full debug
>> logging.
>> > >>>
>> > >>>
>> > >>>
>> > >>>
>> > >>>
>> > >>> Thanks & Regards,
>> > >>> B Anil Kumar.
>> > >>>
>> > >>>
>> > >>> On Mon, Aug 5, 2013 at 7:40 PM, Jason Altekruse <
>> > altekrusejason@gmail.com>wrote:
>> > >>>
>> > >>>> Anil,
>> > >>>>
>> > >>>> The important line in the log is this one:
>> > >>>> on project common: 'protoc' failed.
>> > >>>>
>> > >>>> You need to install protoc on your machine to run the build, the
>> > version we
>> > >>>> are targeting is 2.5.
>> > >>>>
>> > >>>> You might have seen the discussion on the list about protoc
>> versions,
>> > this
>> > >>>> only applies as we try to incorporate Hadoop 2.0 and YARN, because
>> > they
>> > >>>> are dependent on an older version and the 2.5 release is not
>> backwards
>> > >>>> compatible. It seems like that has been solved thanks to Lisen's
>> > work, but
>> > >>>> should not affect just running the build right now.
>> > >>>>
>> > >>>> -Jason
>> > >>>>
>> >
>>

Re: mvn clean install is failing

Posted by AnilKumar B <ak...@gmail.com>.
May I know, In which pom, I should change the version as 1.0.0?

Thanks & Regards,
B Anil Kumar.


On Mon, Aug 5, 2013 at 11:11 PM, Timothy Chen <tn...@gmail.com> wrote:

> +1
>
> I manually changed to 1.0.0 in my repo to get it to work too.
>
> Tim
>
>
> On Mon, Aug 5, 2013 at 10:39 AM, Jacques Nadeau <ja...@apache.org>
> wrote:
>
> > :D
> >
> > I guess that is what you get for relying on the bleeding edge of
> > snapshot-land.  We'll get it pointed to the first 1.0.0 release soon.
> >
> > J
> >
> > On Mon, Aug 5, 2013 at 10:09 AM, Julien Le Dem <ju...@twitter.com>
> wrote:
> > > Hi,
> > > It looks like sonatype automatically deletes snapdhots when a release
> is
> > made.
> > > Good news is now you will be able to depend on fixed releases.
> > > Julien
> > >
> > > On Mon, Aug 5, 2013 at 9:44 AM, Jacques Nadeau <ja...@apache.org>
> > wrote:
> > >> Yeah, we need to fix that.  Apparently, the Parquet snapshot jar was
> > >> deleted from the sonatype repository.
> > >>
> > >> If you modify the block:
> > >>     <dependency>
> > >>       <groupId>com.twitter</groupId>
> > >>       <artifactId>parquet-column</artifactId>
> > >>       <version>1.0.0-SNAPSHOT</version>
> > >>     </dependency>
> > >>
> > >> To look like:
> > >>     <dependency>
> > >>       <groupId>com.twitter</groupId>
> > >>       <artifactId>parquet-column</artifactId>
> > >>       <version>1.0.0</version>
> > >>     </dependency>
> > >>
> > >> In the file:
> > >> sandbox/prototype/exec/java-exec/pom.xml
> > >>
> > >> And then retry, things should work.  Assuming protoc --version returns
> > >> "libprotoc 2.5.0"
> > >>
> > >> J
> > >>
> > >>
> > >>
> > >> On Mon, Aug 5, 2013 at 9:35 AM, AnilKumar B <ak...@gmail.com>
> > wrote:
> > >>> Thanks Jason.
> > >>>
> > >>> I already installed protobuf.
> > >>> user@ubuntu:~/Work/incubator-drill/sandbox/prototype$ protoc
> > >>> Missing input file.
> > >>>
> > >>>
> > >>> Even I tried with protobuf-2.5.0  & jdk-1.7, still I am getting
> > following
> > >>> error.
> > >>> [INFO]
> > >>>
> > ------------------------------------------------------------------------
> > >>> [INFO] Building java-exec 1.0-SNAPSHOT
> > >>> [INFO]
> > >>>
> > ------------------------------------------------------------------------
> > >>> [WARNING] The POM for com.twitter:parquet-column:jar:1.0.0-SNAPSHOT
> is
> > >>> missing, no dependency information available
> > >>> [INFO]
> > >>>
> > ------------------------------------------------------------------------
> > >>> [INFO] Reactor Summary:
> > >>> [INFO]
> > >>> [INFO] prototype-parent .................................. SUCCESS
> > [1.184s]
> > >>> [INFO] common ............................................ SUCCESS
> > [3.319s]
> > >>> [INFO] contrib-parent .................................... SUCCESS
> > [0.087s]
> > >>> [INFO] pom ............................................... SUCCESS
> > [0.182s]
> > >>> [INFO] Netty/Drill/Buffer ................................ SUCCESS
> > [0.943s]
> > >>> [INFO] exec .............................................. SUCCESS
> > [0.124s]
> > >>> [INFO] java-exec ......................................... FAILURE
> > [0.229s]
> > >>> [INFO] Logical Plan Execution Reference Implementation ... SKIPPED
> > >>> [INFO] planner ........................................... SKIPPED
> > >>> [INFO] sqlparser ......................................... SKIPPED
> > >>> [INFO]
> > >>>
> > ------------------------------------------------------------------------
> > >>> [INFO] BUILD FAILURE
> > >>> [INFO]
> > >>>
> > ------------------------------------------------------------------------
> > >>> [INFO] Total time: 6.300s
> > >>> [INFO] Finished at: Mon Aug 05 12:34:54 EDT 2013
> > >>> [INFO] Final Memory: 26M/62M
> > >>> [INFO]
> > >>>
> > ------------------------------------------------------------------------
> > >>> [ERROR] Failed to execute goal on project java-exec: Could not
> resolve
> > >>> dependencies for project
> > org.apache.drill.exec:java-exec:jar:1.0-SNAPSHOT:
> > >>> Failure to find com.twitter:parquet-column:jar:1.0.0-SNAPSHOT in
> > >>> http://conjars.org/repo was cached in the local repository,
> > resolution will
> > >>> not be reattempted until the update interval of conjars has elapsed
> or
> > >>> updates are forced -> [Help 1]
> > >>> [ERROR]
> > >>> [ERROR] To see the full stack trace of the errors, re-run Maven with
> > the -e
> > >>> switch.
> > >>> [ERROR] Re-run Maven using the -X switch to enable full debug
> logging.
> > >>>
> > >>>
> > >>>
> > >>>
> > >>>
> > >>> Thanks & Regards,
> > >>> B Anil Kumar.
> > >>>
> > >>>
> > >>> On Mon, Aug 5, 2013 at 7:40 PM, Jason Altekruse <
> > altekrusejason@gmail.com>wrote:
> > >>>
> > >>>> Anil,
> > >>>>
> > >>>> The important line in the log is this one:
> > >>>> on project common: 'protoc' failed.
> > >>>>
> > >>>> You need to install protoc on your machine to run the build, the
> > version we
> > >>>> are targeting is 2.5.
> > >>>>
> > >>>> You might have seen the discussion on the list about protoc
> versions,
> > this
> > >>>> only applies as we try to incorporate Hadoop 2.0 and YARN, because
> > they
> > >>>> are dependent on an older version and the 2.5 release is not
> backwards
> > >>>> compatible. It seems like that has been solved thanks to Lisen's
> > work, but
> > >>>> should not affect just running the build right now.
> > >>>>
> > >>>> -Jason
> > >>>>
> >
>

Re: mvn clean install is failing

Posted by Timothy Chen <tn...@gmail.com>.
+1

I manually changed to 1.0.0 in my repo to get it to work too.

Tim


On Mon, Aug 5, 2013 at 10:39 AM, Jacques Nadeau <ja...@apache.org> wrote:

> :D
>
> I guess that is what you get for relying on the bleeding edge of
> snapshot-land.  We'll get it pointed to the first 1.0.0 release soon.
>
> J
>
> On Mon, Aug 5, 2013 at 10:09 AM, Julien Le Dem <ju...@twitter.com> wrote:
> > Hi,
> > It looks like sonatype automatically deletes snapdhots when a release is
> made.
> > Good news is now you will be able to depend on fixed releases.
> > Julien
> >
> > On Mon, Aug 5, 2013 at 9:44 AM, Jacques Nadeau <ja...@apache.org>
> wrote:
> >> Yeah, we need to fix that.  Apparently, the Parquet snapshot jar was
> >> deleted from the sonatype repository.
> >>
> >> If you modify the block:
> >>     <dependency>
> >>       <groupId>com.twitter</groupId>
> >>       <artifactId>parquet-column</artifactId>
> >>       <version>1.0.0-SNAPSHOT</version>
> >>     </dependency>
> >>
> >> To look like:
> >>     <dependency>
> >>       <groupId>com.twitter</groupId>
> >>       <artifactId>parquet-column</artifactId>
> >>       <version>1.0.0</version>
> >>     </dependency>
> >>
> >> In the file:
> >> sandbox/prototype/exec/java-exec/pom.xml
> >>
> >> And then retry, things should work.  Assuming protoc --version returns
> >> "libprotoc 2.5.0"
> >>
> >> J
> >>
> >>
> >>
> >> On Mon, Aug 5, 2013 at 9:35 AM, AnilKumar B <ak...@gmail.com>
> wrote:
> >>> Thanks Jason.
> >>>
> >>> I already installed protobuf.
> >>> user@ubuntu:~/Work/incubator-drill/sandbox/prototype$ protoc
> >>> Missing input file.
> >>>
> >>>
> >>> Even I tried with protobuf-2.5.0  & jdk-1.7, still I am getting
> following
> >>> error.
> >>> [INFO]
> >>>
> ------------------------------------------------------------------------
> >>> [INFO] Building java-exec 1.0-SNAPSHOT
> >>> [INFO]
> >>>
> ------------------------------------------------------------------------
> >>> [WARNING] The POM for com.twitter:parquet-column:jar:1.0.0-SNAPSHOT is
> >>> missing, no dependency information available
> >>> [INFO]
> >>>
> ------------------------------------------------------------------------
> >>> [INFO] Reactor Summary:
> >>> [INFO]
> >>> [INFO] prototype-parent .................................. SUCCESS
> [1.184s]
> >>> [INFO] common ............................................ SUCCESS
> [3.319s]
> >>> [INFO] contrib-parent .................................... SUCCESS
> [0.087s]
> >>> [INFO] pom ............................................... SUCCESS
> [0.182s]
> >>> [INFO] Netty/Drill/Buffer ................................ SUCCESS
> [0.943s]
> >>> [INFO] exec .............................................. SUCCESS
> [0.124s]
> >>> [INFO] java-exec ......................................... FAILURE
> [0.229s]
> >>> [INFO] Logical Plan Execution Reference Implementation ... SKIPPED
> >>> [INFO] planner ........................................... SKIPPED
> >>> [INFO] sqlparser ......................................... SKIPPED
> >>> [INFO]
> >>>
> ------------------------------------------------------------------------
> >>> [INFO] BUILD FAILURE
> >>> [INFO]
> >>>
> ------------------------------------------------------------------------
> >>> [INFO] Total time: 6.300s
> >>> [INFO] Finished at: Mon Aug 05 12:34:54 EDT 2013
> >>> [INFO] Final Memory: 26M/62M
> >>> [INFO]
> >>>
> ------------------------------------------------------------------------
> >>> [ERROR] Failed to execute goal on project java-exec: Could not resolve
> >>> dependencies for project
> org.apache.drill.exec:java-exec:jar:1.0-SNAPSHOT:
> >>> Failure to find com.twitter:parquet-column:jar:1.0.0-SNAPSHOT in
> >>> http://conjars.org/repo was cached in the local repository,
> resolution will
> >>> not be reattempted until the update interval of conjars has elapsed or
> >>> updates are forced -> [Help 1]
> >>> [ERROR]
> >>> [ERROR] To see the full stack trace of the errors, re-run Maven with
> the -e
> >>> switch.
> >>> [ERROR] Re-run Maven using the -X switch to enable full debug logging.
> >>>
> >>>
> >>>
> >>>
> >>>
> >>> Thanks & Regards,
> >>> B Anil Kumar.
> >>>
> >>>
> >>> On Mon, Aug 5, 2013 at 7:40 PM, Jason Altekruse <
> altekrusejason@gmail.com>wrote:
> >>>
> >>>> Anil,
> >>>>
> >>>> The important line in the log is this one:
> >>>> on project common: 'protoc' failed.
> >>>>
> >>>> You need to install protoc on your machine to run the build, the
> version we
> >>>> are targeting is 2.5.
> >>>>
> >>>> You might have seen the discussion on the list about protoc versions,
> this
> >>>> only applies as we try to incorporate Hadoop 2.0 and YARN, because
> they
> >>>> are dependent on an older version and the 2.5 release is not backwards
> >>>> compatible. It seems like that has been solved thanks to Lisen's
> work, but
> >>>> should not affect just running the build right now.
> >>>>
> >>>> -Jason
> >>>>
>

Re: mvn clean install is failing

Posted by Jacques Nadeau <ja...@apache.org>.
:D

I guess that is what you get for relying on the bleeding edge of
snapshot-land.  We'll get it pointed to the first 1.0.0 release soon.

J

On Mon, Aug 5, 2013 at 10:09 AM, Julien Le Dem <ju...@twitter.com> wrote:
> Hi,
> It looks like sonatype automatically deletes snapdhots when a release is made.
> Good news is now you will be able to depend on fixed releases.
> Julien
>
> On Mon, Aug 5, 2013 at 9:44 AM, Jacques Nadeau <ja...@apache.org> wrote:
>> Yeah, we need to fix that.  Apparently, the Parquet snapshot jar was
>> deleted from the sonatype repository.
>>
>> If you modify the block:
>>     <dependency>
>>       <groupId>com.twitter</groupId>
>>       <artifactId>parquet-column</artifactId>
>>       <version>1.0.0-SNAPSHOT</version>
>>     </dependency>
>>
>> To look like:
>>     <dependency>
>>       <groupId>com.twitter</groupId>
>>       <artifactId>parquet-column</artifactId>
>>       <version>1.0.0</version>
>>     </dependency>
>>
>> In the file:
>> sandbox/prototype/exec/java-exec/pom.xml
>>
>> And then retry, things should work.  Assuming protoc --version returns
>> "libprotoc 2.5.0"
>>
>> J
>>
>>
>>
>> On Mon, Aug 5, 2013 at 9:35 AM, AnilKumar B <ak...@gmail.com> wrote:
>>> Thanks Jason.
>>>
>>> I already installed protobuf.
>>> user@ubuntu:~/Work/incubator-drill/sandbox/prototype$ protoc
>>> Missing input file.
>>>
>>>
>>> Even I tried with protobuf-2.5.0  & jdk-1.7, still I am getting following
>>> error.
>>> [INFO]
>>> ------------------------------------------------------------------------
>>> [INFO] Building java-exec 1.0-SNAPSHOT
>>> [INFO]
>>> ------------------------------------------------------------------------
>>> [WARNING] The POM for com.twitter:parquet-column:jar:1.0.0-SNAPSHOT is
>>> missing, no dependency information available
>>> [INFO]
>>> ------------------------------------------------------------------------
>>> [INFO] Reactor Summary:
>>> [INFO]
>>> [INFO] prototype-parent .................................. SUCCESS [1.184s]
>>> [INFO] common ............................................ SUCCESS [3.319s]
>>> [INFO] contrib-parent .................................... SUCCESS [0.087s]
>>> [INFO] pom ............................................... SUCCESS [0.182s]
>>> [INFO] Netty/Drill/Buffer ................................ SUCCESS [0.943s]
>>> [INFO] exec .............................................. SUCCESS [0.124s]
>>> [INFO] java-exec ......................................... FAILURE [0.229s]
>>> [INFO] Logical Plan Execution Reference Implementation ... SKIPPED
>>> [INFO] planner ........................................... SKIPPED
>>> [INFO] sqlparser ......................................... SKIPPED
>>> [INFO]
>>> ------------------------------------------------------------------------
>>> [INFO] BUILD FAILURE
>>> [INFO]
>>> ------------------------------------------------------------------------
>>> [INFO] Total time: 6.300s
>>> [INFO] Finished at: Mon Aug 05 12:34:54 EDT 2013
>>> [INFO] Final Memory: 26M/62M
>>> [INFO]
>>> ------------------------------------------------------------------------
>>> [ERROR] Failed to execute goal on project java-exec: Could not resolve
>>> dependencies for project org.apache.drill.exec:java-exec:jar:1.0-SNAPSHOT:
>>> Failure to find com.twitter:parquet-column:jar:1.0.0-SNAPSHOT in
>>> http://conjars.org/repo was cached in the local repository, resolution will
>>> not be reattempted until the update interval of conjars has elapsed or
>>> updates are forced -> [Help 1]
>>> [ERROR]
>>> [ERROR] To see the full stack trace of the errors, re-run Maven with the -e
>>> switch.
>>> [ERROR] Re-run Maven using the -X switch to enable full debug logging.
>>>
>>>
>>>
>>>
>>>
>>> Thanks & Regards,
>>> B Anil Kumar.
>>>
>>>
>>> On Mon, Aug 5, 2013 at 7:40 PM, Jason Altekruse <al...@gmail.com>wrote:
>>>
>>>> Anil,
>>>>
>>>> The important line in the log is this one:
>>>> on project common: 'protoc' failed.
>>>>
>>>> You need to install protoc on your machine to run the build, the version we
>>>> are targeting is 2.5.
>>>>
>>>> You might have seen the discussion on the list about protoc versions, this
>>>> only applies as we try to incorporate Hadoop 2.0 and YARN, because they
>>>> are dependent on an older version and the 2.5 release is not backwards
>>>> compatible. It seems like that has been solved thanks to Lisen's work, but
>>>> should not affect just running the build right now.
>>>>
>>>> -Jason
>>>>

Re: mvn clean install is failing

Posted by Julien Le Dem <ju...@twitter.com>.
Hi,
It looks like sonatype automatically deletes snapdhots when a release is made.
Good news is now you will be able to depend on fixed releases.
Julien

On Mon, Aug 5, 2013 at 9:44 AM, Jacques Nadeau <ja...@apache.org> wrote:
> Yeah, we need to fix that.  Apparently, the Parquet snapshot jar was
> deleted from the sonatype repository.
>
> If you modify the block:
>     <dependency>
>       <groupId>com.twitter</groupId>
>       <artifactId>parquet-column</artifactId>
>       <version>1.0.0-SNAPSHOT</version>
>     </dependency>
>
> To look like:
>     <dependency>
>       <groupId>com.twitter</groupId>
>       <artifactId>parquet-column</artifactId>
>       <version>1.0.0</version>
>     </dependency>
>
> In the file:
> sandbox/prototype/exec/java-exec/pom.xml
>
> And then retry, things should work.  Assuming protoc --version returns
> "libprotoc 2.5.0"
>
> J
>
>
>
> On Mon, Aug 5, 2013 at 9:35 AM, AnilKumar B <ak...@gmail.com> wrote:
>> Thanks Jason.
>>
>> I already installed protobuf.
>> user@ubuntu:~/Work/incubator-drill/sandbox/prototype$ protoc
>> Missing input file.
>>
>>
>> Even I tried with protobuf-2.5.0  & jdk-1.7, still I am getting following
>> error.
>> [INFO]
>> ------------------------------------------------------------------------
>> [INFO] Building java-exec 1.0-SNAPSHOT
>> [INFO]
>> ------------------------------------------------------------------------
>> [WARNING] The POM for com.twitter:parquet-column:jar:1.0.0-SNAPSHOT is
>> missing, no dependency information available
>> [INFO]
>> ------------------------------------------------------------------------
>> [INFO] Reactor Summary:
>> [INFO]
>> [INFO] prototype-parent .................................. SUCCESS [1.184s]
>> [INFO] common ............................................ SUCCESS [3.319s]
>> [INFO] contrib-parent .................................... SUCCESS [0.087s]
>> [INFO] pom ............................................... SUCCESS [0.182s]
>> [INFO] Netty/Drill/Buffer ................................ SUCCESS [0.943s]
>> [INFO] exec .............................................. SUCCESS [0.124s]
>> [INFO] java-exec ......................................... FAILURE [0.229s]
>> [INFO] Logical Plan Execution Reference Implementation ... SKIPPED
>> [INFO] planner ........................................... SKIPPED
>> [INFO] sqlparser ......................................... SKIPPED
>> [INFO]
>> ------------------------------------------------------------------------
>> [INFO] BUILD FAILURE
>> [INFO]
>> ------------------------------------------------------------------------
>> [INFO] Total time: 6.300s
>> [INFO] Finished at: Mon Aug 05 12:34:54 EDT 2013
>> [INFO] Final Memory: 26M/62M
>> [INFO]
>> ------------------------------------------------------------------------
>> [ERROR] Failed to execute goal on project java-exec: Could not resolve
>> dependencies for project org.apache.drill.exec:java-exec:jar:1.0-SNAPSHOT:
>> Failure to find com.twitter:parquet-column:jar:1.0.0-SNAPSHOT in
>> http://conjars.org/repo was cached in the local repository, resolution will
>> not be reattempted until the update interval of conjars has elapsed or
>> updates are forced -> [Help 1]
>> [ERROR]
>> [ERROR] To see the full stack trace of the errors, re-run Maven with the -e
>> switch.
>> [ERROR] Re-run Maven using the -X switch to enable full debug logging.
>>
>>
>>
>>
>>
>> Thanks & Regards,
>> B Anil Kumar.
>>
>>
>> On Mon, Aug 5, 2013 at 7:40 PM, Jason Altekruse <al...@gmail.com>wrote:
>>
>>> Anil,
>>>
>>> The important line in the log is this one:
>>> on project common: 'protoc' failed.
>>>
>>> You need to install protoc on your machine to run the build, the version we
>>> are targeting is 2.5.
>>>
>>> You might have seen the discussion on the list about protoc versions, this
>>> only applies as we try to incorporate Hadoop 2.0 and YARN, because they
>>> are dependent on an older version and the 2.5 release is not backwards
>>> compatible. It seems like that has been solved thanks to Lisen's work, but
>>> should not affect just running the build right now.
>>>
>>> -Jason
>>>

Re: mvn clean install is failing

Posted by Jacques Nadeau <ja...@apache.org>.
Yeah, we need to fix that.  Apparently, the Parquet snapshot jar was
deleted from the sonatype repository.

If you modify the block:
    <dependency>
      <groupId>com.twitter</groupId>
      <artifactId>parquet-column</artifactId>
      <version>1.0.0-SNAPSHOT</version>
    </dependency>

To look like:
    <dependency>
      <groupId>com.twitter</groupId>
      <artifactId>parquet-column</artifactId>
      <version>1.0.0</version>
    </dependency>

In the file:
sandbox/prototype/exec/java-exec/pom.xml

And then retry, things should work.  Assuming protoc --version returns
"libprotoc 2.5.0"

J



On Mon, Aug 5, 2013 at 9:35 AM, AnilKumar B <ak...@gmail.com> wrote:
> Thanks Jason.
>
> I already installed protobuf.
> user@ubuntu:~/Work/incubator-drill/sandbox/prototype$ protoc
> Missing input file.
>
>
> Even I tried with protobuf-2.5.0  & jdk-1.7, still I am getting following
> error.
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Building java-exec 1.0-SNAPSHOT
> [INFO]
> ------------------------------------------------------------------------
> [WARNING] The POM for com.twitter:parquet-column:jar:1.0.0-SNAPSHOT is
> missing, no dependency information available
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Reactor Summary:
> [INFO]
> [INFO] prototype-parent .................................. SUCCESS [1.184s]
> [INFO] common ............................................ SUCCESS [3.319s]
> [INFO] contrib-parent .................................... SUCCESS [0.087s]
> [INFO] pom ............................................... SUCCESS [0.182s]
> [INFO] Netty/Drill/Buffer ................................ SUCCESS [0.943s]
> [INFO] exec .............................................. SUCCESS [0.124s]
> [INFO] java-exec ......................................... FAILURE [0.229s]
> [INFO] Logical Plan Execution Reference Implementation ... SKIPPED
> [INFO] planner ........................................... SKIPPED
> [INFO] sqlparser ......................................... SKIPPED
> [INFO]
> ------------------------------------------------------------------------
> [INFO] BUILD FAILURE
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Total time: 6.300s
> [INFO] Finished at: Mon Aug 05 12:34:54 EDT 2013
> [INFO] Final Memory: 26M/62M
> [INFO]
> ------------------------------------------------------------------------
> [ERROR] Failed to execute goal on project java-exec: Could not resolve
> dependencies for project org.apache.drill.exec:java-exec:jar:1.0-SNAPSHOT:
> Failure to find com.twitter:parquet-column:jar:1.0.0-SNAPSHOT in
> http://conjars.org/repo was cached in the local repository, resolution will
> not be reattempted until the update interval of conjars has elapsed or
> updates are forced -> [Help 1]
> [ERROR]
> [ERROR] To see the full stack trace of the errors, re-run Maven with the -e
> switch.
> [ERROR] Re-run Maven using the -X switch to enable full debug logging.
>
>
>
>
>
> Thanks & Regards,
> B Anil Kumar.
>
>
> On Mon, Aug 5, 2013 at 7:40 PM, Jason Altekruse <al...@gmail.com>wrote:
>
>> Anil,
>>
>> The important line in the log is this one:
>> on project common: 'protoc' failed.
>>
>> You need to install protoc on your machine to run the build, the version we
>> are targeting is 2.5.
>>
>> You might have seen the discussion on the list about protoc versions, this
>> only applies as we try to incorporate Hadoop 2.0 and YARN, because they
>> are dependent on an older version and the 2.5 release is not backwards
>> compatible. It seems like that has been solved thanks to Lisen's work, but
>> should not affect just running the build right now.
>>
>> -Jason
>>

Re: mvn clean install is failing

Posted by AnilKumar B <ak...@gmail.com>.
Thanks Jason.

I already installed protobuf.
user@ubuntu:~/Work/incubator-drill/sandbox/prototype$ protoc
Missing input file.


Even I tried with protobuf-2.5.0  & jdk-1.7, still I am getting following
error.
[INFO]
------------------------------------------------------------------------
[INFO] Building java-exec 1.0-SNAPSHOT
[INFO]
------------------------------------------------------------------------
[WARNING] The POM for com.twitter:parquet-column:jar:1.0.0-SNAPSHOT is
missing, no dependency information available
[INFO]
------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] prototype-parent .................................. SUCCESS [1.184s]
[INFO] common ............................................ SUCCESS [3.319s]
[INFO] contrib-parent .................................... SUCCESS [0.087s]
[INFO] pom ............................................... SUCCESS [0.182s]
[INFO] Netty/Drill/Buffer ................................ SUCCESS [0.943s]
[INFO] exec .............................................. SUCCESS [0.124s]
[INFO] java-exec ......................................... FAILURE [0.229s]
[INFO] Logical Plan Execution Reference Implementation ... SKIPPED
[INFO] planner ........................................... SKIPPED
[INFO] sqlparser ......................................... SKIPPED
[INFO]
------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO]
------------------------------------------------------------------------
[INFO] Total time: 6.300s
[INFO] Finished at: Mon Aug 05 12:34:54 EDT 2013
[INFO] Final Memory: 26M/62M
[INFO]
------------------------------------------------------------------------
[ERROR] Failed to execute goal on project java-exec: Could not resolve
dependencies for project org.apache.drill.exec:java-exec:jar:1.0-SNAPSHOT:
Failure to find com.twitter:parquet-column:jar:1.0.0-SNAPSHOT in
http://conjars.org/repo was cached in the local repository, resolution will
not be reattempted until the update interval of conjars has elapsed or
updates are forced -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e
switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.





Thanks & Regards,
B Anil Kumar.


On Mon, Aug 5, 2013 at 7:40 PM, Jason Altekruse <al...@gmail.com>wrote:

> Anil,
>
> The important line in the log is this one:
> on project common: 'protoc' failed.
>
> You need to install protoc on your machine to run the build, the version we
> are targeting is 2.5.
>
> You might have seen the discussion on the list about protoc versions, this
> only applies as we try to incorporate Hadoop 2.0 and YARN, because they
> are dependent on an older version and the 2.5 release is not backwards
> compatible. It seems like that has been solved thanks to Lisen's work, but
> should not affect just running the build right now.
>
> -Jason
>

Re: mvn clean install is failing

Posted by Jason Altekruse <al...@gmail.com>.
Anil,

The important line in the log is this one:
on project common: 'protoc' failed.

You need to install protoc on your machine to run the build, the version we
are targeting is 2.5.

You might have seen the discussion on the list about protoc versions, this
only applies as we try to incorporate Hadoop 2.0 and YARN, because they
are dependent on an older version and the 2.5 release is not backwards
compatible. It seems like that has been solved thanks to Lisen's work, but
should not affect just running the build right now.

-Jason