[RESULT] [VOTE] 3.1.0 release candidate 1

2018-11-30 Thread Zoltan Borok-Nagy
https://lists.apache.org/thread.html/2b30333eb187e7453c152e2bac558713ad7993da11bf559697f590ee@%3Cdev.impala.apache.org%3E The vote has passed with the following tally: +1 (binding): * Jim Apple * Michael Ho * Michael Brown * Thomas Tauber-Marshall 0: None -1: None Thanks everyone for testing

[VOTE] 3.1.0 release candidate 1

2018-11-27 Thread Zoltan Borok-Nagy
This is a vote to release Impala 3.1.0 The artifacts for testing can be downloaded from: https://dist.apache.org/repos/dist/dev/impala/3.1.0/RC1/ Git tag: 3.1.0-rc1 Tree hash: 0fb7b90d5dad7aeedd48db28939b1999a7a3 Please vote +1 or -1. -1 votes should be accompanied by an explanation of the

Re: [DISCUSS] 3.1.0 release

2018-11-27 Thread Zoltan Borok-Nagy
. Thanks, Zoltan On Tue, Nov 27, 2018 at 2:23 AM Alexandra Rodoni wrote: > I count 10 doc commits since your last cherry-pick: > > [image: image.png] > Thanks! > > On Mon, Nov 19, 2018 at 8:28 AM Zoltan Borok-Nagy > wrote: > >> Hey Folks, >> >>

Re: [DISCUSS] 3.1.0 release

2018-11-19 Thread Zoltan Borok-Nagy
hen the docs are ready. BR, Zoltan On Mon, Nov 12, 2018 at 10:14 PM Alexandra Rodoni wrote: > I think about 7 working days will be enough to wrap up the doc work for > 3.1: > - TOPN query option > - SHUTDOWN command > - TIMEZONE changes > - Minor release-related work

[DISCUSS] 3.1.0 release

2018-11-05 Thread Zoltan Borok-Nagy
Hi Folks, It's been a while since we last released a minor version of Impala. 3.0.0 is out since May, and since then a couple of pretty cool features and a good number of improvements are checked in. I propose that we release 3.1.0 soon and I volunteer to be its release manager. Please speak up

Re: Re: New Impala committer - Quanlong Huang

2018-08-21 Thread Zoltan Borok-Nagy
Congrats Quanlong! On Tue, Aug 21, 2018 at 9:34 AM Gabor Kaszab wrote: > Congrats! > > On Sat, Aug 18, 2018 at 3:11 AM Quanlong Huang > wrote: > > > Thanks! Glad to work with you all!--Quanlong > > > > At 2018-08-18 03:09:38, "Yongjun Zhang" wrote: > > >Congratulations Quanlong! > > > > >

Re: Enabling automatic code review precommit job

2018-08-16 Thread Zoltan Borok-Nagy
. And > of course clean rebases can break compilation. > > - Tim > > > On Thu, Aug 16, 2018 at 5:33 AM, Zoltan Borok-Nagy < > borokna...@cloudera.com> > wrote: > > > Hi, > > > > I might have ran into a bug of gerrit-code-review-checks with this > change:

Re: Enabling automatic code review precommit job

2018-08-16 Thread Zoltan Borok-Nagy
Hi, I might have ran into a bug of gerrit-code-review-checks with this change: https://gerrit.cloudera.org/#/c/11160/ The job failed for PS 7, because it didn't contain bin/jenkins/build-only.sh. So I rebased and uploaded PS 8, but that didn't trigger gerrit-code-review-checks. So I went to

Re: #pragma once?

2018-08-02 Thread Zoltan Borok-Nagy
+1 for #pragma once since it's cleaner and less error-prone. Zoltan On Wed, Aug 1, 2018 at 11:03 PM Todd Lipcon wrote: > Yea, when we looked into it I recall that it worked fine on all compilers > from the last 10 years or something (in fact I remember using #pragma once > on Metrowerks

page index

2018-07-10 Thread Zoltan Borok-Nagy
Hi folks, I started to write a design doc about page skipping based on the Parquet page index . Impala already writes the page index since versions 2.13 and 3.1 ( IMPALA-5842 ).

Re: boost::scoped_ptr vs std::unique_ptr

2018-07-06 Thread Zoltan Borok-Nagy
longer if it was a more consequential or irreversible > decision, but I think even for more minor things there's no reason not to > wait longer. > > On Fri, Jul 6, 2018 at 4:03 AM, Zoltan Borok-Nagy < > borokna...@cloudera.com.invalid> wrote: > > > Hi, > > > > I'm also i

Re: boost::scoped_ptr vs std::unique_ptr

2018-07-06 Thread Zoltan Borok-Nagy
Hi, I'm also in favor of unique_ptr and maybe const unique_ptr. But I want to point out that the duration of the whole discussion was 1.5 hours. Maybe we could keep such threads open at least 24 hours to let anyone in the globe weigh in. BR, Zoltan On Fri, Jul 6, 2018 at 3:31 AM Jim Apple

Re: IMPALA-6981 (Set pthread names)

2018-06-25 Thread Zoltan Borok-Nagy
Hi Kushagra, Thanks for showing interest in the project! As a first step I recommend you to read the following wiki page: https://cwiki.apache.org/confluence/display/IMPALA/Contributing+to+Impala I also recommend you to read Jim Apple's letter for new contributors:

Re: New committers - Gabor Kaszab and Attila Jeges

2018-05-22 Thread Zoltan Borok-Nagy
Congrats, Gabor and Attila! BR, Zoltan On Fri, May 18, 2018 at 10:36 PM, Tim Armstrong wrote: > The Project Management Committee (PMC) for Apache Impala has invited Attila > and Gabor to become committers and we are pleased to announce that they > have accepted. > >

Re: Inconsistent float/double sort order in spec and implementations can lead to incorrect results

2018-02-16 Thread Zoltan Borok-Nagy
I would just like to mention that the fmax() / fmin() functions in C/C++ Math library follow the aforementioned IEEE 754-2008 min and max specification: http://en.cppreference.com/w/c/numeric/math/fmax I think this behavior is also the most intuitive and useful regarding to statistics. If we want

Re: Undefined Symbol: getJNIEnv

2018-01-05 Thread Zoltan Borok-Nagy
Hi, Did you source impala-config.sh on the other host? As Tim said in an other thread, getJNIEnv is defined in libhdfs.so. Search for the binary of catalogd by issuing: find -name catalogd -executable -not -type d Check for the libhdfs.so dynamic library on each hosts: ldd catalogd | grep