RE: [MATLAB] arrow_13202 Enabling CI on Debian for MATLAB submissions

2021-07-29 Thread Sreehari Hegden
Thank you, Kou! I missed the mails earlier as my subscription to the mailing list was not completed. Thanks for notifying me about adding matlab-actions to allow list. I have created INFRA-22155 for the same. It's left Unassigned. Let me know

Re: [ANNOUNCE] New Arrow PMC member: Neville Dipale

2021-07-29 Thread Weston Pace
Congratulations Neville! On Thu, Jul 29, 2021 at 3:26 PM Eduardo Ponce wrote: > > Congratulations! > > ~Eduardo > > > > From: paddy horan > Sent: Thursday, July 29, 2021, 8:04 PM > To: dev@arrow.apache.org > Subject: Re: [ANNOUNCE] New Arrow PMC member: Neville

Re: [ANNOUNCE] New Arrow PMC member: Neville Dipale

2021-07-29 Thread Eduardo Ponce
Congratulations! ~Eduardo From: paddy horan Sent: Thursday, July 29, 2021, 8:04 PM To: dev@arrow.apache.org Subject: Re: [ANNOUNCE] New Arrow PMC member: Neville Dipale Congrats Neville! From: Wes McKinney Sent: Thursday, July

Re: [VOTE][RUST] Release Apache Arrow Rust 5.1.0 RC1

2021-07-29 Thread Sutou Kouhei
+1 I ran the following command line on Debian GNU/Linux sid: dev/release/verify-release-candidate.sh 5.1.0 1 Thanks, -- kou In "[VOTE][RUST] Release Apache Arrow Rust 5.1.0 RC1" on Thu, 29 Jul 2021 17:16:31 -0400, Andrew Lamb wrote: > Hi, > > I would like to propose a release of

Re: [ANNOUNCE] New Arrow PMC member: Neville Dipale

2021-07-29 Thread paddy horan
Congrats Neville! From: Wes McKinney Sent: Thursday, July 29, 2021 6:20 PM To: dev Subject: [ANNOUNCE] New Arrow PMC member: Neville Dipale The Project Management Committee (PMC) for Apache Arrow has invited Neville Dipale to become a PMC member and we are

Re: [ANNOUNCE] New Arrow PMC member: Neville Dipale

2021-07-29 Thread Neal Richardson
Congratulations! Neal On Thu, Jul 29, 2021 at 6:20 PM Wes McKinney wrote: > The Project Management Committee (PMC) for Apache Arrow has invited > Neville Dipale to become a PMC member and we are pleased to announce > that Neville has accepted. > > Congratulations and welcome! >

Re: JIRA Access

2021-07-29 Thread Wes McKinney
Done. On Thu, Jul 29, 2021 at 6:05 PM Keith Kraus wrote: > > Hello, > > Could someone give me access to assign myself to JIRA issues? > > Would like to assign myself to > https://issues.apache.org/jira/browse/ARROW-13500. > > Thanks! > Keith

JIRA Access

2021-07-29 Thread Keith Kraus
Hello, Could someone give me access to assign myself to JIRA issues? Would like to assign myself to https://issues.apache.org/jira/browse/ARROW-13500. Thanks! Keith

[ANNOUNCE] New Arrow PMC member: Neville Dipale

2021-07-29 Thread Wes McKinney
The Project Management Committee (PMC) for Apache Arrow has invited Neville Dipale to become a PMC member and we are pleased to announce that Neville has accepted. Congratulations and welcome!

Re: [VOTE][RESULT] Release Apache Arrow 5.0.0 - RC1

2021-07-29 Thread Ian Cook
The vcpkg port is updated in https://github.com/microsoft/vcpkg/pull/19229. Waiting for the vcpkg maintainers to merge it. Ian On Thu, Jul 29, 2021 at 3:19 PM Neal Richardson wrote: > > Just as a matter of course, I've created a 5.0.1 Fix Version in JIRA--not a > commitment to doing a patch

Re: [DISCUSS] What tools go in the Arrow toolbox (i.e. git repo)

2021-07-29 Thread Wes McKinney
As the project grows bigger and bigger, I think we should definitely make room for the "contrib" concept to exist. For example, postgresql has a contrib package consisting of an assortment of extensions within the postgresql ecosystem [1]. Of course, for any "contrib" component, there should be

[VOTE][RUST] Release Apache Arrow Rust 5.1.0 RC1

2021-07-29 Thread Andrew Lamb
Hi, I would like to propose a release of Apache Arrow Rust Implementation, version 5.1.0. This release candidate is based on commit: 64c78b89fd170a152f9e509dfa36d44685c0dc90 [1] The proposed release tarball and signatures are hosted at [2]. The changelog is located at [3]. Please download,

[DISCUSS] Datasets API plugins?

2021-07-29 Thread Weston Pace
In reviewing the RADOS PR I ran into another question. I recently sent an email on the topic where the author wants their integration to be part of the Arrow repo (I believe this is the case for the RADOS PR). However, what about the case where the author doesn't want to be part of the Gibhub

[DISCUSS] What tools go in the Arrow toolbox (i.e. git repo)

2021-07-29 Thread Weston Pace
In reviewing the RADOS PR (which I think is very cool) I am running into some interesting questions that might be good to flesh out here. The first of which is related to the scope of the Github repo. For context the RADOS PR introduces a Ceph object class (a plugin for CephFS, a cloud based

Re: [C++][Discuss] Representing null union scalars

2021-07-29 Thread David Li
Since we can have duplicate types in a union, having UnionScalar to disambiguate the right type code would still be useful, I think. -David On Thu, Jul 29, 2021, at 14:51, Wes McKinney wrote: > Sort of a related question is whether UnionScalar needs to exist at > all, versus returning the

Re: [VOTE][RESULT] Release Apache Arrow 5.0.0 - RC1

2021-07-29 Thread Neal Richardson
Just as a matter of course, I've created a 5.0.1 Fix Version in JIRA--not a commitment to doing a patch release, just so that we can collect any critical issues that may arise. Neal On Thu, Jul 29, 2021 at 7:52 AM Neal Richardson wrote: > R package is now on CRAN. > > Current status of the

Re: [C++][Discuss] Representing null union scalars

2021-07-29 Thread Wes McKinney
Sort of a related question is whether UnionScalar needs to exist at all, versus returning the "unboxed" scalar from the corresponding array to the requested value slot (e.g. if it's a union of int and string, return either IntXScalar or StringScalar) On Thu, Jul 29, 2021 at 10:37 AM Antoine

Re: [C++][Discuss] Representing null union scalars

2021-07-29 Thread Antoine Pitrou
Le 29/07/2021 à 14:25, Benjamin Kietzman a écrit : Convention 2 seems more correct to me; if a UnionArray cannot contain top level nulls then a UnionScalar should not be nullable. Furthermore, I think that it's reasonable for `MakeNullScalar(some_union_type)->is_valid` to be true, though the

Re: [C++][Discuss] Representing null union scalars

2021-07-29 Thread Benjamin Kietzman
Convention 2 seems more correct to me; if a UnionArray cannot contain top level nulls then a UnionScalar should not be nullable. Furthermore, I think that it's reasonable for `MakeNullScalar(some_union_type)->is_valid` to be true, though the doccomment for both `MakeNullScalar` and

Re: [VOTE][RESULT] Release Apache Arrow 5.0.0 - RC1

2021-07-29 Thread Neal Richardson
R package is now on CRAN. Current status of the post-release tasks: > 1. [x] bump versions on main branch > [x] push development tag > 2. [x] upload source > 3. [x] upload binaries > 4. [x] update website > 5. [x] upload ruby gems > 6. [x] upload js packages > 8. [x] upload C#

[C++][Discuss] Representing null union scalars

2021-07-29 Thread Antoine Pitrou
Hello, The Scalar base class has a `bool is_valid` member that is used to represent null scalars for all types (including the null type). A UnionScalar, since it inherits from Scalar, has the following de facto structure: { // whether the scalar is null bool is_valid; // the