Dist Area permissions problem

2017-07-17 Thread John D. Ament
All,

Please be advised that the infra team is aware of a permission problem that
is affecting podlings ability to write to the incubator dist area.  This
may cause you to be unable to create staged releases and promote those to
the public mirrors.  You can track the status in
https://issues.apache.org/jira/browse/INFRA-14609 .

Likewise, I want to make the podlings aware of a permission problem from
the weekend where git permissions were a little off.  That has since been
fixed.

Apologies for any inconvenience.

John


New Impala PPMC member: Michael Brown

2017-07-17 Thread Jim Apple
The Podling Project Management Committee (PPMC) for Apache Impala
(incubating) has invited Michael Brown to become a PPMC member and we are
pleased to announce that they have accepted.

Congratulations and welcome, Michael!


Re: Re: Impala hadoop variable

2017-07-17 Thread Tim Armstrong
I'm not sure that I fully understand the question.

There isn't a way to override HADOOP_CONF_DIR mostly  - most scripts source
impala-config.sh.

On Sun, Jul 16, 2017 at 8:31 PM, sky  wrote:

> Hi Tim,
> I found it from ./bin/create-test-configuration.sh that generating
> ./fe/src/test/resources configurations, and HADOOP_CONFIG_DIR variable also
> points to this directory. But I change this variable is not take effect. Is
> this a hard code?


Error of impala query empty parquet file

2017-07-17 Thread yu feng
Hi all,

   I always have a query error when I query a parquet table and the table
have a empty parquet file, which means the files only have footer
information and do not have any row group.

I check the code and find the code:

  if (file_metadata_.row_groups.empty()) {
return Status(
Substitute("Invalid file. This file: $0 has no row groups",
filename()));
  }

I want to modify the logic, If find a no-row-group file, I want to skip the
scan range and do not return any row-batch from the parquet-scanner, Is it
right to doing like this, and do you have some another suggestion about
the situation?

Thanks a lots