You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@impala.apache.org by Quanlong Huang <hu...@gmail.com> on 2023/02/17 22:44:00 UTC

[DISCUSS] Maintenance Release for Impala 4.1.2

Hi all,

Impala 4.1.1 was released in Oct. 2022. There are several bug fixes that
would be nice to be backported, e.g.

d3ece4433 IMPALA-11857: Connect join build fragment to join in graphical
plan

ff7b5db60 IMPALA-11081: Fix incorrect results in partition key scan

32536ba25 IMPALA-11845: (Addendum) Don't specify db name in the new struct
tests

0c1bd9eff IMPALA-11845: Fix incorrect check of struct STAR path in
resolvePathWithMasking

b0009db40 IMPALA-11843: Fix IndexOutOfBoundsException in analytic limit
pushdown

11068d9ae IMPALA-11811: Avoid storing unregistered predicate objects in a
Map

b816b6e39 IMPALA-11753: CatalogD OOMkilled due to natively allocated memory

6838e988a IMPALA-11696: Fix incorrect warnings of ignoring delimiters on
text/sequence tables

3c9d23a23 IMPALA-11707: Fix global runtime IN-list filter of numeric types
are AlwaysFalse

367378438 IMPALA-11744: Table mask view should preserve the original column
order in Hive

f8819ac7c IMPALA-11751: (Addendum) fix test for Ozone

bd9f44838 IMPALA-11751: Template tuple of Avro header should be transferred
to ScanRangeSharedState

77d80aeda IMPALA-11812: Deduplicate column schema in hmsPartitions

64efb7695 IMPALA-11779: Fix crash in TopNNode due to slots in null type

Though we have released 4.2.0 in Dec. 2022, the 4.1 branch can be
considered as a stable release since it's a better target for 3.x users to
upgrade to 4.x, e.g. Impala 4.1 depends on kudu 1.16, while Impala 4.2
depends on a snapshot version of Kudu.

I propose that we do a maintenance release for 4.1.2. What do you think? If
there are no objections, I volunteer to be the release manager of Impala
4.1.2.

Thanks,
Quanlong

Re: [DISCUSS] Maintenance Release for Impala 4.1.2

Posted by Quanlong Huang <hu...@gmail.com>.
Hi team,

I've prepared a branch here:
https://github.com/stiga-huang/impala/commits/branch-4.1.2
Here are the commits after 4.1.1 release:

5a96ffdb4 IMPALA-11795: Ignore high/low values stats for timestamp columns
43b01859b IMPALA-11751: (Addendum) fix test for Ozone
f3f0293df IMPALA-11751: Template tuple of Avro header should be transferred
to ScanRangeSharedState
794eb1ba4 IMPALA-11081: Fix incorrect results in partition key scan
c6223b2ae IMPALA-11953: Declare num_trues and num_falses in
TIntermediateColumnStats as optional
d85d34fc3 IMPALA-11914: Fix broken verbose explain on MT_DOP > 0
faae4a513 IMPALA-11845: (Addendum) Don't specify db name in the new struct
tests
555370e0c IMPALA-11845: Fix incorrect check of struct STAR path in
resolvePathWithMasking
588719d32 IMPALA-11857: Connect join build fragment to join in graphical
plan
4037f43f2 IMPALA-11843: Fix IndexOutOfBoundsException in analytic limit
pushdown
dff569b7e IMPALA-11779: Fix crash in TopNNode due to slots in null type
9bf8607ce IMPALA-11744: Table mask view should preserve the original column
order in Hive
b793f4197 IMPALA-11696: Fix incorrect warnings of ignoring delimiters on
text/sequence tables
d9cbfa873 IMPALA-11753: CatalogD OOMkilled due to natively allocated memory
4f284b0f1 IMPALA-11707: Fix global runtime IN-list filter of numeric types
are AlwaysFalse
ec7a834b3 IMPALA-11355: Add STRING overloads for
hour/minute/second/millisecond

I'll raise the vote thread after all tests pass. Please let me know if you
think something should be added/removed.

Thanks,
Quanlong


On Tue, Feb 21, 2023 at 1:49 AM Laszlo Gaal <la...@cloudera.com>
wrote:

> Yes, I think it's a good idea: keeping Impala pain-free for our users is
> something we should do.
>
> Thank you Quanlong for volunteering and curating a set of fixes; please let
> me know if I can help in any way.
>
>   - LaszloG
>
> On Mon, Feb 20, 2023 at 2:19 AM Jim Apple <ap...@jbapple.com> wrote:
>
> > SGTM
> >
> > On Fri, Feb 17, 2023 at 2:44 PM Quanlong Huang <hu...@gmail.com>
> > wrote:
> >
> > > Hi all,
> > >
> > > Impala 4.1.1 was released in Oct. 2022. There are several bug fixes
> that
> > > would be nice to be backported, e.g.
> > >
> > > d3ece4433 IMPALA-11857: Connect join build fragment to join in
> graphical
> > > plan
> > >
> > > ff7b5db60 IMPALA-11081: Fix incorrect results in partition key scan
> > >
> > > 32536ba25 IMPALA-11845: (Addendum) Don't specify db name in the new
> > struct
> > > tests
> > >
> > > 0c1bd9eff IMPALA-11845: Fix incorrect check of struct STAR path in
> > > resolvePathWithMasking
> > >
> > > b0009db40 IMPALA-11843: Fix IndexOutOfBoundsException in analytic limit
> > > pushdown
> > >
> > > 11068d9ae IMPALA-11811: Avoid storing unregistered predicate objects
> in a
> > > Map
> > >
> > > b816b6e39 IMPALA-11753: CatalogD OOMkilled due to natively allocated
> > memory
> > >
> > > 6838e988a IMPALA-11696: Fix incorrect warnings of ignoring delimiters
> on
> > > text/sequence tables
> > >
> > > 3c9d23a23 IMPALA-11707: Fix global runtime IN-list filter of numeric
> > types
> > > are AlwaysFalse
> > >
> > > 367378438 IMPALA-11744: Table mask view should preserve the original
> > column
> > > order in Hive
> > >
> > > f8819ac7c IMPALA-11751: (Addendum) fix test for Ozone
> > >
> > > bd9f44838 IMPALA-11751: Template tuple of Avro header should be
> > transferred
> > > to ScanRangeSharedState
> > >
> > > 77d80aeda IMPALA-11812: Deduplicate column schema in hmsPartitions
> > >
> > > 64efb7695 IMPALA-11779: Fix crash in TopNNode due to slots in null type
> > >
> > > Though we have released 4.2.0 in Dec. 2022, the 4.1 branch can be
> > > considered as a stable release since it's a better target for 3.x users
> > to
> > > upgrade to 4.x, e.g. Impala 4.1 depends on kudu 1.16, while Impala 4.2
> > > depends on a snapshot version of Kudu.
> > >
> > > I propose that we do a maintenance release for 4.1.2. What do you
> think?
> > If
> > > there are no objections, I volunteer to be the release manager of
> Impala
> > > 4.1.2.
> > >
> > > Thanks,
> > > Quanlong
> > >
> >
>

Re: [DISCUSS] Maintenance Release for Impala 4.1.2

Posted by Laszlo Gaal <la...@cloudera.com>.
Yes, I think it's a good idea: keeping Impala pain-free for our users is
something we should do.

Thank you Quanlong for volunteering and curating a set of fixes; please let
me know if I can help in any way.

  - LaszloG

On Mon, Feb 20, 2023 at 2:19 AM Jim Apple <ap...@jbapple.com> wrote:

> SGTM
>
> On Fri, Feb 17, 2023 at 2:44 PM Quanlong Huang <hu...@gmail.com>
> wrote:
>
> > Hi all,
> >
> > Impala 4.1.1 was released in Oct. 2022. There are several bug fixes that
> > would be nice to be backported, e.g.
> >
> > d3ece4433 IMPALA-11857: Connect join build fragment to join in graphical
> > plan
> >
> > ff7b5db60 IMPALA-11081: Fix incorrect results in partition key scan
> >
> > 32536ba25 IMPALA-11845: (Addendum) Don't specify db name in the new
> struct
> > tests
> >
> > 0c1bd9eff IMPALA-11845: Fix incorrect check of struct STAR path in
> > resolvePathWithMasking
> >
> > b0009db40 IMPALA-11843: Fix IndexOutOfBoundsException in analytic limit
> > pushdown
> >
> > 11068d9ae IMPALA-11811: Avoid storing unregistered predicate objects in a
> > Map
> >
> > b816b6e39 IMPALA-11753: CatalogD OOMkilled due to natively allocated
> memory
> >
> > 6838e988a IMPALA-11696: Fix incorrect warnings of ignoring delimiters on
> > text/sequence tables
> >
> > 3c9d23a23 IMPALA-11707: Fix global runtime IN-list filter of numeric
> types
> > are AlwaysFalse
> >
> > 367378438 IMPALA-11744: Table mask view should preserve the original
> column
> > order in Hive
> >
> > f8819ac7c IMPALA-11751: (Addendum) fix test for Ozone
> >
> > bd9f44838 IMPALA-11751: Template tuple of Avro header should be
> transferred
> > to ScanRangeSharedState
> >
> > 77d80aeda IMPALA-11812: Deduplicate column schema in hmsPartitions
> >
> > 64efb7695 IMPALA-11779: Fix crash in TopNNode due to slots in null type
> >
> > Though we have released 4.2.0 in Dec. 2022, the 4.1 branch can be
> > considered as a stable release since it's a better target for 3.x users
> to
> > upgrade to 4.x, e.g. Impala 4.1 depends on kudu 1.16, while Impala 4.2
> > depends on a snapshot version of Kudu.
> >
> > I propose that we do a maintenance release for 4.1.2. What do you think?
> If
> > there are no objections, I volunteer to be the release manager of Impala
> > 4.1.2.
> >
> > Thanks,
> > Quanlong
> >
>

Re: [DISCUSS] Maintenance Release for Impala 4.1.2

Posted by Jim Apple <ap...@jbapple.com>.
SGTM

On Fri, Feb 17, 2023 at 2:44 PM Quanlong Huang <hu...@gmail.com>
wrote:

> Hi all,
>
> Impala 4.1.1 was released in Oct. 2022. There are several bug fixes that
> would be nice to be backported, e.g.
>
> d3ece4433 IMPALA-11857: Connect join build fragment to join in graphical
> plan
>
> ff7b5db60 IMPALA-11081: Fix incorrect results in partition key scan
>
> 32536ba25 IMPALA-11845: (Addendum) Don't specify db name in the new struct
> tests
>
> 0c1bd9eff IMPALA-11845: Fix incorrect check of struct STAR path in
> resolvePathWithMasking
>
> b0009db40 IMPALA-11843: Fix IndexOutOfBoundsException in analytic limit
> pushdown
>
> 11068d9ae IMPALA-11811: Avoid storing unregistered predicate objects in a
> Map
>
> b816b6e39 IMPALA-11753: CatalogD OOMkilled due to natively allocated memory
>
> 6838e988a IMPALA-11696: Fix incorrect warnings of ignoring delimiters on
> text/sequence tables
>
> 3c9d23a23 IMPALA-11707: Fix global runtime IN-list filter of numeric types
> are AlwaysFalse
>
> 367378438 IMPALA-11744: Table mask view should preserve the original column
> order in Hive
>
> f8819ac7c IMPALA-11751: (Addendum) fix test for Ozone
>
> bd9f44838 IMPALA-11751: Template tuple of Avro header should be transferred
> to ScanRangeSharedState
>
> 77d80aeda IMPALA-11812: Deduplicate column schema in hmsPartitions
>
> 64efb7695 IMPALA-11779: Fix crash in TopNNode due to slots in null type
>
> Though we have released 4.2.0 in Dec. 2022, the 4.1 branch can be
> considered as a stable release since it's a better target for 3.x users to
> upgrade to 4.x, e.g. Impala 4.1 depends on kudu 1.16, while Impala 4.2
> depends on a snapshot version of Kudu.
>
> I propose that we do a maintenance release for 4.1.2. What do you think? If
> there are no objections, I volunteer to be the release manager of Impala
> 4.1.2.
>
> Thanks,
> Quanlong
>