You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@kudu.apache.org by Grant Henke <gh...@cloudera.com> on 2018/04/26 22:01:34 UTC

Kudu 1.7.1 Release

Hi Kudu dev community,

Since Kudu 1.7.0 was released a few important fixes have been found
and backported to Kudu 1.7.x. Therefore, I would like to propose a 1.7.1
release.

The fixes currently include:

   - [consensus] KUDU-2367 fix replica health report (310dbe0
   <https://github.com/apache/kudu/commit/310dbe0>)
   - KUDU-2377: cap GetResourceLimit return value at kint32max (66b8272
   <https://github.com/apache/kudu/commit/66b8272>)
   - KUDU-2379. java: exportAuthenticationCredentials must connect to the
   cluster (608b5a <https://github.com/apache/kudu/commit/608b5a>)
   - KUDU-2364 Add extra check in ksck for tserver ID (45b3f21
   <https://github.com/apache/kudu/commit/45b3f21>)
   - KUDU-2412: Fix python client compilation in el6 environments (4a3a2b
   <https://github.com/apache/kudu/commit/4a3a2b>)
   - KUDU-2378. Fix unaligned loads of int128 from rows (0ceaafe
   <https://github.com/apache/kudu/commit/0ceaafe>)
   - KUDU-2416: Fix PartialRow.setMin and add a unit test (1e49ac8
   <https://github.com/apache/kudu/commit/1e49ac8>)

Are there any other patches that we should be cherry-picking into 1.7.1?
Reminder that point-releases like this should be critical fixes (data loss,
incorrect results, crashes, etc) only.

I'll volunteer to RM this one. I plan to start a vote on RC1 on
Tuesday, May 1st.

Please let me know your thoughts on the above plan.

Thanks,
Grant

-- 
Grant Henke
Software Engineer | Cloudera
grant@cloudera.com | twitter.com/gchenke | linkedin.com/in/granthenke

Re: Kudu 1.7.1 Release

Posted by Grant Henke <gh...@cloudera.com>.
Good idea. I have cherry picked those patches via Gerrit and added you as a
reviewer.

Thank you,
Grant

On Thu, Apr 26, 2018 at 5:16 PM, Adar Lieber-Dembo <ad...@cloudera.com>
wrote:

> Thanks for volunteering, Grant.
>
> Here are a couple of other patches to consider. None of them will
> affect production use cases but improve the robustness of various test
> or test-running scripts:
> 3d73405 (build-and-test.sh: unbreak Python 2.6 based builds): needed
> for build-and-test.sh to pass on el6 machines.
> 3f194c3 (test_util: reset flags before cleaning test directory):
> needed for build-and-test.sh to run successfully.
> 70e1a9c (pstack_watcher: blacklist older versions of gdb): needed for
> pstack_watcher-test not to deadlock or timeout on el6 machines.
> baa1e67 (test_util: include shard number in test scratch directory
> name): needed so that retried flaky tests don't fail build-and-test.sh
> by leaving behind test directories.
>
>
> On Thu, Apr 26, 2018 at 3:01 PM, Grant Henke <gh...@cloudera.com> wrote:
> > Hi Kudu dev community,
> >
> > Since Kudu 1.7.0 was released a few important fixes have been found
> > and backported to Kudu 1.7.x. Therefore, I would like to propose a 1.7.1
> > release.
> >
> > The fixes currently include:
> >
> >    - [consensus] KUDU-2367 fix replica health report (310dbe0
> >    <https://github.com/apache/kudu/commit/310dbe0>)
> >    - KUDU-2377: cap GetResourceLimit return value at kint32max (66b8272
> >    <https://github.com/apache/kudu/commit/66b8272>)
> >    - KUDU-2379. java: exportAuthenticationCredentials must connect to
> the
> >    cluster (608b5a <https://github.com/apache/kudu/commit/608b5a>)
> >    - KUDU-2364 Add extra check in ksck for tserver ID (45b3f21
> >    <https://github.com/apache/kudu/commit/45b3f21>)
> >    - KUDU-2412: Fix python client compilation in el6 environments (4a3a2b
> >    <https://github.com/apache/kudu/commit/4a3a2b>)
> >    - KUDU-2378. Fix unaligned loads of int128 from rows (0ceaafe
> >    <https://github.com/apache/kudu/commit/0ceaafe>)
> >    - KUDU-2416: Fix PartialRow.setMin and add a unit test (1e49ac8
> >    <https://github.com/apache/kudu/commit/1e49ac8>)
> >
> > Are there any other patches that we should be cherry-picking into 1.7.1?
> > Reminder that point-releases like this should be critical fixes (data
> loss,
> > incorrect results, crashes, etc) only.
> >
> > I'll volunteer to RM this one. I plan to start a vote on RC1 on
> > Tuesday, May 1st.
> >
> > Please let me know your thoughts on the above plan.
> >
> > Thanks,
> > Grant
> >
> > --
> > Grant Henke
> > Software Engineer | Cloudera
> > grant@cloudera.com | twitter.com/gchenke | linkedin.com/in/granthenke
>



-- 
Grant Henke
Software Engineer | Cloudera
grant@cloudera.com | twitter.com/gchenke | linkedin.com/in/granthenke

Re: Kudu 1.7.1 Release

Posted by Adar Lieber-Dembo <ad...@cloudera.com>.
Thanks for volunteering, Grant.

Here are a couple of other patches to consider. None of them will
affect production use cases but improve the robustness of various test
or test-running scripts:
3d73405 (build-and-test.sh: unbreak Python 2.6 based builds): needed
for build-and-test.sh to pass on el6 machines.
3f194c3 (test_util: reset flags before cleaning test directory):
needed for build-and-test.sh to run successfully.
70e1a9c (pstack_watcher: blacklist older versions of gdb): needed for
pstack_watcher-test not to deadlock or timeout on el6 machines.
baa1e67 (test_util: include shard number in test scratch directory
name): needed so that retried flaky tests don't fail build-and-test.sh
by leaving behind test directories.


On Thu, Apr 26, 2018 at 3:01 PM, Grant Henke <gh...@cloudera.com> wrote:
> Hi Kudu dev community,
>
> Since Kudu 1.7.0 was released a few important fixes have been found
> and backported to Kudu 1.7.x. Therefore, I would like to propose a 1.7.1
> release.
>
> The fixes currently include:
>
>    - [consensus] KUDU-2367 fix replica health report (310dbe0
>    <https://github.com/apache/kudu/commit/310dbe0>)
>    - KUDU-2377: cap GetResourceLimit return value at kint32max (66b8272
>    <https://github.com/apache/kudu/commit/66b8272>)
>    - KUDU-2379. java: exportAuthenticationCredentials must connect to the
>    cluster (608b5a <https://github.com/apache/kudu/commit/608b5a>)
>    - KUDU-2364 Add extra check in ksck for tserver ID (45b3f21
>    <https://github.com/apache/kudu/commit/45b3f21>)
>    - KUDU-2412: Fix python client compilation in el6 environments (4a3a2b
>    <https://github.com/apache/kudu/commit/4a3a2b>)
>    - KUDU-2378. Fix unaligned loads of int128 from rows (0ceaafe
>    <https://github.com/apache/kudu/commit/0ceaafe>)
>    - KUDU-2416: Fix PartialRow.setMin and add a unit test (1e49ac8
>    <https://github.com/apache/kudu/commit/1e49ac8>)
>
> Are there any other patches that we should be cherry-picking into 1.7.1?
> Reminder that point-releases like this should be critical fixes (data loss,
> incorrect results, crashes, etc) only.
>
> I'll volunteer to RM this one. I plan to start a vote on RC1 on
> Tuesday, May 1st.
>
> Please let me know your thoughts on the above plan.
>
> Thanks,
> Grant
>
> --
> Grant Henke
> Software Engineer | Cloudera
> grant@cloudera.com | twitter.com/gchenke | linkedin.com/in/granthenke