You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@kudu.apache.org by Jean-Daniel Cryans <jd...@apache.org> on 2016/06/02 02:09:04 UTC

[VOTE] Apache Kudu (incubating) 0.9.0 RC1

Hi,

We're happy to announce the first release candidate for Apache Kudu
(incubating) 0.9.0.

We are doing time-based releases leading up to 1.0.0 towards the end of the
summer, with one 0.x.0 release every two months.

The is a source-only release. The artifacts were staged here:
https://dist.apache.org/repos/dist/dev/incubator/kudu/0.9.0-RC1/

It was built from this tag:
https://git-wip-us.apache.org/repos/asf?p=incubator-kudu.git;a=commit;h=5f2bf643d8ce3d042aa3903543a92841077a6874

The release notes can be found here (some links will only work when this
version is released):
https://github.com/apache/incubator-kudu/blob/master/docs/release_notes.adoc#rn_0.9.0

KEYS file:
http://www.apache.org/dist/incubator/kudu/KEYS

I'd suggest going through the README, building Kudu, and running the unit
tests.

Please try the release and vote; vote will be open for at least 72 hours.

Thanks,

J-D

Re: [VOTE] Apache Kudu (incubating) 0.9.0 RC1

Posted by Jean-Daniel Cryans <jd...@apache.org>.
+1, I downloaded the tarball on a CentOS 6.4 machine, made sure the files
looked ok, compiled the Java client, made sure the md5 matched.

J-D

On Wed, Jun 1, 2016 at 7:09 PM, Jean-Daniel Cryans <jd...@apache.org>
wrote:

> Hi,
>
> We're happy to announce the first release candidate for Apache Kudu
> (incubating) 0.9.0.
>
> We are doing time-based releases leading up to 1.0.0 towards the end of
> the summer, with one 0.x.0 release every two months.
>
> The is a source-only release. The artifacts were staged here:
> https://dist.apache.org/repos/dist/dev/incubator/kudu/0.9.0-RC1/
>
> It was built from this tag:
>
> https://git-wip-us.apache.org/repos/asf?p=incubator-kudu.git;a=commit;h=5f2bf643d8ce3d042aa3903543a92841077a6874
>
> The release notes can be found here (some links will only work when this
> version is released):
>
> https://github.com/apache/incubator-kudu/blob/master/docs/release_notes.adoc#rn_0.9.0
>
> KEYS file:
> http://www.apache.org/dist/incubator/kudu/KEYS
>
> I'd suggest going through the README, building Kudu, and running the unit
> tests.
>
> Please try the release and vote; vote will be open for at least 72 hours.
>
> Thanks,
>
> J-D
>

Re: [VOTE] Apache Kudu (incubating) 0.9.0 RC1

Posted by Mike Percy <mp...@apache.org>.
While trying to build glog from thirdparty on Ubuntu Xenial, I am seeing
the following error:

libtool: compile:
 /home/mpercy/work/kudu/releases/apache-kudu-incubating-0.9.0/thirdparty/../build-support/ccache-clang/clang++
-DHAVE_CONFIG_H -I. -I./src -I./src -Wall -Wwrite-strings
-Woverloaded-virtual -Wno-sign-compare -DNO_FRAME_POINTER -DNDEBUG
-L/home/mpercy/work/kudu/releases/apache-kudu-incubating-0.9.0/thirdparty/installed-deps/gcc/lib
-isystem
/home/mpercy/work/kudu/releases/apache-kudu-incubating-0.9.0/thirdparty/installed-deps/gcc/include/c++/4.9.3
-isystem
/home/mpercy/work/kudu/releases/apache-kudu-incubating-0.9.0/thirdparty/installed-deps/gcc/include/c++/4.9.3/backward
-nostdinc++ -g
-I/home/mpercy/work/kudu/releases/apache-kudu-incubating-0.9.0/thirdparty/installed/include
-fno-omit-frame-pointer -O2 -D_GLIBCXX_USE_CXX11_ABI=0 -MT
src/libglog_la-signalhandler.lo -MD -MP -MF
src/.deps/libglog_la-signalhandler.Tpo -c src/signalhandler.cc  -fPIC -DPIC
-o src/.libs/libglog_la-signalhandler.o
In file included from src/raw_logging.cc:34:
./src/utilities.h:75:10: fatal error: 'string' file not found
#include <string>
         ^
1 error generated.
Makefile:1287: recipe for target 'src/logging_unittest-logging_unittest.o'
failed
make: *** [src/logging_unittest-logging_unittest.o] Error 1

Has anyone seen that one before?

Mike

Re: [VOTE] Apache Kudu (incubating) 0.9.0 RC1

Posted by Adar Dembo <ad...@cloudera.com>.
This is due to an (unfortunate) difference in semantics between the
two block managers in how each of them handles block existence:
- The log block manager uses a giant in-memory map. As such, it's easy
to guarantee that a block is only added to that map at the very end of
the block writing process, when the block is closed.
- The file block manager uses the underlying filesystem as its "map",
so a block "exists" from the moment that it's opened for writing, as
that's when the block's on-disk file is opened for writing too.

In this particular case, the test keeps its DeltaFileWriter in scope
when testing the block for existence. Regardless of the block manager,
WritableBlock::Abort() has yet to run, but because of the above
semantics, the log block manager cannot find the block while the file
block manager can.

A simple fix is to let the DeltaFileWriter go out of scope before
testing the block for existence. I tested this and the test passes
with both block managers. I'm happy to push it, but I wonder whether
the better approach would be to explicitly Abort() the block in
DeltaFileWriter::Finish() in the zero delta case. Todd, what do you
think?



On Fri, Jun 3, 2016 at 10:33 AM, Todd Lipcon <to...@cloudera.com> wrote:
> Misty's deltafile-test failure looks like a bug in FileBlockManager where
> Abort() isn't removing an in-progress block. I can repro on Linux if I use
> this block manager. Since this isn't recommended for production use, I dont
> think this failing test case is a big deal.
>
> -Todd
>
> On Fri, Jun 3, 2016 at 6:23 PM, Misty Stanley-Jones <
> mstanleyjones@cloudera.com> wrote:
>
>> I'll talk to myself and paste more relevant info about the test failure in
>> my previous email:
>>
>> [ RUN      ] TestDeltaFile.TestEmptyFileIsAborted
>> I0603 10:12:40.082170 2115547136 fs_manager.cc:345] Generated new instance
>> metadata in path /tmp/test/instance:
>> uuid: "566809d53e70414aac14dad13677795e"
>> format_stamp: "Formatted at 2016-06-03 17:12:40 on cheezel.local"
>> I0603 10:12:40.087999 2115547136 fs_manager.cc:242] Opened local
>> filesystem: /tmp/test
>> uuid: "566809d53e70414aac14dad13677795e"
>> format_stamp: "Formatted at 2016-06-03 17:12:40 on cheezel.local"
>>
>> /Users/misty/kudu_rc/apache-kudu-incubating-0.9.0/src/kudu/tablet/deltafile-test.cc:384:
>> Failure
>> Value of: s.IsNotFound()
>>   Actual: false
>> Expected: true
>> OK
>>
>> On Fri, Jun 3, 2016 at 10:16 AM, Misty Stanley-Jones <
>> mstanleyjones@cloudera.com> wrote:
>>
>> > +1
>> >
>> > Built on OSX, no problems.
>> > Several tests failed when I ran make test, but I got all of them but
>> > deltafile-test to pass when run individually. I think the failures
>> during make
>> > test are a known OSX issue. Here is the failure for deltafile-test:
>> >
>> > [  FAILED  ] TestDeltaFile.TestEmptyFileIsAborted (11 ms)
>> > [----------] 8 tests from TestDeltaFile (697 ms total)
>> >
>> > [----------] Global test environment tear-down
>> > [==========] 8 tests from 1 test case ran. (697 ms total)
>> > [  PASSED  ] 7 tests.
>> > [  FAILED  ] 1 test, listed below:
>> > [  FAILED  ] TestDeltaFile.TestEmptyFileIsAborted
>> >
>> > On Wed, Jun 1, 2016 at 7:09 PM, Jean-Daniel Cryans <jd...@apache.org>
>> > wrote:
>> >
>> >> Hi,
>> >>
>> >> We're happy to announce the first release candidate for Apache Kudu
>> >> (incubating) 0.9.0.
>> >>
>> >> We are doing time-based releases leading up to 1.0.0 towards the end of
>> >> the
>> >> summer, with one 0.x.0 release every two months.
>> >>
>> >> The is a source-only release. The artifacts were staged here:
>> >> https://dist.apache.org/repos/dist/dev/incubator/kudu/0.9.0-RC1/
>> >>
>> >> It was built from this tag:
>> >>
>> >>
>> https://git-wip-us.apache.org/repos/asf?p=incubator-kudu.git;a=commit;h=5f2bf643d8ce3d042aa3903543a92841077a6874
>> >>
>> >> The release notes can be found here (some links will only work when this
>> >> version is released):
>> >>
>> >>
>> https://github.com/apache/incubator-kudu/blob/master/docs/release_notes.adoc#rn_0.9.0
>> >>
>> >> KEYS file:
>> >> http://www.apache.org/dist/incubator/kudu/KEYS
>> >>
>> >> I'd suggest going through the README, building Kudu, and running the
>> unit
>> >> tests.
>> >>
>> >> Please try the release and vote; vote will be open for at least 72
>> hours.
>> >>
>> >> Thanks,
>> >>
>> >> J-D
>> >>
>> >
>> >
>>
>
>
>
> --
> Todd Lipcon
> Software Engineer, Cloudera

Re: [VOTE] Apache Kudu (incubating) 0.9.0 RC1

Posted by Todd Lipcon <to...@cloudera.com>.
Misty's deltafile-test failure looks like a bug in FileBlockManager where
Abort() isn't removing an in-progress block. I can repro on Linux if I use
this block manager. Since this isn't recommended for production use, I dont
think this failing test case is a big deal.

-Todd

On Fri, Jun 3, 2016 at 6:23 PM, Misty Stanley-Jones <
mstanleyjones@cloudera.com> wrote:

> I'll talk to myself and paste more relevant info about the test failure in
> my previous email:
>
> [ RUN      ] TestDeltaFile.TestEmptyFileIsAborted
> I0603 10:12:40.082170 2115547136 fs_manager.cc:345] Generated new instance
> metadata in path /tmp/test/instance:
> uuid: "566809d53e70414aac14dad13677795e"
> format_stamp: "Formatted at 2016-06-03 17:12:40 on cheezel.local"
> I0603 10:12:40.087999 2115547136 fs_manager.cc:242] Opened local
> filesystem: /tmp/test
> uuid: "566809d53e70414aac14dad13677795e"
> format_stamp: "Formatted at 2016-06-03 17:12:40 on cheezel.local"
>
> /Users/misty/kudu_rc/apache-kudu-incubating-0.9.0/src/kudu/tablet/deltafile-test.cc:384:
> Failure
> Value of: s.IsNotFound()
>   Actual: false
> Expected: true
> OK
>
> On Fri, Jun 3, 2016 at 10:16 AM, Misty Stanley-Jones <
> mstanleyjones@cloudera.com> wrote:
>
> > +1
> >
> > Built on OSX, no problems.
> > Several tests failed when I ran make test, but I got all of them but
> > deltafile-test to pass when run individually. I think the failures
> during make
> > test are a known OSX issue. Here is the failure for deltafile-test:
> >
> > [  FAILED  ] TestDeltaFile.TestEmptyFileIsAborted (11 ms)
> > [----------] 8 tests from TestDeltaFile (697 ms total)
> >
> > [----------] Global test environment tear-down
> > [==========] 8 tests from 1 test case ran. (697 ms total)
> > [  PASSED  ] 7 tests.
> > [  FAILED  ] 1 test, listed below:
> > [  FAILED  ] TestDeltaFile.TestEmptyFileIsAborted
> >
> > On Wed, Jun 1, 2016 at 7:09 PM, Jean-Daniel Cryans <jd...@apache.org>
> > wrote:
> >
> >> Hi,
> >>
> >> We're happy to announce the first release candidate for Apache Kudu
> >> (incubating) 0.9.0.
> >>
> >> We are doing time-based releases leading up to 1.0.0 towards the end of
> >> the
> >> summer, with one 0.x.0 release every two months.
> >>
> >> The is a source-only release. The artifacts were staged here:
> >> https://dist.apache.org/repos/dist/dev/incubator/kudu/0.9.0-RC1/
> >>
> >> It was built from this tag:
> >>
> >>
> https://git-wip-us.apache.org/repos/asf?p=incubator-kudu.git;a=commit;h=5f2bf643d8ce3d042aa3903543a92841077a6874
> >>
> >> The release notes can be found here (some links will only work when this
> >> version is released):
> >>
> >>
> https://github.com/apache/incubator-kudu/blob/master/docs/release_notes.adoc#rn_0.9.0
> >>
> >> KEYS file:
> >> http://www.apache.org/dist/incubator/kudu/KEYS
> >>
> >> I'd suggest going through the README, building Kudu, and running the
> unit
> >> tests.
> >>
> >> Please try the release and vote; vote will be open for at least 72
> hours.
> >>
> >> Thanks,
> >>
> >> J-D
> >>
> >
> >
>



-- 
Todd Lipcon
Software Engineer, Cloudera

Re: [VOTE] Apache Kudu (incubating) 0.9.0 RC1

Posted by Misty Stanley-Jones <ms...@cloudera.com>.
I'll talk to myself and paste more relevant info about the test failure in
my previous email:

[ RUN      ] TestDeltaFile.TestEmptyFileIsAborted
I0603 10:12:40.082170 2115547136 fs_manager.cc:345] Generated new instance
metadata in path /tmp/test/instance:
uuid: "566809d53e70414aac14dad13677795e"
format_stamp: "Formatted at 2016-06-03 17:12:40 on cheezel.local"
I0603 10:12:40.087999 2115547136 fs_manager.cc:242] Opened local
filesystem: /tmp/test
uuid: "566809d53e70414aac14dad13677795e"
format_stamp: "Formatted at 2016-06-03 17:12:40 on cheezel.local"
/Users/misty/kudu_rc/apache-kudu-incubating-0.9.0/src/kudu/tablet/deltafile-test.cc:384:
Failure
Value of: s.IsNotFound()
  Actual: false
Expected: true
OK

On Fri, Jun 3, 2016 at 10:16 AM, Misty Stanley-Jones <
mstanleyjones@cloudera.com> wrote:

> +1
>
> Built on OSX, no problems.
> Several tests failed when I ran make test, but I got all of them but
> deltafile-test to pass when run individually. I think the failures during make
> test are a known OSX issue. Here is the failure for deltafile-test:
>
> [  FAILED  ] TestDeltaFile.TestEmptyFileIsAborted (11 ms)
> [----------] 8 tests from TestDeltaFile (697 ms total)
>
> [----------] Global test environment tear-down
> [==========] 8 tests from 1 test case ran. (697 ms total)
> [  PASSED  ] 7 tests.
> [  FAILED  ] 1 test, listed below:
> [  FAILED  ] TestDeltaFile.TestEmptyFileIsAborted
>
> On Wed, Jun 1, 2016 at 7:09 PM, Jean-Daniel Cryans <jd...@apache.org>
> wrote:
>
>> Hi,
>>
>> We're happy to announce the first release candidate for Apache Kudu
>> (incubating) 0.9.0.
>>
>> We are doing time-based releases leading up to 1.0.0 towards the end of
>> the
>> summer, with one 0.x.0 release every two months.
>>
>> The is a source-only release. The artifacts were staged here:
>> https://dist.apache.org/repos/dist/dev/incubator/kudu/0.9.0-RC1/
>>
>> It was built from this tag:
>>
>> https://git-wip-us.apache.org/repos/asf?p=incubator-kudu.git;a=commit;h=5f2bf643d8ce3d042aa3903543a92841077a6874
>>
>> The release notes can be found here (some links will only work when this
>> version is released):
>>
>> https://github.com/apache/incubator-kudu/blob/master/docs/release_notes.adoc#rn_0.9.0
>>
>> KEYS file:
>> http://www.apache.org/dist/incubator/kudu/KEYS
>>
>> I'd suggest going through the README, building Kudu, and running the unit
>> tests.
>>
>> Please try the release and vote; vote will be open for at least 72 hours.
>>
>> Thanks,
>>
>> J-D
>>
>
>

Re: [VOTE] Apache Kudu (incubating) 0.9.0 RC1

Posted by Misty Stanley-Jones <ms...@cloudera.com>.
+1

Built on OSX, no problems.
Several tests failed when I ran make test, but I got all of them but
deltafile-test to pass when run individually. I think the failures during make
test are a known OSX issue. Here is the failure for deltafile-test:

[  FAILED  ] TestDeltaFile.TestEmptyFileIsAborted (11 ms)
[----------] 8 tests from TestDeltaFile (697 ms total)

[----------] Global test environment tear-down
[==========] 8 tests from 1 test case ran. (697 ms total)
[  PASSED  ] 7 tests.
[  FAILED  ] 1 test, listed below:
[  FAILED  ] TestDeltaFile.TestEmptyFileIsAborted

On Wed, Jun 1, 2016 at 7:09 PM, Jean-Daniel Cryans <jd...@apache.org>
wrote:

> Hi,
>
> We're happy to announce the first release candidate for Apache Kudu
> (incubating) 0.9.0.
>
> We are doing time-based releases leading up to 1.0.0 towards the end of the
> summer, with one 0.x.0 release every two months.
>
> The is a source-only release. The artifacts were staged here:
> https://dist.apache.org/repos/dist/dev/incubator/kudu/0.9.0-RC1/
>
> It was built from this tag:
>
> https://git-wip-us.apache.org/repos/asf?p=incubator-kudu.git;a=commit;h=5f2bf643d8ce3d042aa3903543a92841077a6874
>
> The release notes can be found here (some links will only work when this
> version is released):
>
> https://github.com/apache/incubator-kudu/blob/master/docs/release_notes.adoc#rn_0.9.0
>
> KEYS file:
> http://www.apache.org/dist/incubator/kudu/KEYS
>
> I'd suggest going through the README, building Kudu, and running the unit
> tests.
>
> Please try the release and vote; vote will be open for at least 72 hours.
>
> Thanks,
>
> J-D
>

Re: [VOTE] Apache Kudu (incubating) 0.9.0 RC1

Posted by Adar Dembo <ad...@cloudera.com>.
Yes. +1.

On Fri, Jun 3, 2016 at 1:54 PM, Jean-Daniel Cryans <jd...@apache.org> wrote:
> So are you changing your vote, Adar?
>
> On Fri, Jun 3, 2016 at 1:48 PM, Adar Dembo <ad...@cloudera.com> wrote:
>
>> I extracted the 0.8 tarball, rebuilt (release mode) and reran
>> linked_list-test. It failed in the same way in the second iteration.
>>
>> So, it doesn't seem like a regression, perhaps just something wrong
>> with Ubuntu 16.04.
>>
>> On Fri, Jun 3, 2016 at 2:40 AM, Todd Lipcon <to...@cloudera.com> wrote:
>> > I can take a look at the logs later today London-time. Adar, any chance
>> you
>> > can determine if the failures are a regression since 0.8 on your machine?
>> >
>> > On Fri, Jun 3, 2016 at 5:03 AM, Jean-Daniel Cryans <jd...@apache.org>
>> > wrote:
>> >
>> >> (wrote this on Slack but didn't get any reply, so reporting here)
>> >>
>> >> It looks like in the test where we read from 1 replica while the other 2
>> >> are down that we’re just not able to read from the live one. I can't
>> >> exactly tell why though, also I'm not familiar with debugging test. Can
>> >> anyone with more context take a look at it? Would really like to know if
>> >> it's a serious issue or not. FWIW the test dashboard doesn't show
>> >> linked_list-test as being super flaky:
>> >>
>> >>
>> http://dist-test.cloudera.org:8080/test_drilldown?test_name=linked_list-test
>> >>
>> >> On Thu, Jun 2, 2016 at 12:40 PM, Adar Dembo <ad...@cloudera.com> wrote:
>> >>
>> >> > +0
>> >> >
>> >> > I built a release build on Ubuntu 16.04. All tests passed except
>> >> > linked_list-test, which ran in ~60s and failed. I don't have time to
>> >> > triage the failure so I'm attaching the log instead.
>> >> >
>> >> > I ran it again three more times on its own. Twice it passed in ~25s.
>> >> > The third time it failed again in ~34s.
>> >> >
>> >> > On Wed, Jun 1, 2016 at 9:37 PM, Mattmann, Chris A (3980)
>> >> > <ch...@jpl.nasa.gov> wrote:
>> >> > > +1 from me! SIGS and checksums pass:
>> >> > >
>> >> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ curl -O
>> >> > https://people.apache.org/keys/group/kudu.asc
>> >> > >   % Total    % Received % Xferd  Average Speed   Time    Time
>>  Time
>> >> > Current
>> >> > >                                  Dload  Upload   Total   Spent
>> Left
>> >> > Speed
>> >> > > 100 18800  100 18800    0     0  12542      0  0:00:01  0:00:01
>> >> --:--:--
>> >> > 12550
>> >> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ gpg --import < kudu.asc
>> >> > > gpg: key 5EAF4B88: public key "Jean-Daniel Cryans (ASF key) <
>> >> > jdcryans@apache.org>" imported
>> >> > > gpg: key E72E74D3: public key "Andrew Wang <
>> andrew.wang@cloudera.com>"
>> >> > imported
>> >> > > gpg: key 7501105C: public key "Andrew Wang (CODE SIGNING KEY) <
>> >> > andrew.wang@cloudera.com>" imported
>> >> > > gpg: Total number processed: 3
>> >> > > gpg:               imported: 3  (RSA: 3)
>> >> > > gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
>> >> > > gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f,
>> 1u
>> >> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ $HOME/bin/stage_apache_rc
>> >> > apache-kudu-incubating 0.9.0
>> >> > https://dist.apache.org/repos/dist/dev/incubator/kudu/0.9.0-RC1/
>> >> > >   % Total    % Received % Xferd  Average Speed   Time    Time
>>  Time
>> >> > Current
>> >> > >                                  Dload  Upload   Total   Spent
>> Left
>> >> > Speed
>> >> > > 100 3765k  100 3765k    0     0  1440k      0  0:00:02  0:00:02
>> >> --:--:--
>> >> > 1440k
>> >> > >   % Total    % Received % Xferd  Average Speed   Time    Time
>>  Time
>> >> > Current
>> >> > >                                  Dload  Upload   Total   Spent
>> Left
>> >> > Speed
>> >> > > 100   473  100   473    0     0   1795      0 --:--:-- --:--:--
>> >> > --:--:--  1798
>> >> > >   % Total    % Received % Xferd  Average Speed   Time    Time
>>  Time
>> >> > Current
>> >> > >                                  Dload  Upload   Total   Spent
>> Left
>> >> > Speed
>> >> > > 100    69  100    69    0     0    267      0 --:--:-- --:--:--
>> >> > --:--:--   268
>> >> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ $HOME/bin/verify_gpg_sigs
>> >> > > Verifying Signature for file apache-kudu-incubating-0.9.0.tar.gz.asc
>> >> > > gpg: assuming signed data in `apache-kudu-incubating-0.9.0.tar.gz'
>> >> > > gpg: Signature made Wed Jun  1 18:52:20 2016 PDT using RSA key ID
>> >> > 00AD6CF3
>> >> > > gpg: Good signature from "Jean-Daniel Cryans (ASF key) <
>> >> > jdcryans@apache.org>"
>> >> > > gpg: WARNING: This key is not certified with a trusted signature!
>> >> > > gpg:          There is no indication that the signature belongs to
>> the
>> >> > owner.
>> >> > > Primary key fingerprint: E153 AF40 B446 17BB 27B7  DFEF 7C20 8DC1
>> 5EAF
>> >> > 4B88
>> >> > >      Subkey fingerprint: E0F9 436A 084F 6242 CAC0  E816 16EF 932E
>> 00AD
>> >> > 6CF3
>> >> > > Verifying Signature for file kudu.asc
>> >> > > gpg: verify signatures failed: unexpected data
>> >> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$
>> >> $HOME/bin/verify_md5_checksums
>> >> > > md5sum: stat '*.bz2': No such file or directory
>> >> > > md5sum: stat '*.zip': No such file or directory
>> >> > > md5sum: stat '*.tgz': No such file or directory
>> >> > > apache-kudu-incubating-0.9.0.tar.gz: OK
>> >> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$
>> >> > >
>> >> > >
>> >> > > Great work.
>> >> > >
>> >> > > Cheers,
>> >> > > Chris
>> >> > >
>> >> > > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>> >> > > Chris Mattmann, Ph.D.
>> >> > > Chief Architect
>> >> > > Instrument Software and Science Data Systems Section (398)
>> >> > > NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA
>> >> > > Office: 168-519, Mailstop: 168-527
>> >> > > Email: chris.a.mattmann@nasa.gov
>> >> > > WWW:  http://sunset.usc.edu/~mattmann/
>> >> > > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>> >> > > Director, Information Retrieval and Data Science Group (IRDS)
>> >> > > Adjunct Associate Professor, Computer Science Department
>> >> > > University of Southern California, Los Angeles, CA 90089 USA
>> >> > > WWW: http://irds.usc.edu/
>> >> > > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>> >> > >
>> >> > >
>> >> > >
>> >> > >
>> >> > >
>> >> > >
>> >> > >
>> >> > >
>> >> > >
>> >> > > On 6/1/16, 7:09 PM, "Jean-Daniel Cryans" <jd...@apache.org>
>> wrote:
>> >> > >
>> >> > >>Hi,
>> >> > >>
>> >> > >>We're happy to announce the first release candidate for Apache Kudu
>> >> > >>(incubating) 0.9.0.
>> >> > >>
>> >> > >>We are doing time-based releases leading up to 1.0.0 towards the
>> end of
>> >> > the
>> >> > >>summer, with one 0.x.0 release every two months.
>> >> > >>
>> >> > >>The is a source-only release. The artifacts were staged here:
>> >> > >>https://dist.apache.org/repos/dist/dev/incubator/kudu/0.9.0-RC1/
>> >> > >>
>> >> > >>It was built from this tag:
>> >> > >>
>> >> >
>> >>
>> https://git-wip-us.apache.org/repos/asf?p=incubator-kudu.git;a=commit;h=5f2bf643d8ce3d042aa3903543a92841077a6874
>> >> > >>
>> >> > >>The release notes can be found here (some links will only work when
>> >> this
>> >> > >>version is released):
>> >> > >>
>> >> >
>> >>
>> https://github.com/apache/incubator-kudu/blob/master/docs/release_notes.adoc#rn_0.9.0
>> >> > >>
>> >> > >>KEYS file:
>> >> > >>http://www.apache.org/dist/incubator/kudu/KEYS
>> >> > >>
>> >> > >>I'd suggest going through the README, building Kudu, and running the
>> >> unit
>> >> > >>tests.
>> >> > >>
>> >> > >>Please try the release and vote; vote will be open for at least 72
>> >> hours.
>> >> > >>
>> >> > >>Thanks,
>> >> > >>
>> >> > >>J-D
>> >> >
>> >>
>> >
>> >
>> >
>> > --
>> > Todd Lipcon
>> > Software Engineer, Cloudera
>>

Re: [VOTE] Apache Kudu (incubating) 0.9.0 RC1

Posted by Jean-Daniel Cryans <jd...@apache.org>.
So are you changing your vote, Adar?

On Fri, Jun 3, 2016 at 1:48 PM, Adar Dembo <ad...@cloudera.com> wrote:

> I extracted the 0.8 tarball, rebuilt (release mode) and reran
> linked_list-test. It failed in the same way in the second iteration.
>
> So, it doesn't seem like a regression, perhaps just something wrong
> with Ubuntu 16.04.
>
> On Fri, Jun 3, 2016 at 2:40 AM, Todd Lipcon <to...@cloudera.com> wrote:
> > I can take a look at the logs later today London-time. Adar, any chance
> you
> > can determine if the failures are a regression since 0.8 on your machine?
> >
> > On Fri, Jun 3, 2016 at 5:03 AM, Jean-Daniel Cryans <jd...@apache.org>
> > wrote:
> >
> >> (wrote this on Slack but didn't get any reply, so reporting here)
> >>
> >> It looks like in the test where we read from 1 replica while the other 2
> >> are down that we’re just not able to read from the live one. I can't
> >> exactly tell why though, also I'm not familiar with debugging test. Can
> >> anyone with more context take a look at it? Would really like to know if
> >> it's a serious issue or not. FWIW the test dashboard doesn't show
> >> linked_list-test as being super flaky:
> >>
> >>
> http://dist-test.cloudera.org:8080/test_drilldown?test_name=linked_list-test
> >>
> >> On Thu, Jun 2, 2016 at 12:40 PM, Adar Dembo <ad...@cloudera.com> wrote:
> >>
> >> > +0
> >> >
> >> > I built a release build on Ubuntu 16.04. All tests passed except
> >> > linked_list-test, which ran in ~60s and failed. I don't have time to
> >> > triage the failure so I'm attaching the log instead.
> >> >
> >> > I ran it again three more times on its own. Twice it passed in ~25s.
> >> > The third time it failed again in ~34s.
> >> >
> >> > On Wed, Jun 1, 2016 at 9:37 PM, Mattmann, Chris A (3980)
> >> > <ch...@jpl.nasa.gov> wrote:
> >> > > +1 from me! SIGS and checksums pass:
> >> > >
> >> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ curl -O
> >> > https://people.apache.org/keys/group/kudu.asc
> >> > >   % Total    % Received % Xferd  Average Speed   Time    Time
>  Time
> >> > Current
> >> > >                                  Dload  Upload   Total   Spent
> Left
> >> > Speed
> >> > > 100 18800  100 18800    0     0  12542      0  0:00:01  0:00:01
> >> --:--:--
> >> > 12550
> >> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ gpg --import < kudu.asc
> >> > > gpg: key 5EAF4B88: public key "Jean-Daniel Cryans (ASF key) <
> >> > jdcryans@apache.org>" imported
> >> > > gpg: key E72E74D3: public key "Andrew Wang <
> andrew.wang@cloudera.com>"
> >> > imported
> >> > > gpg: key 7501105C: public key "Andrew Wang (CODE SIGNING KEY) <
> >> > andrew.wang@cloudera.com>" imported
> >> > > gpg: Total number processed: 3
> >> > > gpg:               imported: 3  (RSA: 3)
> >> > > gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
> >> > > gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f,
> 1u
> >> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ $HOME/bin/stage_apache_rc
> >> > apache-kudu-incubating 0.9.0
> >> > https://dist.apache.org/repos/dist/dev/incubator/kudu/0.9.0-RC1/
> >> > >   % Total    % Received % Xferd  Average Speed   Time    Time
>  Time
> >> > Current
> >> > >                                  Dload  Upload   Total   Spent
> Left
> >> > Speed
> >> > > 100 3765k  100 3765k    0     0  1440k      0  0:00:02  0:00:02
> >> --:--:--
> >> > 1440k
> >> > >   % Total    % Received % Xferd  Average Speed   Time    Time
>  Time
> >> > Current
> >> > >                                  Dload  Upload   Total   Spent
> Left
> >> > Speed
> >> > > 100   473  100   473    0     0   1795      0 --:--:-- --:--:--
> >> > --:--:--  1798
> >> > >   % Total    % Received % Xferd  Average Speed   Time    Time
>  Time
> >> > Current
> >> > >                                  Dload  Upload   Total   Spent
> Left
> >> > Speed
> >> > > 100    69  100    69    0     0    267      0 --:--:-- --:--:--
> >> > --:--:--   268
> >> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ $HOME/bin/verify_gpg_sigs
> >> > > Verifying Signature for file apache-kudu-incubating-0.9.0.tar.gz.asc
> >> > > gpg: assuming signed data in `apache-kudu-incubating-0.9.0.tar.gz'
> >> > > gpg: Signature made Wed Jun  1 18:52:20 2016 PDT using RSA key ID
> >> > 00AD6CF3
> >> > > gpg: Good signature from "Jean-Daniel Cryans (ASF key) <
> >> > jdcryans@apache.org>"
> >> > > gpg: WARNING: This key is not certified with a trusted signature!
> >> > > gpg:          There is no indication that the signature belongs to
> the
> >> > owner.
> >> > > Primary key fingerprint: E153 AF40 B446 17BB 27B7  DFEF 7C20 8DC1
> 5EAF
> >> > 4B88
> >> > >      Subkey fingerprint: E0F9 436A 084F 6242 CAC0  E816 16EF 932E
> 00AD
> >> > 6CF3
> >> > > Verifying Signature for file kudu.asc
> >> > > gpg: verify signatures failed: unexpected data
> >> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$
> >> $HOME/bin/verify_md5_checksums
> >> > > md5sum: stat '*.bz2': No such file or directory
> >> > > md5sum: stat '*.zip': No such file or directory
> >> > > md5sum: stat '*.tgz': No such file or directory
> >> > > apache-kudu-incubating-0.9.0.tar.gz: OK
> >> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$
> >> > >
> >> > >
> >> > > Great work.
> >> > >
> >> > > Cheers,
> >> > > Chris
> >> > >
> >> > > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> >> > > Chris Mattmann, Ph.D.
> >> > > Chief Architect
> >> > > Instrument Software and Science Data Systems Section (398)
> >> > > NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA
> >> > > Office: 168-519, Mailstop: 168-527
> >> > > Email: chris.a.mattmann@nasa.gov
> >> > > WWW:  http://sunset.usc.edu/~mattmann/
> >> > > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> >> > > Director, Information Retrieval and Data Science Group (IRDS)
> >> > > Adjunct Associate Professor, Computer Science Department
> >> > > University of Southern California, Los Angeles, CA 90089 USA
> >> > > WWW: http://irds.usc.edu/
> >> > > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> >> > >
> >> > >
> >> > >
> >> > >
> >> > >
> >> > >
> >> > >
> >> > >
> >> > >
> >> > > On 6/1/16, 7:09 PM, "Jean-Daniel Cryans" <jd...@apache.org>
> wrote:
> >> > >
> >> > >>Hi,
> >> > >>
> >> > >>We're happy to announce the first release candidate for Apache Kudu
> >> > >>(incubating) 0.9.0.
> >> > >>
> >> > >>We are doing time-based releases leading up to 1.0.0 towards the
> end of
> >> > the
> >> > >>summer, with one 0.x.0 release every two months.
> >> > >>
> >> > >>The is a source-only release. The artifacts were staged here:
> >> > >>https://dist.apache.org/repos/dist/dev/incubator/kudu/0.9.0-RC1/
> >> > >>
> >> > >>It was built from this tag:
> >> > >>
> >> >
> >>
> https://git-wip-us.apache.org/repos/asf?p=incubator-kudu.git;a=commit;h=5f2bf643d8ce3d042aa3903543a92841077a6874
> >> > >>
> >> > >>The release notes can be found here (some links will only work when
> >> this
> >> > >>version is released):
> >> > >>
> >> >
> >>
> https://github.com/apache/incubator-kudu/blob/master/docs/release_notes.adoc#rn_0.9.0
> >> > >>
> >> > >>KEYS file:
> >> > >>http://www.apache.org/dist/incubator/kudu/KEYS
> >> > >>
> >> > >>I'd suggest going through the README, building Kudu, and running the
> >> unit
> >> > >>tests.
> >> > >>
> >> > >>Please try the release and vote; vote will be open for at least 72
> >> hours.
> >> > >>
> >> > >>Thanks,
> >> > >>
> >> > >>J-D
> >> >
> >>
> >
> >
> >
> > --
> > Todd Lipcon
> > Software Engineer, Cloudera
>

Re: [VOTE] Apache Kudu (incubating) 0.9.0 RC1

Posted by Adar Dembo <ad...@cloudera.com>.
I extracted the 0.8 tarball, rebuilt (release mode) and reran
linked_list-test. It failed in the same way in the second iteration.

So, it doesn't seem like a regression, perhaps just something wrong
with Ubuntu 16.04.

On Fri, Jun 3, 2016 at 2:40 AM, Todd Lipcon <to...@cloudera.com> wrote:
> I can take a look at the logs later today London-time. Adar, any chance you
> can determine if the failures are a regression since 0.8 on your machine?
>
> On Fri, Jun 3, 2016 at 5:03 AM, Jean-Daniel Cryans <jd...@apache.org>
> wrote:
>
>> (wrote this on Slack but didn't get any reply, so reporting here)
>>
>> It looks like in the test where we read from 1 replica while the other 2
>> are down that we’re just not able to read from the live one. I can't
>> exactly tell why though, also I'm not familiar with debugging test. Can
>> anyone with more context take a look at it? Would really like to know if
>> it's a serious issue or not. FWIW the test dashboard doesn't show
>> linked_list-test as being super flaky:
>>
>> http://dist-test.cloudera.org:8080/test_drilldown?test_name=linked_list-test
>>
>> On Thu, Jun 2, 2016 at 12:40 PM, Adar Dembo <ad...@cloudera.com> wrote:
>>
>> > +0
>> >
>> > I built a release build on Ubuntu 16.04. All tests passed except
>> > linked_list-test, which ran in ~60s and failed. I don't have time to
>> > triage the failure so I'm attaching the log instead.
>> >
>> > I ran it again three more times on its own. Twice it passed in ~25s.
>> > The third time it failed again in ~34s.
>> >
>> > On Wed, Jun 1, 2016 at 9:37 PM, Mattmann, Chris A (3980)
>> > <ch...@jpl.nasa.gov> wrote:
>> > > +1 from me! SIGS and checksums pass:
>> > >
>> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ curl -O
>> > https://people.apache.org/keys/group/kudu.asc
>> > >   % Total    % Received % Xferd  Average Speed   Time    Time     Time
>> > Current
>> > >                                  Dload  Upload   Total   Spent    Left
>> > Speed
>> > > 100 18800  100 18800    0     0  12542      0  0:00:01  0:00:01
>> --:--:--
>> > 12550
>> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ gpg --import < kudu.asc
>> > > gpg: key 5EAF4B88: public key "Jean-Daniel Cryans (ASF key) <
>> > jdcryans@apache.org>" imported
>> > > gpg: key E72E74D3: public key "Andrew Wang <an...@cloudera.com>"
>> > imported
>> > > gpg: key 7501105C: public key "Andrew Wang (CODE SIGNING KEY) <
>> > andrew.wang@cloudera.com>" imported
>> > > gpg: Total number processed: 3
>> > > gpg:               imported: 3  (RSA: 3)
>> > > gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
>> > > gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
>> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ $HOME/bin/stage_apache_rc
>> > apache-kudu-incubating 0.9.0
>> > https://dist.apache.org/repos/dist/dev/incubator/kudu/0.9.0-RC1/
>> > >   % Total    % Received % Xferd  Average Speed   Time    Time     Time
>> > Current
>> > >                                  Dload  Upload   Total   Spent    Left
>> > Speed
>> > > 100 3765k  100 3765k    0     0  1440k      0  0:00:02  0:00:02
>> --:--:--
>> > 1440k
>> > >   % Total    % Received % Xferd  Average Speed   Time    Time     Time
>> > Current
>> > >                                  Dload  Upload   Total   Spent    Left
>> > Speed
>> > > 100   473  100   473    0     0   1795      0 --:--:-- --:--:--
>> > --:--:--  1798
>> > >   % Total    % Received % Xferd  Average Speed   Time    Time     Time
>> > Current
>> > >                                  Dload  Upload   Total   Spent    Left
>> > Speed
>> > > 100    69  100    69    0     0    267      0 --:--:-- --:--:--
>> > --:--:--   268
>> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ $HOME/bin/verify_gpg_sigs
>> > > Verifying Signature for file apache-kudu-incubating-0.9.0.tar.gz.asc
>> > > gpg: assuming signed data in `apache-kudu-incubating-0.9.0.tar.gz'
>> > > gpg: Signature made Wed Jun  1 18:52:20 2016 PDT using RSA key ID
>> > 00AD6CF3
>> > > gpg: Good signature from "Jean-Daniel Cryans (ASF key) <
>> > jdcryans@apache.org>"
>> > > gpg: WARNING: This key is not certified with a trusted signature!
>> > > gpg:          There is no indication that the signature belongs to the
>> > owner.
>> > > Primary key fingerprint: E153 AF40 B446 17BB 27B7  DFEF 7C20 8DC1 5EAF
>> > 4B88
>> > >      Subkey fingerprint: E0F9 436A 084F 6242 CAC0  E816 16EF 932E 00AD
>> > 6CF3
>> > > Verifying Signature for file kudu.asc
>> > > gpg: verify signatures failed: unexpected data
>> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$
>> $HOME/bin/verify_md5_checksums
>> > > md5sum: stat '*.bz2': No such file or directory
>> > > md5sum: stat '*.zip': No such file or directory
>> > > md5sum: stat '*.tgz': No such file or directory
>> > > apache-kudu-incubating-0.9.0.tar.gz: OK
>> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$
>> > >
>> > >
>> > > Great work.
>> > >
>> > > Cheers,
>> > > Chris
>> > >
>> > > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>> > > Chris Mattmann, Ph.D.
>> > > Chief Architect
>> > > Instrument Software and Science Data Systems Section (398)
>> > > NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA
>> > > Office: 168-519, Mailstop: 168-527
>> > > Email: chris.a.mattmann@nasa.gov
>> > > WWW:  http://sunset.usc.edu/~mattmann/
>> > > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>> > > Director, Information Retrieval and Data Science Group (IRDS)
>> > > Adjunct Associate Professor, Computer Science Department
>> > > University of Southern California, Los Angeles, CA 90089 USA
>> > > WWW: http://irds.usc.edu/
>> > > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> > > On 6/1/16, 7:09 PM, "Jean-Daniel Cryans" <jd...@apache.org> wrote:
>> > >
>> > >>Hi,
>> > >>
>> > >>We're happy to announce the first release candidate for Apache Kudu
>> > >>(incubating) 0.9.0.
>> > >>
>> > >>We are doing time-based releases leading up to 1.0.0 towards the end of
>> > the
>> > >>summer, with one 0.x.0 release every two months.
>> > >>
>> > >>The is a source-only release. The artifacts were staged here:
>> > >>https://dist.apache.org/repos/dist/dev/incubator/kudu/0.9.0-RC1/
>> > >>
>> > >>It was built from this tag:
>> > >>
>> >
>> https://git-wip-us.apache.org/repos/asf?p=incubator-kudu.git;a=commit;h=5f2bf643d8ce3d042aa3903543a92841077a6874
>> > >>
>> > >>The release notes can be found here (some links will only work when
>> this
>> > >>version is released):
>> > >>
>> >
>> https://github.com/apache/incubator-kudu/blob/master/docs/release_notes.adoc#rn_0.9.0
>> > >>
>> > >>KEYS file:
>> > >>http://www.apache.org/dist/incubator/kudu/KEYS
>> > >>
>> > >>I'd suggest going through the README, building Kudu, and running the
>> unit
>> > >>tests.
>> > >>
>> > >>Please try the release and vote; vote will be open for at least 72
>> hours.
>> > >>
>> > >>Thanks,
>> > >>
>> > >>J-D
>> >
>>
>
>
>
> --
> Todd Lipcon
> Software Engineer, Cloudera

Re: [VOTE] Apache Kudu (incubating) 0.9.0 RC1

Posted by Todd Lipcon <to...@cloudera.com>.
I can take a look at the logs later today London-time. Adar, any chance you
can determine if the failures are a regression since 0.8 on your machine?

On Fri, Jun 3, 2016 at 5:03 AM, Jean-Daniel Cryans <jd...@apache.org>
wrote:

> (wrote this on Slack but didn't get any reply, so reporting here)
>
> It looks like in the test where we read from 1 replica while the other 2
> are down that we’re just not able to read from the live one. I can't
> exactly tell why though, also I'm not familiar with debugging test. Can
> anyone with more context take a look at it? Would really like to know if
> it's a serious issue or not. FWIW the test dashboard doesn't show
> linked_list-test as being super flaky:
>
> http://dist-test.cloudera.org:8080/test_drilldown?test_name=linked_list-test
>
> On Thu, Jun 2, 2016 at 12:40 PM, Adar Dembo <ad...@cloudera.com> wrote:
>
> > +0
> >
> > I built a release build on Ubuntu 16.04. All tests passed except
> > linked_list-test, which ran in ~60s and failed. I don't have time to
> > triage the failure so I'm attaching the log instead.
> >
> > I ran it again three more times on its own. Twice it passed in ~25s.
> > The third time it failed again in ~34s.
> >
> > On Wed, Jun 1, 2016 at 9:37 PM, Mattmann, Chris A (3980)
> > <ch...@jpl.nasa.gov> wrote:
> > > +1 from me! SIGS and checksums pass:
> > >
> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ curl -O
> > https://people.apache.org/keys/group/kudu.asc
> > >   % Total    % Received % Xferd  Average Speed   Time    Time     Time
> > Current
> > >                                  Dload  Upload   Total   Spent    Left
> > Speed
> > > 100 18800  100 18800    0     0  12542      0  0:00:01  0:00:01
> --:--:--
> > 12550
> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ gpg --import < kudu.asc
> > > gpg: key 5EAF4B88: public key "Jean-Daniel Cryans (ASF key) <
> > jdcryans@apache.org>" imported
> > > gpg: key E72E74D3: public key "Andrew Wang <an...@cloudera.com>"
> > imported
> > > gpg: key 7501105C: public key "Andrew Wang (CODE SIGNING KEY) <
> > andrew.wang@cloudera.com>" imported
> > > gpg: Total number processed: 3
> > > gpg:               imported: 3  (RSA: 3)
> > > gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
> > > gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ $HOME/bin/stage_apache_rc
> > apache-kudu-incubating 0.9.0
> > https://dist.apache.org/repos/dist/dev/incubator/kudu/0.9.0-RC1/
> > >   % Total    % Received % Xferd  Average Speed   Time    Time     Time
> > Current
> > >                                  Dload  Upload   Total   Spent    Left
> > Speed
> > > 100 3765k  100 3765k    0     0  1440k      0  0:00:02  0:00:02
> --:--:--
> > 1440k
> > >   % Total    % Received % Xferd  Average Speed   Time    Time     Time
> > Current
> > >                                  Dload  Upload   Total   Spent    Left
> > Speed
> > > 100   473  100   473    0     0   1795      0 --:--:-- --:--:--
> > --:--:--  1798
> > >   % Total    % Received % Xferd  Average Speed   Time    Time     Time
> > Current
> > >                                  Dload  Upload   Total   Spent    Left
> > Speed
> > > 100    69  100    69    0     0    267      0 --:--:-- --:--:--
> > --:--:--   268
> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ $HOME/bin/verify_gpg_sigs
> > > Verifying Signature for file apache-kudu-incubating-0.9.0.tar.gz.asc
> > > gpg: assuming signed data in `apache-kudu-incubating-0.9.0.tar.gz'
> > > gpg: Signature made Wed Jun  1 18:52:20 2016 PDT using RSA key ID
> > 00AD6CF3
> > > gpg: Good signature from "Jean-Daniel Cryans (ASF key) <
> > jdcryans@apache.org>"
> > > gpg: WARNING: This key is not certified with a trusted signature!
> > > gpg:          There is no indication that the signature belongs to the
> > owner.
> > > Primary key fingerprint: E153 AF40 B446 17BB 27B7  DFEF 7C20 8DC1 5EAF
> > 4B88
> > >      Subkey fingerprint: E0F9 436A 084F 6242 CAC0  E816 16EF 932E 00AD
> > 6CF3
> > > Verifying Signature for file kudu.asc
> > > gpg: verify signatures failed: unexpected data
> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$
> $HOME/bin/verify_md5_checksums
> > > md5sum: stat '*.bz2': No such file or directory
> > > md5sum: stat '*.zip': No such file or directory
> > > md5sum: stat '*.tgz': No such file or directory
> > > apache-kudu-incubating-0.9.0.tar.gz: OK
> > > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$
> > >
> > >
> > > Great work.
> > >
> > > Cheers,
> > > Chris
> > >
> > > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> > > Chris Mattmann, Ph.D.
> > > Chief Architect
> > > Instrument Software and Science Data Systems Section (398)
> > > NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA
> > > Office: 168-519, Mailstop: 168-527
> > > Email: chris.a.mattmann@nasa.gov
> > > WWW:  http://sunset.usc.edu/~mattmann/
> > > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> > > Director, Information Retrieval and Data Science Group (IRDS)
> > > Adjunct Associate Professor, Computer Science Department
> > > University of Southern California, Los Angeles, CA 90089 USA
> > > WWW: http://irds.usc.edu/
> > > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > On 6/1/16, 7:09 PM, "Jean-Daniel Cryans" <jd...@apache.org> wrote:
> > >
> > >>Hi,
> > >>
> > >>We're happy to announce the first release candidate for Apache Kudu
> > >>(incubating) 0.9.0.
> > >>
> > >>We are doing time-based releases leading up to 1.0.0 towards the end of
> > the
> > >>summer, with one 0.x.0 release every two months.
> > >>
> > >>The is a source-only release. The artifacts were staged here:
> > >>https://dist.apache.org/repos/dist/dev/incubator/kudu/0.9.0-RC1/
> > >>
> > >>It was built from this tag:
> > >>
> >
> https://git-wip-us.apache.org/repos/asf?p=incubator-kudu.git;a=commit;h=5f2bf643d8ce3d042aa3903543a92841077a6874
> > >>
> > >>The release notes can be found here (some links will only work when
> this
> > >>version is released):
> > >>
> >
> https://github.com/apache/incubator-kudu/blob/master/docs/release_notes.adoc#rn_0.9.0
> > >>
> > >>KEYS file:
> > >>http://www.apache.org/dist/incubator/kudu/KEYS
> > >>
> > >>I'd suggest going through the README, building Kudu, and running the
> unit
> > >>tests.
> > >>
> > >>Please try the release and vote; vote will be open for at least 72
> hours.
> > >>
> > >>Thanks,
> > >>
> > >>J-D
> >
>



-- 
Todd Lipcon
Software Engineer, Cloudera

Re: [VOTE] Apache Kudu (incubating) 0.9.0 RC1

Posted by Jean-Daniel Cryans <jd...@apache.org>.
(wrote this on Slack but didn't get any reply, so reporting here)

It looks like in the test where we read from 1 replica while the other 2
are down that we’re just not able to read from the live one. I can't
exactly tell why though, also I'm not familiar with debugging test. Can
anyone with more context take a look at it? Would really like to know if
it's a serious issue or not. FWIW the test dashboard doesn't show
linked_list-test as being super flaky:
http://dist-test.cloudera.org:8080/test_drilldown?test_name=linked_list-test

On Thu, Jun 2, 2016 at 12:40 PM, Adar Dembo <ad...@cloudera.com> wrote:

> +0
>
> I built a release build on Ubuntu 16.04. All tests passed except
> linked_list-test, which ran in ~60s and failed. I don't have time to
> triage the failure so I'm attaching the log instead.
>
> I ran it again three more times on its own. Twice it passed in ~25s.
> The third time it failed again in ~34s.
>
> On Wed, Jun 1, 2016 at 9:37 PM, Mattmann, Chris A (3980)
> <ch...@jpl.nasa.gov> wrote:
> > +1 from me! SIGS and checksums pass:
> >
> > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ curl -O
> https://people.apache.org/keys/group/kudu.asc
> >   % Total    % Received % Xferd  Average Speed   Time    Time     Time
> Current
> >                                  Dload  Upload   Total   Spent    Left
> Speed
> > 100 18800  100 18800    0     0  12542      0  0:00:01  0:00:01 --:--:--
> 12550
> > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ gpg --import < kudu.asc
> > gpg: key 5EAF4B88: public key "Jean-Daniel Cryans (ASF key) <
> jdcryans@apache.org>" imported
> > gpg: key E72E74D3: public key "Andrew Wang <an...@cloudera.com>"
> imported
> > gpg: key 7501105C: public key "Andrew Wang (CODE SIGNING KEY) <
> andrew.wang@cloudera.com>" imported
> > gpg: Total number processed: 3
> > gpg:               imported: 3  (RSA: 3)
> > gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
> > gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
> > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ $HOME/bin/stage_apache_rc
> apache-kudu-incubating 0.9.0
> https://dist.apache.org/repos/dist/dev/incubator/kudu/0.9.0-RC1/
> >   % Total    % Received % Xferd  Average Speed   Time    Time     Time
> Current
> >                                  Dload  Upload   Total   Spent    Left
> Speed
> > 100 3765k  100 3765k    0     0  1440k      0  0:00:02  0:00:02 --:--:--
> 1440k
> >   % Total    % Received % Xferd  Average Speed   Time    Time     Time
> Current
> >                                  Dload  Upload   Total   Spent    Left
> Speed
> > 100   473  100   473    0     0   1795      0 --:--:-- --:--:--
> --:--:--  1798
> >   % Total    % Received % Xferd  Average Speed   Time    Time     Time
> Current
> >                                  Dload  Upload   Total   Spent    Left
> Speed
> > 100    69  100    69    0     0    267      0 --:--:-- --:--:--
> --:--:--   268
> > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ $HOME/bin/verify_gpg_sigs
> > Verifying Signature for file apache-kudu-incubating-0.9.0.tar.gz.asc
> > gpg: assuming signed data in `apache-kudu-incubating-0.9.0.tar.gz'
> > gpg: Signature made Wed Jun  1 18:52:20 2016 PDT using RSA key ID
> 00AD6CF3
> > gpg: Good signature from "Jean-Daniel Cryans (ASF key) <
> jdcryans@apache.org>"
> > gpg: WARNING: This key is not certified with a trusted signature!
> > gpg:          There is no indication that the signature belongs to the
> owner.
> > Primary key fingerprint: E153 AF40 B446 17BB 27B7  DFEF 7C20 8DC1 5EAF
> 4B88
> >      Subkey fingerprint: E0F9 436A 084F 6242 CAC0  E816 16EF 932E 00AD
> 6CF3
> > Verifying Signature for file kudu.asc
> > gpg: verify signatures failed: unexpected data
> > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ $HOME/bin/verify_md5_checksums
> > md5sum: stat '*.bz2': No such file or directory
> > md5sum: stat '*.zip': No such file or directory
> > md5sum: stat '*.tgz': No such file or directory
> > apache-kudu-incubating-0.9.0.tar.gz: OK
> > LMC-053601:apache-kudu-0.9.0-RC1 mattmann$
> >
> >
> > Great work.
> >
> > Cheers,
> > Chris
> >
> > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> > Chris Mattmann, Ph.D.
> > Chief Architect
> > Instrument Software and Science Data Systems Section (398)
> > NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA
> > Office: 168-519, Mailstop: 168-527
> > Email: chris.a.mattmann@nasa.gov
> > WWW:  http://sunset.usc.edu/~mattmann/
> > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> > Director, Information Retrieval and Data Science Group (IRDS)
> > Adjunct Associate Professor, Computer Science Department
> > University of Southern California, Los Angeles, CA 90089 USA
> > WWW: http://irds.usc.edu/
> > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > On 6/1/16, 7:09 PM, "Jean-Daniel Cryans" <jd...@apache.org> wrote:
> >
> >>Hi,
> >>
> >>We're happy to announce the first release candidate for Apache Kudu
> >>(incubating) 0.9.0.
> >>
> >>We are doing time-based releases leading up to 1.0.0 towards the end of
> the
> >>summer, with one 0.x.0 release every two months.
> >>
> >>The is a source-only release. The artifacts were staged here:
> >>https://dist.apache.org/repos/dist/dev/incubator/kudu/0.9.0-RC1/
> >>
> >>It was built from this tag:
> >>
> https://git-wip-us.apache.org/repos/asf?p=incubator-kudu.git;a=commit;h=5f2bf643d8ce3d042aa3903543a92841077a6874
> >>
> >>The release notes can be found here (some links will only work when this
> >>version is released):
> >>
> https://github.com/apache/incubator-kudu/blob/master/docs/release_notes.adoc#rn_0.9.0
> >>
> >>KEYS file:
> >>http://www.apache.org/dist/incubator/kudu/KEYS
> >>
> >>I'd suggest going through the README, building Kudu, and running the unit
> >>tests.
> >>
> >>Please try the release and vote; vote will be open for at least 72 hours.
> >>
> >>Thanks,
> >>
> >>J-D
>

Re: [VOTE] Apache Kudu (incubating) 0.9.0 RC1

Posted by Adar Dembo <ad...@cloudera.com>.
+0

I built a release build on Ubuntu 16.04. All tests passed except
linked_list-test, which ran in ~60s and failed. I don't have time to
triage the failure so I'm attaching the log instead.

I ran it again three more times on its own. Twice it passed in ~25s.
The third time it failed again in ~34s.

On Wed, Jun 1, 2016 at 9:37 PM, Mattmann, Chris A (3980)
<ch...@jpl.nasa.gov> wrote:
> +1 from me! SIGS and checksums pass:
>
> LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ curl -O https://people.apache.org/keys/group/kudu.asc
>   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
>                                  Dload  Upload   Total   Spent    Left  Speed
> 100 18800  100 18800    0     0  12542      0  0:00:01  0:00:01 --:--:-- 12550
> LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ gpg --import < kudu.asc
> gpg: key 5EAF4B88: public key "Jean-Daniel Cryans (ASF key) <jd...@apache.org>" imported
> gpg: key E72E74D3: public key "Andrew Wang <an...@cloudera.com>" imported
> gpg: key 7501105C: public key "Andrew Wang (CODE SIGNING KEY) <an...@cloudera.com>" imported
> gpg: Total number processed: 3
> gpg:               imported: 3  (RSA: 3)
> gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
> gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
> LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ $HOME/bin/stage_apache_rc apache-kudu-incubating 0.9.0 https://dist.apache.org/repos/dist/dev/incubator/kudu/0.9.0-RC1/
>   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
>                                  Dload  Upload   Total   Spent    Left  Speed
> 100 3765k  100 3765k    0     0  1440k      0  0:00:02  0:00:02 --:--:-- 1440k
>   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
>                                  Dload  Upload   Total   Spent    Left  Speed
> 100   473  100   473    0     0   1795      0 --:--:-- --:--:-- --:--:--  1798
>   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
>                                  Dload  Upload   Total   Spent    Left  Speed
> 100    69  100    69    0     0    267      0 --:--:-- --:--:-- --:--:--   268
> LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ $HOME/bin/verify_gpg_sigs
> Verifying Signature for file apache-kudu-incubating-0.9.0.tar.gz.asc
> gpg: assuming signed data in `apache-kudu-incubating-0.9.0.tar.gz'
> gpg: Signature made Wed Jun  1 18:52:20 2016 PDT using RSA key ID 00AD6CF3
> gpg: Good signature from "Jean-Daniel Cryans (ASF key) <jd...@apache.org>"
> gpg: WARNING: This key is not certified with a trusted signature!
> gpg:          There is no indication that the signature belongs to the owner.
> Primary key fingerprint: E153 AF40 B446 17BB 27B7  DFEF 7C20 8DC1 5EAF 4B88
>      Subkey fingerprint: E0F9 436A 084F 6242 CAC0  E816 16EF 932E 00AD 6CF3
> Verifying Signature for file kudu.asc
> gpg: verify signatures failed: unexpected data
> LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ $HOME/bin/verify_md5_checksums
> md5sum: stat '*.bz2': No such file or directory
> md5sum: stat '*.zip': No such file or directory
> md5sum: stat '*.tgz': No such file or directory
> apache-kudu-incubating-0.9.0.tar.gz: OK
> LMC-053601:apache-kudu-0.9.0-RC1 mattmann$
>
>
> Great work.
>
> Cheers,
> Chris
>
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> Chris Mattmann, Ph.D.
> Chief Architect
> Instrument Software and Science Data Systems Section (398)
> NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA
> Office: 168-519, Mailstop: 168-527
> Email: chris.a.mattmann@nasa.gov
> WWW:  http://sunset.usc.edu/~mattmann/
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> Director, Information Retrieval and Data Science Group (IRDS)
> Adjunct Associate Professor, Computer Science Department
> University of Southern California, Los Angeles, CA 90089 USA
> WWW: http://irds.usc.edu/
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>
>
>
>
>
>
>
>
>
> On 6/1/16, 7:09 PM, "Jean-Daniel Cryans" <jd...@apache.org> wrote:
>
>>Hi,
>>
>>We're happy to announce the first release candidate for Apache Kudu
>>(incubating) 0.9.0.
>>
>>We are doing time-based releases leading up to 1.0.0 towards the end of the
>>summer, with one 0.x.0 release every two months.
>>
>>The is a source-only release. The artifacts were staged here:
>>https://dist.apache.org/repos/dist/dev/incubator/kudu/0.9.0-RC1/
>>
>>It was built from this tag:
>>https://git-wip-us.apache.org/repos/asf?p=incubator-kudu.git;a=commit;h=5f2bf643d8ce3d042aa3903543a92841077a6874
>>
>>The release notes can be found here (some links will only work when this
>>version is released):
>>https://github.com/apache/incubator-kudu/blob/master/docs/release_notes.adoc#rn_0.9.0
>>
>>KEYS file:
>>http://www.apache.org/dist/incubator/kudu/KEYS
>>
>>I'd suggest going through the README, building Kudu, and running the unit
>>tests.
>>
>>Please try the release and vote; vote will be open for at least 72 hours.
>>
>>Thanks,
>>
>>J-D

Re: [VOTE] Apache Kudu (incubating) 0.9.0 RC1

Posted by "Mattmann, Chris A (3980)" <ch...@jpl.nasa.gov>.
+1 from me! SIGS and checksums pass:

LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ curl -O https://people.apache.org/keys/group/kudu.asc
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 18800  100 18800    0     0  12542      0  0:00:01  0:00:01 --:--:-- 12550
LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ gpg --import < kudu.asc 
gpg: key 5EAF4B88: public key "Jean-Daniel Cryans (ASF key) <jd...@apache.org>" imported
gpg: key E72E74D3: public key "Andrew Wang <an...@cloudera.com>" imported
gpg: key 7501105C: public key "Andrew Wang (CODE SIGNING KEY) <an...@cloudera.com>" imported
gpg: Total number processed: 3
gpg:               imported: 3  (RSA: 3)
gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ $HOME/bin/stage_apache_rc apache-kudu-incubating 0.9.0 https://dist.apache.org/repos/dist/dev/incubator/kudu/0.9.0-RC1/
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 3765k  100 3765k    0     0  1440k      0  0:00:02  0:00:02 --:--:-- 1440k
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   473  100   473    0     0   1795      0 --:--:-- --:--:-- --:--:--  1798
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100    69  100    69    0     0    267      0 --:--:-- --:--:-- --:--:--   268
LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ $HOME/bin/verify_gpg_sigs
Verifying Signature for file apache-kudu-incubating-0.9.0.tar.gz.asc
gpg: assuming signed data in `apache-kudu-incubating-0.9.0.tar.gz'
gpg: Signature made Wed Jun  1 18:52:20 2016 PDT using RSA key ID 00AD6CF3
gpg: Good signature from "Jean-Daniel Cryans (ASF key) <jd...@apache.org>"
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: E153 AF40 B446 17BB 27B7  DFEF 7C20 8DC1 5EAF 4B88
     Subkey fingerprint: E0F9 436A 084F 6242 CAC0  E816 16EF 932E 00AD 6CF3
Verifying Signature for file kudu.asc
gpg: verify signatures failed: unexpected data
LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ $HOME/bin/verify_md5_checksums
md5sum: stat '*.bz2': No such file or directory
md5sum: stat '*.zip': No such file or directory
md5sum: stat '*.tgz': No such file or directory
apache-kudu-incubating-0.9.0.tar.gz: OK
LMC-053601:apache-kudu-0.9.0-RC1 mattmann$ 


Great work.

Cheers,
Chris

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Chris Mattmann, Ph.D.
Chief Architect
Instrument Software and Science Data Systems Section (398)
NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA
Office: 168-519, Mailstop: 168-527
Email: chris.a.mattmann@nasa.gov
WWW:  http://sunset.usc.edu/~mattmann/
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Director, Information Retrieval and Data Science Group (IRDS)
Adjunct Associate Professor, Computer Science Department
University of Southern California, Los Angeles, CA 90089 USA
WWW: http://irds.usc.edu/
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++









On 6/1/16, 7:09 PM, "Jean-Daniel Cryans" <jd...@apache.org> wrote:

>Hi,
>
>We're happy to announce the first release candidate for Apache Kudu
>(incubating) 0.9.0.
>
>We are doing time-based releases leading up to 1.0.0 towards the end of the
>summer, with one 0.x.0 release every two months.
>
>The is a source-only release. The artifacts were staged here:
>https://dist.apache.org/repos/dist/dev/incubator/kudu/0.9.0-RC1/
>
>It was built from this tag:
>https://git-wip-us.apache.org/repos/asf?p=incubator-kudu.git;a=commit;h=5f2bf643d8ce3d042aa3903543a92841077a6874
>
>The release notes can be found here (some links will only work when this
>version is released):
>https://github.com/apache/incubator-kudu/blob/master/docs/release_notes.adoc#rn_0.9.0
>
>KEYS file:
>http://www.apache.org/dist/incubator/kudu/KEYS
>
>I'd suggest going through the README, building Kudu, and running the unit
>tests.
>
>Please try the release and vote; vote will be open for at least 72 hours.
>
>Thanks,
>
>J-D