You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@orc.apache.org by Dongjoon Hyun <do...@gmail.com> on 2021/09/13 03:53:54 UTC

[VOTE] Release Apache ORC 1.5.13 (RC0)

Please vote on releasing the following candidate as Apache ORC version
1.5.13.

[ ] +1 Release this package as Apache ORC 1.5.13
[ ] -1 Do not release this package because ...

TAG:
https://github.com/apache/orc/releases/tag/release-1.5.13rc0

RELEASE FILES:
https://dist.apache.org/repos/dist/dev/orc/orc-1.5.13-rc0

STAGING REPOSITORY:
https://repository.apache.org/content/repositories/orgapacheorc-1050

LIST OF JIRA ISSUES:
https://issues.apache.org/jira/projects/ORC/versions/12349322

This vote will be open for 72 hours.

Thanks,
Dongjoon.

Re: [VOTE] Release Apache ORC 1.5.13 (RC0)

Posted by Dongjoon Hyun <do...@apache.org>.
Thank you all. I'll conclude this vote.

On 2021/09/15 16:55:46, Panos Garefalakis <pa...@gmail.com> wrote: 
> +1 (binding)
> 
> * Checked gpg sign & checksum
> * Built / tested Java lib with benchmark & analyze profiles on 1.5 branch
> 
> Cheers,
> Panagiotis
> 
> On Wed, Sep 15, 2021 at 4:59 AM William Hyun <wi...@apache.org> wrote:
> 
> > +1
> >
> > - Checked gpg sign and checksum
> > - Built and tested java from the source on mac env with Java8.
> >
> > William
> >
> > On 2021/09/14 23:29:32, "Owen O'Malley" <ow...@gmail.com> wrote:
> > > +1 (binding)
> > >
> > > * Checked sig & checksum
> > > * Ran the docker builds
> > > * Compiled with -Panalyze & -Pbenchmark and -Papache-release
> > >
> > > One annoyance is that TestByteRle.cc has a double semicolon that clang
> > > complains about and thus fails the ubuntu 20 with clang build.
> > >
> > > diff --git a/c++/test/TestByteRle.cc b/c++/test/TestByteRle.cc
> > > index 2c4d4e3d..cdb9cf2e 100644
> > > --- a/c++/test/TestByteRle.cc
> > > +++ b/c++/test/TestByteRle.cc
> > > @@ -1104,7 +1104,7 @@ TEST(BooleanRle, skipTestWithNulls) {
> > >        rle->skip(4);
> > >      }
> > >      rle->skip(0);
> > > -    data.assign(data.size(), -1);;
> > > +    data.assign(data.size(), -1);
> > >      rle->next(data.data(), data.size(), allNull.data());
> > >      for (size_t j = 0; j < data.size(); ++j) {
> > >        EXPECT_EQ(0, data[j]) << "Output wrong at " << i << ", " << j;
> > >
> > >
> > > On Tue, Sep 14, 2021 at 5:08 AM Dongjoon Hyun <do...@apache.org>
> > wrote:
> > >
> > > > +1
> > > >
> > > > 1. Shasum and gpg sig checked.
> > > > 2. Built and ran the C++/Java unit tests.
> > > > 3. Tested Java tools uber jar manually.
> > > > 4. Tested Java example uber jar manually.
> > > > 5. Apache Spark integration test passed
> > > >    (RC0 staging + Spark 3.1.3-SNAPSHOT)
> > > >    https://github.com/apache/spark/pull/33972
> > > >
> > > > Dongjoon
> > > >
> > > > On 2021/09/13 03:53:54, Dongjoon Hyun <do...@gmail.com> wrote:
> > > > > Please vote on releasing the following candidate as Apache ORC
> > version
> > > > > 1.5.13.
> > > > >
> > > > > [ ] +1 Release this package as Apache ORC 1.5.13
> > > > > [ ] -1 Do not release this package because ...
> > > > >
> > > > > TAG:
> > > > > https://github.com/apache/orc/releases/tag/release-1.5.13rc0
> > > > >
> > > > > RELEASE FILES:
> > > > > https://dist.apache.org/repos/dist/dev/orc/orc-1.5.13-rc0
> > > > >
> > > > > STAGING REPOSITORY:
> > > > > https://repository.apache.org/content/repositories/orgapacheorc-1050
> > > > >
> > > > > LIST OF JIRA ISSUES:
> > > > > https://issues.apache.org/jira/projects/ORC/versions/12349322
> > > > >
> > > > > This vote will be open for 72 hours.
> > > > >
> > > > > Thanks,
> > > > > Dongjoon.
> > > > >
> > > >
> > >
> >
> 

Re: [VOTE] Release Apache ORC 1.5.13 (RC0)

Posted by Panos Garefalakis <pa...@gmail.com>.
+1 (binding)

* Checked gpg sign & checksum
* Built / tested Java lib with benchmark & analyze profiles on 1.5 branch

Cheers,
Panagiotis

On Wed, Sep 15, 2021 at 4:59 AM William Hyun <wi...@apache.org> wrote:

> +1
>
> - Checked gpg sign and checksum
> - Built and tested java from the source on mac env with Java8.
>
> William
>
> On 2021/09/14 23:29:32, "Owen O'Malley" <ow...@gmail.com> wrote:
> > +1 (binding)
> >
> > * Checked sig & checksum
> > * Ran the docker builds
> > * Compiled with -Panalyze & -Pbenchmark and -Papache-release
> >
> > One annoyance is that TestByteRle.cc has a double semicolon that clang
> > complains about and thus fails the ubuntu 20 with clang build.
> >
> > diff --git a/c++/test/TestByteRle.cc b/c++/test/TestByteRle.cc
> > index 2c4d4e3d..cdb9cf2e 100644
> > --- a/c++/test/TestByteRle.cc
> > +++ b/c++/test/TestByteRle.cc
> > @@ -1104,7 +1104,7 @@ TEST(BooleanRle, skipTestWithNulls) {
> >        rle->skip(4);
> >      }
> >      rle->skip(0);
> > -    data.assign(data.size(), -1);;
> > +    data.assign(data.size(), -1);
> >      rle->next(data.data(), data.size(), allNull.data());
> >      for (size_t j = 0; j < data.size(); ++j) {
> >        EXPECT_EQ(0, data[j]) << "Output wrong at " << i << ", " << j;
> >
> >
> > On Tue, Sep 14, 2021 at 5:08 AM Dongjoon Hyun <do...@apache.org>
> wrote:
> >
> > > +1
> > >
> > > 1. Shasum and gpg sig checked.
> > > 2. Built and ran the C++/Java unit tests.
> > > 3. Tested Java tools uber jar manually.
> > > 4. Tested Java example uber jar manually.
> > > 5. Apache Spark integration test passed
> > >    (RC0 staging + Spark 3.1.3-SNAPSHOT)
> > >    https://github.com/apache/spark/pull/33972
> > >
> > > Dongjoon
> > >
> > > On 2021/09/13 03:53:54, Dongjoon Hyun <do...@gmail.com> wrote:
> > > > Please vote on releasing the following candidate as Apache ORC
> version
> > > > 1.5.13.
> > > >
> > > > [ ] +1 Release this package as Apache ORC 1.5.13
> > > > [ ] -1 Do not release this package because ...
> > > >
> > > > TAG:
> > > > https://github.com/apache/orc/releases/tag/release-1.5.13rc0
> > > >
> > > > RELEASE FILES:
> > > > https://dist.apache.org/repos/dist/dev/orc/orc-1.5.13-rc0
> > > >
> > > > STAGING REPOSITORY:
> > > > https://repository.apache.org/content/repositories/orgapacheorc-1050
> > > >
> > > > LIST OF JIRA ISSUES:
> > > > https://issues.apache.org/jira/projects/ORC/versions/12349322
> > > >
> > > > This vote will be open for 72 hours.
> > > >
> > > > Thanks,
> > > > Dongjoon.
> > > >
> > >
> >
>

Re: [VOTE] Release Apache ORC 1.5.13 (RC0)

Posted by William Hyun <wi...@apache.org>.
+1 

- Checked gpg sign and checksum
- Built and tested java from the source on mac env with Java8.

William

On 2021/09/14 23:29:32, "Owen O'Malley" <ow...@gmail.com> wrote: 
> +1 (binding)
> 
> * Checked sig & checksum
> * Ran the docker builds
> * Compiled with -Panalyze & -Pbenchmark and -Papache-release
> 
> One annoyance is that TestByteRle.cc has a double semicolon that clang
> complains about and thus fails the ubuntu 20 with clang build.
> 
> diff --git a/c++/test/TestByteRle.cc b/c++/test/TestByteRle.cc
> index 2c4d4e3d..cdb9cf2e 100644
> --- a/c++/test/TestByteRle.cc
> +++ b/c++/test/TestByteRle.cc
> @@ -1104,7 +1104,7 @@ TEST(BooleanRle, skipTestWithNulls) {
>        rle->skip(4);
>      }
>      rle->skip(0);
> -    data.assign(data.size(), -1);;
> +    data.assign(data.size(), -1);
>      rle->next(data.data(), data.size(), allNull.data());
>      for (size_t j = 0; j < data.size(); ++j) {
>        EXPECT_EQ(0, data[j]) << "Output wrong at " << i << ", " << j;
> 
> 
> On Tue, Sep 14, 2021 at 5:08 AM Dongjoon Hyun <do...@apache.org> wrote:
> 
> > +1
> >
> > 1. Shasum and gpg sig checked.
> > 2. Built and ran the C++/Java unit tests.
> > 3. Tested Java tools uber jar manually.
> > 4. Tested Java example uber jar manually.
> > 5. Apache Spark integration test passed
> >    (RC0 staging + Spark 3.1.3-SNAPSHOT)
> >    https://github.com/apache/spark/pull/33972
> >
> > Dongjoon
> >
> > On 2021/09/13 03:53:54, Dongjoon Hyun <do...@gmail.com> wrote:
> > > Please vote on releasing the following candidate as Apache ORC version
> > > 1.5.13.
> > >
> > > [ ] +1 Release this package as Apache ORC 1.5.13
> > > [ ] -1 Do not release this package because ...
> > >
> > > TAG:
> > > https://github.com/apache/orc/releases/tag/release-1.5.13rc0
> > >
> > > RELEASE FILES:
> > > https://dist.apache.org/repos/dist/dev/orc/orc-1.5.13-rc0
> > >
> > > STAGING REPOSITORY:
> > > https://repository.apache.org/content/repositories/orgapacheorc-1050
> > >
> > > LIST OF JIRA ISSUES:
> > > https://issues.apache.org/jira/projects/ORC/versions/12349322
> > >
> > > This vote will be open for 72 hours.
> > >
> > > Thanks,
> > > Dongjoon.
> > >
> >
> 

Re: [VOTE] Release Apache ORC 1.5.13 (RC0)

Posted by Owen O'Malley <ow...@gmail.com>.
+1 (binding)

* Checked sig & checksum
* Ran the docker builds
* Compiled with -Panalyze & -Pbenchmark and -Papache-release

One annoyance is that TestByteRle.cc has a double semicolon that clang
complains about and thus fails the ubuntu 20 with clang build.

diff --git a/c++/test/TestByteRle.cc b/c++/test/TestByteRle.cc
index 2c4d4e3d..cdb9cf2e 100644
--- a/c++/test/TestByteRle.cc
+++ b/c++/test/TestByteRle.cc
@@ -1104,7 +1104,7 @@ TEST(BooleanRle, skipTestWithNulls) {
       rle->skip(4);
     }
     rle->skip(0);
-    data.assign(data.size(), -1);;
+    data.assign(data.size(), -1);
     rle->next(data.data(), data.size(), allNull.data());
     for (size_t j = 0; j < data.size(); ++j) {
       EXPECT_EQ(0, data[j]) << "Output wrong at " << i << ", " << j;


On Tue, Sep 14, 2021 at 5:08 AM Dongjoon Hyun <do...@apache.org> wrote:

> +1
>
> 1. Shasum and gpg sig checked.
> 2. Built and ran the C++/Java unit tests.
> 3. Tested Java tools uber jar manually.
> 4. Tested Java example uber jar manually.
> 5. Apache Spark integration test passed
>    (RC0 staging + Spark 3.1.3-SNAPSHOT)
>    https://github.com/apache/spark/pull/33972
>
> Dongjoon
>
> On 2021/09/13 03:53:54, Dongjoon Hyun <do...@gmail.com> wrote:
> > Please vote on releasing the following candidate as Apache ORC version
> > 1.5.13.
> >
> > [ ] +1 Release this package as Apache ORC 1.5.13
> > [ ] -1 Do not release this package because ...
> >
> > TAG:
> > https://github.com/apache/orc/releases/tag/release-1.5.13rc0
> >
> > RELEASE FILES:
> > https://dist.apache.org/repos/dist/dev/orc/orc-1.5.13-rc0
> >
> > STAGING REPOSITORY:
> > https://repository.apache.org/content/repositories/orgapacheorc-1050
> >
> > LIST OF JIRA ISSUES:
> > https://issues.apache.org/jira/projects/ORC/versions/12349322
> >
> > This vote will be open for 72 hours.
> >
> > Thanks,
> > Dongjoon.
> >
>

Re: [VOTE] Release Apache ORC 1.5.13 (RC0)

Posted by Dongjoon Hyun <do...@apache.org>.
+1

1. Shasum and gpg sig checked.
2. Built and ran the C++/Java unit tests.
3. Tested Java tools uber jar manually.
4. Tested Java example uber jar manually.
5. Apache Spark integration test passed
   (RC0 staging + Spark 3.1.3-SNAPSHOT)
   https://github.com/apache/spark/pull/33972

Dongjoon

On 2021/09/13 03:53:54, Dongjoon Hyun <do...@gmail.com> wrote: 
> Please vote on releasing the following candidate as Apache ORC version
> 1.5.13.
> 
> [ ] +1 Release this package as Apache ORC 1.5.13
> [ ] -1 Do not release this package because ...
> 
> TAG:
> https://github.com/apache/orc/releases/tag/release-1.5.13rc0
> 
> RELEASE FILES:
> https://dist.apache.org/repos/dist/dev/orc/orc-1.5.13-rc0
> 
> STAGING REPOSITORY:
> https://repository.apache.org/content/repositories/orgapacheorc-1050
> 
> LIST OF JIRA ISSUES:
> https://issues.apache.org/jira/projects/ORC/versions/12349322
> 
> This vote will be open for 72 hours.
> 
> Thanks,
> Dongjoon.
>