You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@impala.apache.org by Renato Marroquín Mogrovejo <re...@gmail.com> on 2018/09/30 19:09:24 UTC

Installing Impala

Hi all,

I am trying to install impala but I am getting an error regarding Thrift
but I am unsure where to start looking.
Thanks in advanced!


Best,

Renato M.

[ 17%] Linking CXX static library ../../build/debug/thrift/libImpalaThrift.a
[ 17%] Built target ImpalaThrift
Makefile:94: recipe for target 'all' failed
make: *** [all] Error 2
ERROR in /home/marenato/Documents/workspacePhd/Impala/bin/make_impala.sh at
line 188: ${MAKE_CMD} ${MAKE_ARGS}

Re: Installing Impala

Posted by Quanlong Huang <hu...@gmail.com>.
It looks like a configuration error. Do you check your core-site.xml? It's
in $IMPALA_HOME/fe/src/test/resources.

If it does not exist, you need to check whether
bin/create-test-configuration.sh was executed successfully.

On Wed, Oct 3, 2018 at 9:22 AM Renato Marroquín Mogrovejo <
renatoj.marroquin@gmail.com> wrote:

> I managed to go beyond the bootstrap_build script inside a docker image.
> now I get the following error when trying to do ./bin/start-impalad.sh
>
> .....
> Log line format: [IWEF]mmdd hh:mm:ss.uuuuuu threadid file:line] msg
> E1003 16:16:43.840633 15055 logging.cc:121] stderr will be logged to this
> file.
> 18/10/03 16:16:44 INFO util.JvmPauseMonitor: Starting JVM pause monitor
> E1003 16:16:45.983142 15055 impala-server.cc:304] Currently configured
> default filesystem: ProxyLocalFileSystem. fs.defaultFS (file:///) is not
> supported.Invalid short-circuit reads configuration:
>   - Impala cannot read or execute the parent directory of
> dfs.domain.socket.path
>
> E1003 16:16:45.983224 15055 impala-server.cc:307] Aborting Impala Server
> startup due to improper configuration. Impalad exiting.
>
> I saw that this https://issues.apache.org/jira/browse/IMPALA-7193 but I
> don't know where exactly I should start looking.
> Any ideas or pointers to any documentation on how to install/configure
> impala are highly appreciated!
>
>
> El dom., 30 sept. 2018 a las 23:17, Renato Marroquín Mogrovejo (<
> renatoj.marroquin@gmail.com>) escribió:
>
>> I see, and is there a way not to build kudu? I want to use Impala to read
>> data stored in HDFS, no need for Kudu or other input data sources.
>> Anyway I will try in a docker container as suggested and report back.
>> Thanks!
>>
>> El dom., 30 sept. 2018 a las 22:31, Jim Apple (<jb...@cloudera.com>)
>> escribió:
>>
>>> Th real error is here:
>>>
>>>
>>> /home/marenato/Documents/workspacePhd/Impala/be/src/kudu/util/protoc-gen-insertions:
>>> error while loading shared libraries: libgflags.so.2.2: cannot open
>>> shared object
>>> such file or directory
>>> --insertions_out: protoc-gen-insertions: Plugin failed with status code
>>> 127.
>>> be/src/kudu/util/CMakeFiles/pb_util_proto.dir/build.make:62: recipe
>>> for target 'be/src/kudu/util/pb_util.pb.cc' failed
>>> make[3]: *** [be/src/kudu/util/pb_util.pb.cc] Error 1
>>> CMakeFiles/Makefile2:4421: recipe for target
>>> 'be/src/kudu/util/CMakeFiles/pb_util_proto.dir/all' failed
>>> make[2]: *** [be/src/kudu/util/CMakeFiles/pb_util_proto.dir/all] Error 2
>>> make[2]: *** Waiting for unfinished jobs....
>>>
>>> I haven't seen this before. You might try in a Docker container,
>>> following the instructions in bin/bootstrap_system.sh.
>>>
>>> Mysterious build error are sometimes running out of disk or memory
>>> during the build, though.
>>> On Sun, Sep 30, 2018 at 1:22 PM Renato Marroquín Mogrovejo
>>> <re...@gmail.com> wrote:
>>> >
>>> > Thanks again Jim!
>>> >
>>> > 1. I was, but the latest error output is from running the script you
>>> mentioned.
>>> > 2. Here is: https://pastebin.com/kTwuLzC6
>>> > 3. Ubuntu 16.04
>>> > 4. Thrift version 0.9.3
>>> >
>>> >
>>> > El dom., 30 sept. 2018 a las 22:05, Jim Apple (<jb...@cloudera.com>)
>>> escribió:
>>> >>
>>> >> OK, coupla questions:
>>> >>
>>> >> 1. Are you following that  page or are you running the script I
>>> referenced?
>>> >>
>>> >> 2. What is the full build output?
>>> >>
>>> >> 3. What OS are you on?
>>> >>
>>> >> 4. What version of Thrift do you have installed?
>>> >> On Sun, Sep 30, 2018 at 1:02 PM Renato Marroquín Mogrovejo
>>> >> <re...@gmail.com> wrote:
>>> >> >
>>> >> > Thanks Jim for the prompt reply, but I am still getting errors
>>> around Thrift:
>>> >> >
>>> >> > [ 25%] Linking CXX shared library
>>> ../../build/debug/thrift/libImpalaThrift.so
>>> >> > [ 25%] Built target ImpalaThrift
>>> >> > CMakeFiles/Makefile2:7059: recipe for target
>>> 'be/src/service/CMakeFiles/impalad.dir/rule' failed
>>> >> > make[1]: *** [be/src/service/CMakeFiles/impalad.dir/rule] Error 2
>>> >> > Makefile:1806: recipe for target 'impalad' failed
>>> >> > make: *** [impalad] Error 2
>>> >> > ERROR in
>>> /home/marenato/Documents/workspacePhd/Impala/bin/make_impala.sh at line
>>> 190: ${MAKE_CMD} ${MAKE_ARGS} ${MAKE_TARGETS}
>>> >> >
>>> >> > I was trying to follow:
>>> >> > https://cwiki.apache.org/confluence/display/IMPALA/Building+Impala
>>> >> > Is there any other doc that I could also check? Thanks again!
>>> >> >
>>> >> >
>>> >> > Renato M.
>>> >> >
>>> >> >
>>> >> > El dom., 30 sept. 2018 a las 21:16, Jim Apple (<
>>> jbapple@cloudera.com>) escribió:
>>> >> >>
>>> >> >> You can run
>>> https://github.com/apache/impala/blob/master/bin/bootstrap_build.sh
>>> >> >> On Sun, Sep 30, 2018 at 12:09 PM Renato Marroquín Mogrovejo
>>> >> >> <re...@gmail.com> wrote:
>>> >> >> >
>>> >> >> > Hi all,
>>> >> >> >
>>> >> >> > I am trying to install impala but I am getting an error
>>> regarding Thrift but I am unsure where to start looking.
>>> >> >> > Thanks in advanced!
>>> >> >> >
>>> >> >> >
>>> >> >> > Best,
>>> >> >> >
>>> >> >> > Renato M.
>>> >> >> >
>>> >> >> > [ 17%] Linking CXX static library
>>> ../../build/debug/thrift/libImpalaThrift.a
>>> >> >> > [ 17%] Built target ImpalaThrift
>>> >> >> > Makefile:94: recipe for target 'all' failed
>>> >> >> > make: *** [all] Error 2
>>> >> >> > ERROR in
>>> /home/marenato/Documents/workspacePhd/Impala/bin/make_impala.sh at line
>>> 188: ${MAKE_CMD} ${MAKE_ARGS}
>>> >> >> >
>>>
>>

Re: Installing Impala

Posted by Renato Marroquín Mogrovejo <re...@gmail.com>.
I managed to go beyond the bootstrap_build script inside a docker image.
now I get the following error when trying to do ./bin/start-impalad.sh

.....
Log line format: [IWEF]mmdd hh:mm:ss.uuuuuu threadid file:line] msg
E1003 16:16:43.840633 15055 logging.cc:121] stderr will be logged to this
file.
18/10/03 16:16:44 INFO util.JvmPauseMonitor: Starting JVM pause monitor
E1003 16:16:45.983142 15055 impala-server.cc:304] Currently configured
default filesystem: ProxyLocalFileSystem. fs.defaultFS (file:///) is not
supported.Invalid short-circuit reads configuration:
  - Impala cannot read or execute the parent directory of
dfs.domain.socket.path

E1003 16:16:45.983224 15055 impala-server.cc:307] Aborting Impala Server
startup due to improper configuration. Impalad exiting.

I saw that this https://issues.apache.org/jira/browse/IMPALA-7193 but I
don't know where exactly I should start looking.
Any ideas or pointers to any documentation on how to install/configure
impala are highly appreciated!


El dom., 30 sept. 2018 a las 23:17, Renato Marroquín Mogrovejo (<
renatoj.marroquin@gmail.com>) escribió:

> I see, and is there a way not to build kudu? I want to use Impala to read
> data stored in HDFS, no need for Kudu or other input data sources.
> Anyway I will try in a docker container as suggested and report back.
> Thanks!
>
> El dom., 30 sept. 2018 a las 22:31, Jim Apple (<jb...@cloudera.com>)
> escribió:
>
>> Th real error is here:
>>
>>
>> /home/marenato/Documents/workspacePhd/Impala/be/src/kudu/util/protoc-gen-insertions:
>> error while loading shared libraries: libgflags.so.2.2: cannot open
>> shared object
>> such file or directory
>> --insertions_out: protoc-gen-insertions: Plugin failed with status code
>> 127.
>> be/src/kudu/util/CMakeFiles/pb_util_proto.dir/build.make:62: recipe
>> for target 'be/src/kudu/util/pb_util.pb.cc' failed
>> make[3]: *** [be/src/kudu/util/pb_util.pb.cc] Error 1
>> CMakeFiles/Makefile2:4421: recipe for target
>> 'be/src/kudu/util/CMakeFiles/pb_util_proto.dir/all' failed
>> make[2]: *** [be/src/kudu/util/CMakeFiles/pb_util_proto.dir/all] Error 2
>> make[2]: *** Waiting for unfinished jobs....
>>
>> I haven't seen this before. You might try in a Docker container,
>> following the instructions in bin/bootstrap_system.sh.
>>
>> Mysterious build error are sometimes running out of disk or memory
>> during the build, though.
>> On Sun, Sep 30, 2018 at 1:22 PM Renato Marroquín Mogrovejo
>> <re...@gmail.com> wrote:
>> >
>> > Thanks again Jim!
>> >
>> > 1. I was, but the latest error output is from running the script you
>> mentioned.
>> > 2. Here is: https://pastebin.com/kTwuLzC6
>> > 3. Ubuntu 16.04
>> > 4. Thrift version 0.9.3
>> >
>> >
>> > El dom., 30 sept. 2018 a las 22:05, Jim Apple (<jb...@cloudera.com>)
>> escribió:
>> >>
>> >> OK, coupla questions:
>> >>
>> >> 1. Are you following that  page or are you running the script I
>> referenced?
>> >>
>> >> 2. What is the full build output?
>> >>
>> >> 3. What OS are you on?
>> >>
>> >> 4. What version of Thrift do you have installed?
>> >> On Sun, Sep 30, 2018 at 1:02 PM Renato Marroquín Mogrovejo
>> >> <re...@gmail.com> wrote:
>> >> >
>> >> > Thanks Jim for the prompt reply, but I am still getting errors
>> around Thrift:
>> >> >
>> >> > [ 25%] Linking CXX shared library
>> ../../build/debug/thrift/libImpalaThrift.so
>> >> > [ 25%] Built target ImpalaThrift
>> >> > CMakeFiles/Makefile2:7059: recipe for target
>> 'be/src/service/CMakeFiles/impalad.dir/rule' failed
>> >> > make[1]: *** [be/src/service/CMakeFiles/impalad.dir/rule] Error 2
>> >> > Makefile:1806: recipe for target 'impalad' failed
>> >> > make: *** [impalad] Error 2
>> >> > ERROR in
>> /home/marenato/Documents/workspacePhd/Impala/bin/make_impala.sh at line
>> 190: ${MAKE_CMD} ${MAKE_ARGS} ${MAKE_TARGETS}
>> >> >
>> >> > I was trying to follow:
>> >> > https://cwiki.apache.org/confluence/display/IMPALA/Building+Impala
>> >> > Is there any other doc that I could also check? Thanks again!
>> >> >
>> >> >
>> >> > Renato M.
>> >> >
>> >> >
>> >> > El dom., 30 sept. 2018 a las 21:16, Jim Apple (<jb...@cloudera.com>)
>> escribió:
>> >> >>
>> >> >> You can run
>> https://github.com/apache/impala/blob/master/bin/bootstrap_build.sh
>> >> >> On Sun, Sep 30, 2018 at 12:09 PM Renato Marroquín Mogrovejo
>> >> >> <re...@gmail.com> wrote:
>> >> >> >
>> >> >> > Hi all,
>> >> >> >
>> >> >> > I am trying to install impala but I am getting an error regarding
>> Thrift but I am unsure where to start looking.
>> >> >> > Thanks in advanced!
>> >> >> >
>> >> >> >
>> >> >> > Best,
>> >> >> >
>> >> >> > Renato M.
>> >> >> >
>> >> >> > [ 17%] Linking CXX static library
>> ../../build/debug/thrift/libImpalaThrift.a
>> >> >> > [ 17%] Built target ImpalaThrift
>> >> >> > Makefile:94: recipe for target 'all' failed
>> >> >> > make: *** [all] Error 2
>> >> >> > ERROR in
>> /home/marenato/Documents/workspacePhd/Impala/bin/make_impala.sh at line
>> 188: ${MAKE_CMD} ${MAKE_ARGS}
>> >> >> >
>>
>

Re: Installing Impala

Posted by Renato Marroquín Mogrovejo <re...@gmail.com>.
I see, and is there a way not to build kudu? I want to use Impala to read
data stored in HDFS, no need for Kudu or other input data sources.
Anyway I will try in a docker container as suggested and report back.
Thanks!

El dom., 30 sept. 2018 a las 22:31, Jim Apple (<jb...@cloudera.com>)
escribió:

> Th real error is here:
>
>
> /home/marenato/Documents/workspacePhd/Impala/be/src/kudu/util/protoc-gen-insertions:
> error while loading shared libraries: libgflags.so.2.2: cannot open
> shared object
> such file or directory
> --insertions_out: protoc-gen-insertions: Plugin failed with status code
> 127.
> be/src/kudu/util/CMakeFiles/pb_util_proto.dir/build.make:62: recipe
> for target 'be/src/kudu/util/pb_util.pb.cc' failed
> make[3]: *** [be/src/kudu/util/pb_util.pb.cc] Error 1
> CMakeFiles/Makefile2:4421: recipe for target
> 'be/src/kudu/util/CMakeFiles/pb_util_proto.dir/all' failed
> make[2]: *** [be/src/kudu/util/CMakeFiles/pb_util_proto.dir/all] Error 2
> make[2]: *** Waiting for unfinished jobs....
>
> I haven't seen this before. You might try in a Docker container,
> following the instructions in bin/bootstrap_system.sh.
>
> Mysterious build error are sometimes running out of disk or memory
> during the build, though.
> On Sun, Sep 30, 2018 at 1:22 PM Renato Marroquín Mogrovejo
> <re...@gmail.com> wrote:
> >
> > Thanks again Jim!
> >
> > 1. I was, but the latest error output is from running the script you
> mentioned.
> > 2. Here is: https://pastebin.com/kTwuLzC6
> > 3. Ubuntu 16.04
> > 4. Thrift version 0.9.3
> >
> >
> > El dom., 30 sept. 2018 a las 22:05, Jim Apple (<jb...@cloudera.com>)
> escribió:
> >>
> >> OK, coupla questions:
> >>
> >> 1. Are you following that  page or are you running the script I
> referenced?
> >>
> >> 2. What is the full build output?
> >>
> >> 3. What OS are you on?
> >>
> >> 4. What version of Thrift do you have installed?
> >> On Sun, Sep 30, 2018 at 1:02 PM Renato Marroquín Mogrovejo
> >> <re...@gmail.com> wrote:
> >> >
> >> > Thanks Jim for the prompt reply, but I am still getting errors around
> Thrift:
> >> >
> >> > [ 25%] Linking CXX shared library
> ../../build/debug/thrift/libImpalaThrift.so
> >> > [ 25%] Built target ImpalaThrift
> >> > CMakeFiles/Makefile2:7059: recipe for target
> 'be/src/service/CMakeFiles/impalad.dir/rule' failed
> >> > make[1]: *** [be/src/service/CMakeFiles/impalad.dir/rule] Error 2
> >> > Makefile:1806: recipe for target 'impalad' failed
> >> > make: *** [impalad] Error 2
> >> > ERROR in
> /home/marenato/Documents/workspacePhd/Impala/bin/make_impala.sh at line
> 190: ${MAKE_CMD} ${MAKE_ARGS} ${MAKE_TARGETS}
> >> >
> >> > I was trying to follow:
> >> > https://cwiki.apache.org/confluence/display/IMPALA/Building+Impala
> >> > Is there any other doc that I could also check? Thanks again!
> >> >
> >> >
> >> > Renato M.
> >> >
> >> >
> >> > El dom., 30 sept. 2018 a las 21:16, Jim Apple (<jb...@cloudera.com>)
> escribió:
> >> >>
> >> >> You can run
> https://github.com/apache/impala/blob/master/bin/bootstrap_build.sh
> >> >> On Sun, Sep 30, 2018 at 12:09 PM Renato Marroquín Mogrovejo
> >> >> <re...@gmail.com> wrote:
> >> >> >
> >> >> > Hi all,
> >> >> >
> >> >> > I am trying to install impala but I am getting an error regarding
> Thrift but I am unsure where to start looking.
> >> >> > Thanks in advanced!
> >> >> >
> >> >> >
> >> >> > Best,
> >> >> >
> >> >> > Renato M.
> >> >> >
> >> >> > [ 17%] Linking CXX static library
> ../../build/debug/thrift/libImpalaThrift.a
> >> >> > [ 17%] Built target ImpalaThrift
> >> >> > Makefile:94: recipe for target 'all' failed
> >> >> > make: *** [all] Error 2
> >> >> > ERROR in
> /home/marenato/Documents/workspacePhd/Impala/bin/make_impala.sh at line
> 188: ${MAKE_CMD} ${MAKE_ARGS}
> >> >> >
>

Re: Installing Impala

Posted by Jim Apple <jb...@cloudera.com>.
Th real error is here:

/home/marenato/Documents/workspacePhd/Impala/be/src/kudu/util/protoc-gen-insertions:
error while loading shared libraries: libgflags.so.2.2: cannot open
shared object
such file or directory
--insertions_out: protoc-gen-insertions: Plugin failed with status code 127.
be/src/kudu/util/CMakeFiles/pb_util_proto.dir/build.make:62: recipe
for target 'be/src/kudu/util/pb_util.pb.cc' failed
make[3]: *** [be/src/kudu/util/pb_util.pb.cc] Error 1
CMakeFiles/Makefile2:4421: recipe for target
'be/src/kudu/util/CMakeFiles/pb_util_proto.dir/all' failed
make[2]: *** [be/src/kudu/util/CMakeFiles/pb_util_proto.dir/all] Error 2
make[2]: *** Waiting for unfinished jobs....

I haven't seen this before. You might try in a Docker container,
following the instructions in bin/bootstrap_system.sh.

Mysterious build error are sometimes running out of disk or memory
during the build, though.
On Sun, Sep 30, 2018 at 1:22 PM Renato Marroquín Mogrovejo
<re...@gmail.com> wrote:
>
> Thanks again Jim!
>
> 1. I was, but the latest error output is from running the script you mentioned.
> 2. Here is: https://pastebin.com/kTwuLzC6
> 3. Ubuntu 16.04
> 4. Thrift version 0.9.3
>
>
> El dom., 30 sept. 2018 a las 22:05, Jim Apple (<jb...@cloudera.com>) escribió:
>>
>> OK, coupla questions:
>>
>> 1. Are you following that  page or are you running the script I referenced?
>>
>> 2. What is the full build output?
>>
>> 3. What OS are you on?
>>
>> 4. What version of Thrift do you have installed?
>> On Sun, Sep 30, 2018 at 1:02 PM Renato Marroquín Mogrovejo
>> <re...@gmail.com> wrote:
>> >
>> > Thanks Jim for the prompt reply, but I am still getting errors around Thrift:
>> >
>> > [ 25%] Linking CXX shared library ../../build/debug/thrift/libImpalaThrift.so
>> > [ 25%] Built target ImpalaThrift
>> > CMakeFiles/Makefile2:7059: recipe for target 'be/src/service/CMakeFiles/impalad.dir/rule' failed
>> > make[1]: *** [be/src/service/CMakeFiles/impalad.dir/rule] Error 2
>> > Makefile:1806: recipe for target 'impalad' failed
>> > make: *** [impalad] Error 2
>> > ERROR in /home/marenato/Documents/workspacePhd/Impala/bin/make_impala.sh at line 190: ${MAKE_CMD} ${MAKE_ARGS} ${MAKE_TARGETS}
>> >
>> > I was trying to follow:
>> > https://cwiki.apache.org/confluence/display/IMPALA/Building+Impala
>> > Is there any other doc that I could also check? Thanks again!
>> >
>> >
>> > Renato M.
>> >
>> >
>> > El dom., 30 sept. 2018 a las 21:16, Jim Apple (<jb...@cloudera.com>) escribió:
>> >>
>> >> You can run https://github.com/apache/impala/blob/master/bin/bootstrap_build.sh
>> >> On Sun, Sep 30, 2018 at 12:09 PM Renato Marroquín Mogrovejo
>> >> <re...@gmail.com> wrote:
>> >> >
>> >> > Hi all,
>> >> >
>> >> > I am trying to install impala but I am getting an error regarding Thrift but I am unsure where to start looking.
>> >> > Thanks in advanced!
>> >> >
>> >> >
>> >> > Best,
>> >> >
>> >> > Renato M.
>> >> >
>> >> > [ 17%] Linking CXX static library ../../build/debug/thrift/libImpalaThrift.a
>> >> > [ 17%] Built target ImpalaThrift
>> >> > Makefile:94: recipe for target 'all' failed
>> >> > make: *** [all] Error 2
>> >> > ERROR in /home/marenato/Documents/workspacePhd/Impala/bin/make_impala.sh at line 188: ${MAKE_CMD} ${MAKE_ARGS}
>> >> >

Re: Installing Impala

Posted by Renato Marroquín Mogrovejo <re...@gmail.com>.
Thanks again Jim!

1. I was, but the latest error output is from running the script you
mentioned.
2. Here is: https://pastebin.com/kTwuLzC6
3. Ubuntu 16.04
4. Thrift version 0.9.3


El dom., 30 sept. 2018 a las 22:05, Jim Apple (<jb...@cloudera.com>)
escribió:

> OK, coupla questions:
>
> 1. Are you following that  page or are you running the script I referenced?
>
> 2. What is the full build output?
>
> 3. What OS are you on?
>
> 4. What version of Thrift do you have installed?
> On Sun, Sep 30, 2018 at 1:02 PM Renato Marroquín Mogrovejo
> <re...@gmail.com> wrote:
> >
> > Thanks Jim for the prompt reply, but I am still getting errors around
> Thrift:
> >
> > [ 25%] Linking CXX shared library
> ../../build/debug/thrift/libImpalaThrift.so
> > [ 25%] Built target ImpalaThrift
> > CMakeFiles/Makefile2:7059: recipe for target
> 'be/src/service/CMakeFiles/impalad.dir/rule' failed
> > make[1]: *** [be/src/service/CMakeFiles/impalad.dir/rule] Error 2
> > Makefile:1806: recipe for target 'impalad' failed
> > make: *** [impalad] Error 2
> > ERROR in /home/marenato/Documents/workspacePhd/Impala/bin/make_impala.sh
> at line 190: ${MAKE_CMD} ${MAKE_ARGS} ${MAKE_TARGETS}
> >
> > I was trying to follow:
> > https://cwiki.apache.org/confluence/display/IMPALA/Building+Impala
> > Is there any other doc that I could also check? Thanks again!
> >
> >
> > Renato M.
> >
> >
> > El dom., 30 sept. 2018 a las 21:16, Jim Apple (<jb...@cloudera.com>)
> escribió:
> >>
> >> You can run
> https://github.com/apache/impala/blob/master/bin/bootstrap_build.sh
> >> On Sun, Sep 30, 2018 at 12:09 PM Renato Marroquín Mogrovejo
> >> <re...@gmail.com> wrote:
> >> >
> >> > Hi all,
> >> >
> >> > I am trying to install impala but I am getting an error regarding
> Thrift but I am unsure where to start looking.
> >> > Thanks in advanced!
> >> >
> >> >
> >> > Best,
> >> >
> >> > Renato M.
> >> >
> >> > [ 17%] Linking CXX static library
> ../../build/debug/thrift/libImpalaThrift.a
> >> > [ 17%] Built target ImpalaThrift
> >> > Makefile:94: recipe for target 'all' failed
> >> > make: *** [all] Error 2
> >> > ERROR in
> /home/marenato/Documents/workspacePhd/Impala/bin/make_impala.sh at line
> 188: ${MAKE_CMD} ${MAKE_ARGS}
> >> >
>

Re: Installing Impala

Posted by Jim Apple <jb...@cloudera.com>.
OK, coupla questions:

1. Are you following that  page or are you running the script I referenced?

2. What is the full build output?

3. What OS are you on?

4. What version of Thrift do you have installed?
On Sun, Sep 30, 2018 at 1:02 PM Renato Marroquín Mogrovejo
<re...@gmail.com> wrote:
>
> Thanks Jim for the prompt reply, but I am still getting errors around Thrift:
>
> [ 25%] Linking CXX shared library ../../build/debug/thrift/libImpalaThrift.so
> [ 25%] Built target ImpalaThrift
> CMakeFiles/Makefile2:7059: recipe for target 'be/src/service/CMakeFiles/impalad.dir/rule' failed
> make[1]: *** [be/src/service/CMakeFiles/impalad.dir/rule] Error 2
> Makefile:1806: recipe for target 'impalad' failed
> make: *** [impalad] Error 2
> ERROR in /home/marenato/Documents/workspacePhd/Impala/bin/make_impala.sh at line 190: ${MAKE_CMD} ${MAKE_ARGS} ${MAKE_TARGETS}
>
> I was trying to follow:
> https://cwiki.apache.org/confluence/display/IMPALA/Building+Impala
> Is there any other doc that I could also check? Thanks again!
>
>
> Renato M.
>
>
> El dom., 30 sept. 2018 a las 21:16, Jim Apple (<jb...@cloudera.com>) escribió:
>>
>> You can run https://github.com/apache/impala/blob/master/bin/bootstrap_build.sh
>> On Sun, Sep 30, 2018 at 12:09 PM Renato Marroquín Mogrovejo
>> <re...@gmail.com> wrote:
>> >
>> > Hi all,
>> >
>> > I am trying to install impala but I am getting an error regarding Thrift but I am unsure where to start looking.
>> > Thanks in advanced!
>> >
>> >
>> > Best,
>> >
>> > Renato M.
>> >
>> > [ 17%] Linking CXX static library ../../build/debug/thrift/libImpalaThrift.a
>> > [ 17%] Built target ImpalaThrift
>> > Makefile:94: recipe for target 'all' failed
>> > make: *** [all] Error 2
>> > ERROR in /home/marenato/Documents/workspacePhd/Impala/bin/make_impala.sh at line 188: ${MAKE_CMD} ${MAKE_ARGS}
>> >

Re: Installing Impala

Posted by Renato Marroquín Mogrovejo <re...@gmail.com>.
Thanks Jim for the prompt reply, but I am still getting errors around
Thrift:

[ 25%] Linking CXX shared library
../../build/debug/thrift/libImpalaThrift.so
[ 25%] Built target ImpalaThrift
CMakeFiles/Makefile2:7059: recipe for target
'be/src/service/CMakeFiles/impalad.dir/rule' failed
make[1]: *** [be/src/service/CMakeFiles/impalad.dir/rule] Error 2
Makefile:1806: recipe for target 'impalad' failed
make: *** [impalad] Error 2
ERROR in /home/marenato/Documents/workspacePhd/Impala/bin/make_impala.sh at
line 190: ${MAKE_CMD} ${MAKE_ARGS} ${MAKE_TARGETS}

I was trying to follow:
https://cwiki.apache.org/confluence/display/IMPALA/Building+Impala
Is there any other doc that I could also check? Thanks again!


Renato M.


El dom., 30 sept. 2018 a las 21:16, Jim Apple (<jb...@cloudera.com>)
escribió:

> You can run
> https://github.com/apache/impala/blob/master/bin/bootstrap_build.sh
> On Sun, Sep 30, 2018 at 12:09 PM Renato Marroquín Mogrovejo
> <re...@gmail.com> wrote:
> >
> > Hi all,
> >
> > I am trying to install impala but I am getting an error regarding Thrift
> but I am unsure where to start looking.
> > Thanks in advanced!
> >
> >
> > Best,
> >
> > Renato M.
> >
> > [ 17%] Linking CXX static library
> ../../build/debug/thrift/libImpalaThrift.a
> > [ 17%] Built target ImpalaThrift
> > Makefile:94: recipe for target 'all' failed
> > make: *** [all] Error 2
> > ERROR in /home/marenato/Documents/workspacePhd/Impala/bin/make_impala.sh
> at line 188: ${MAKE_CMD} ${MAKE_ARGS}
> >
>

Re: Installing Impala

Posted by Jim Apple <jb...@cloudera.com>.
You can run https://github.com/apache/impala/blob/master/bin/bootstrap_build.sh
On Sun, Sep 30, 2018 at 12:09 PM Renato Marroquín Mogrovejo
<re...@gmail.com> wrote:
>
> Hi all,
>
> I am trying to install impala but I am getting an error regarding Thrift but I am unsure where to start looking.
> Thanks in advanced!
>
>
> Best,
>
> Renato M.
>
> [ 17%] Linking CXX static library ../../build/debug/thrift/libImpalaThrift.a
> [ 17%] Built target ImpalaThrift
> Makefile:94: recipe for target 'all' failed
> make: *** [all] Error 2
> ERROR in /home/marenato/Documents/workspacePhd/Impala/bin/make_impala.sh at line 188: ${MAKE_CMD} ${MAKE_ARGS}
>