Re: [ANNOUNCE] New Arrow committer: Bryce Mecum

2024-03-18 Thread Wes McKinney
Congrats!

On Mon, Mar 18, 2024 at 12:15 PM James Duong
 wrote:

> Congratulations Bryce!
>
> From: Dane Pitkin 
> Date: Monday, March 18, 2024 at 7:28 AM
> To: dev@arrow.apache.org 
> Subject: Re: [ANNOUNCE] New Arrow committer: Bryce Mecum
> Congratulations, Bryce!!
>
> On Mon, Mar 18, 2024 at 9:18 AM David Li  wrote:
>
> > Congrats Bryce!
> >
> > On Mon, Mar 18, 2024, at 08:52, Ian Cook wrote:
> > > Congratulations Bryce!
> > >
> > > Ian
> > >
> > > On Sun, Mar 17, 2024 at 22:24 Nic Crane  wrote:
> > >
> > >> On behalf of the Arrow PMC, I'm happy to announce that Bryce Mecum has
> > >> accepted an invitation to become a committer on Apache Arrow. Welcome,
> > and
> > >> thank you for your contributions!
> > >>
> > >> Nic
> > >>
> >
>


Re: [ANNOUNCE] New Arrow committer: Bryce Mecum

2024-03-18 Thread James Duong
Congratulations Bryce!

From: Dane Pitkin 
Date: Monday, March 18, 2024 at 7:28 AM
To: dev@arrow.apache.org 
Subject: Re: [ANNOUNCE] New Arrow committer: Bryce Mecum
Congratulations, Bryce!!

On Mon, Mar 18, 2024 at 9:18 AM David Li  wrote:

> Congrats Bryce!
>
> On Mon, Mar 18, 2024, at 08:52, Ian Cook wrote:
> > Congratulations Bryce!
> >
> > Ian
> >
> > On Sun, Mar 17, 2024 at 22:24 Nic Crane  wrote:
> >
> >> On behalf of the Arrow PMC, I'm happy to announce that Bryce Mecum has
> >> accepted an invitation to become a committer on Apache Arrow. Welcome,
> and
> >> thank you for your contributions!
> >>
> >> Nic
> >>
>


Re: [DISCUSS] Conventions for transporting Arrow data over HTTP

2024-03-18 Thread Ian Cook
Thanks to everyone who has contributed to this work so far. We now have
simple HTTP client/server examples in 10 languages, all tested and verified
to interoperate:
https://github.com/apache/arrow-experiments/tree/main/http/get_simple

There is an umbrella issue tracking the next planned tasks:
https://github.com/apache/arrow/issues/40465

Ian

On Tue, Mar 5, 2024 at 11:01 PM Ian Cook  wrote:

> Update on recent progress in this Arrow-over-HTTP project:
>
> I cleaned up the minimal examples of HTTP clients and servers and
> moved them into a directory in the Arrow Experiments repo:
> https://github.com/apache/arrow-experiments/tree/main/http
>
> So far there are client examples in six languages and server examples
> in two languages (Python and Go). They all have READMEs describing how
> to use them.
>
> I have an open PR that adds a third server example in Java. Reviews
> appreciated:
> https://github.com/apache/arrow-experiments/pull/4
>
> I would like to see minimal client and server examples in a few more
> languages (especially Rust) before we move on to developing richer
> types of examples. Is anyone interested in contributing additional
> minimal examples?
>
> Thanks,
> Ian
>
> On Wed, Dec 6, 2023 at 2:29 PM Ian Cook  wrote:
> >
> > I just remembered that there is an unused "Arrow Experiments" repo [1]
> > which Wes created a few years ago [2]. That seems like a more
> > appropriate place to open PRs like this one. If there are no
> > objections, I will start using that repo for these Arrow-over-HTTP
> > PRs.
> >
> > [1] https://github.com/apache/arrow-experiments
> > [2] https://lists.apache.org/thread/cw14s874pwplzf9ycnvfwtwq0xq17npg
> >
> > Ian
> >
> > On Wed, Dec 6, 2023 at 1:45 PM Ian Cook  wrote:
> > >
> > > Antoine,
> > >
> > > Thank you for taking a look. I agree—these are basic examples intended
> > > to prove the concept and answer fundamental questions. Next I intend
> > > to expand the set of examples to cover more complex cases.
> > >
> > > > This might necessitate some kind of framing layer, or a
> > > > standardized delimiter.
> > >
> > > I am interested to hear more perspectives on this. My perspective is
> > > that we should recommend using HTTP conventions to keep clean
> > > separation between the Arrow-formatted binary data payloads and the
> > > various application-specific fields. This can be achieved by encoding
> > > application-specific fields in URI paths, query parameters, headers,
> > > or separate parts of multipart/form-data messages.
> > >
> > > Ian
> > >
> > > On Wed, Dec 6, 2023 at 1:24 PM Antoine Pitrou 
> wrote:
> > > >
> > > >
> > > > Hi,
> > > >
> > > > While this looks like a nice start, I would expect more precise
> > > > recommendations for writing non-trivial services. Especially, one
> > > > question is how to send both an application-specific POST request
> and an
> > > > Arrow stream, or an application-specific GET response and an Arrow
> > > > stream. This might necessitate some kind of framing layer, or a
> > > > standardized delimiter.
> > > >
> > > > Regards
> > > >
> > > > Antoine.
> > > >
> > > >
> > > >
> > > > Le 05/12/2023 à 21:10, Ian Cook a écrit :
> > > > > This is a continuation of the discussion entitled "[DISCUSS]
> Protocol for
> > > > > exchanging Arrow data over REST APIs". See the previous messages at
> > > > > https://lists.apache.org/thread/vfz74gv1knnhjdkro47shzd1z5g5ggnf.
> > > > >
> > > > > To inform this discussion, I created some basic Arrow-over-HTTP
> client and
> > > > > server examples here:
> > > > > https://github.com/apache/arrow/pull/39081
> > > > >
> > > > > My intention is to expand and improve this set of examples (with
> your help)
> > > > > until they reflect a set of conventions that we are comfortable
> documenting
> > > > > as recommendations.
> > > > >
> > > > > Please take a look and add comments / suggestions in the PR.
> > > > >
> > > > > Thanks,
> > > > > Ian
> > > > >
> > > > > On Tue, Nov 21, 2023 at 1:35 PM Dewey Dunnington
> > > > >  wrote:
> > > > >
> > > > >> I also think a set of best practices for Arrow over HTTP would be
> a
> > > > >> valuable resource for the community...even if it never becomes a
> > > > >> specification of its own, it will be beneficial for API
> developers and
> > > > >> consumers of those APIs to have a place to look to understand how
> > > > >> Arrow can help improve throughput/latency/maybe other things.
> Possibly
> > > > >> something like httpbin.org but for requests/responses that use
> Arrow
> > > > >> would be helpful as well. Thank you Ian for leading this effort!
> > > > >>
> > > > >> It has mostly been covered already, but in the (ubiquitous)
> situation
> > > > >> where a response contains some schema/table and some
> non-schema/table
> > > > >> information there is some tension between throughput (best served
> by a
> > > > >> JSON response plus one or more IPC stream responses) and latency
> (best
> > > > >> served by a single HTTP response? JSON? IPC with
> 

Re: [ANNOUNCE] New Arrow committer: Bryce Mecum

2024-03-18 Thread Dane Pitkin
Congratulations, Bryce!!

On Mon, Mar 18, 2024 at 9:18 AM David Li  wrote:

> Congrats Bryce!
>
> On Mon, Mar 18, 2024, at 08:52, Ian Cook wrote:
> > Congratulations Bryce!
> >
> > Ian
> >
> > On Sun, Mar 17, 2024 at 22:24 Nic Crane  wrote:
> >
> >> On behalf of the Arrow PMC, I'm happy to announce that Bryce Mecum has
> >> accepted an invitation to become a committer on Apache Arrow. Welcome,
> and
> >> thank you for your contributions!
> >>
> >> Nic
> >>
>


Re: [DISCUSS][C++] Help needed to refactor Skyhook

2024-03-18 Thread Benjamin Kietzman
I'll put recommendations for the design on the issue. Thanks!

On Fri, Mar 15, 2024 at 2:03 PM Aldrin  wrote:

> I created a new issue [1] to track the refactoring. Could you clarify the
> request (here or in the issue)?
>
> My understanding is that the Skyhook file format code [2] should be
> refactored to use a higher-level interface rather than using
> dataset::FileFormat and dataset::FragmentScanOptions directly [3].
>
> I am assuming the reference to Acero and Substrait to be only for context
> and not necessarily a preferred direction. If that is the preferred
> direction, there is something much more general in progress that we can
> perhaps specialize as a replacement for the Skyhook file format, but I'm
> not sure that's what's actually being requested.
>
> Thank you!
>
>
> [1]: https://github.com/apache/arrow/issues/40583
> [2]: https://github.com/apache/arrow/tree/main/cpp/src/skyhook
> [3]:
> https://github.com/apache/arrow/blob/main/cpp/src/skyhook/cls/cls_skyhook.cc#L153-L156
>
>
>
> # --
>
> # Aldrin
>
>
> https://github.com/drin/
>
> https://gitlab.com/octalene
>
> https://keybase.io/octalene
>
>
> On Thursday, March 14th, 2024 at 09:10, Jayjeet Chakraborty <
> jayjeetchakrabort...@gmail.com> wrote:
>
> > Hi Ben, I am willing to help out with the refactor too !
> >
>
> > On Wed, Mar 13, 2024 at 9:25 PM Aldrin octalene@pm.me.invalid wrote:
> >
>
> > > I am interested in helping to refactor!
> > >
>
> > > -Aldrin
> > >
>
> > > On Wed, Mar 13, 2024 at 08:54, Benjamin Kietzman  > > >
> wrote:
> > >
>
> > > Skyhook [1] enables efficient predicate and projection pushdown from
> > > Arrow Dataset to a Ceph storage cluster. This is very cool
> > > functionality, but it's tightly coupled to the Arrow C++ Dataset
> > > implementation in a way which blocks refactoring. In the Arrow C++
> > > codebase today, Acero is designed specifically to handle projection
> > > and filtration in a more modular fashion, and to accept configuration
> > > from standardized plan/expression formats like Substrait. In light of
> > > improvements to Dataset which are not possible while maintaining
> > > Skyhook in its current form, we need volunteers to update Skyhook.
> > > Please reply to let us know if you are actively using Skyhook or if
> > > you are interested in helping to refactor Skyhook.
> > >
>
> > > Sincerely,
> > > Ben Kietzman
> > >
>
> > > [1]
> > >
>
> > >
> https://arrow.apache.org/blog/2022/01/31/skyhook-bringing-computation-to-storage-with-apache-arrow/
> >
>
> >
>
> > --
> > Jayjeet Chakraborty
> > CS PhD student
> > UC Santa Cruz
> > California, USA


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

2024-03-18 Thread Jean-Baptiste Onofré
+1 (non binding)

Quickly checked on MacOS M3.

Regards
JB

On Fri, Mar 15, 2024 at 8:40 AM Raphael Taylor-Davies
 wrote:
>
> Hi,
>
> I would like to propose a release of Apache Arrow Rust Implementation,
> version 51.0.0.
>
> This release candidate is based on commit:
> ada986c7ec8f8fe4f94235c8aaeba4995392ee72 [1]
>
> The proposed release tarball and signatures are hosted at [2].
>
> The changelog is located at [3].
>
> Please download, verify checksums and signatures, run the unit tests,
> and vote on the release. There is a script [4] that automates some of
> the verification.
>
> The vote will be open for at least 72 hours.
>
> [ ] +1 Release this as Apache Arrow Rust
> [ ] +0
> [ ] -1 Do not release this as Apache Arrow Rust  because...
>
> [1]:
> https://github.com/apache/arrow-rs/tree/ada986c7ec8f8fe4f94235c8aaeba4995392ee72
> [2]: https://dist.apache.org/repos/dist/dev/arrow/apache-arrow-rs-51.0.0-rc1
> [3]:
> https://github.com/apache/arrow-rs/blob/ada986c7ec8f8fe4f94235c8aaeba4995392ee72/CHANGELOG.md
> [4]:
> https://github.com/apache/arrow-rs/blob/master/dev/release/verify-release-candidate.sh
>


Re: [VOTE] Release Apache Arrow 15.0.2 - RC3

2024-03-18 Thread Jean-Baptiste Onofré
+1 (non binding)

Quickly checked on MacOS M3.

Regards
JB

On Thu, Mar 14, 2024 at 12:22 PM Raúl Cumplido  wrote:
>
> Hi,
>
> I would like to propose the following release candidate (RC3) of Apache
> Arrow version 15.0.2. This is a release consisting of 8
> resolved GitHub issues[1].
>
> This release candidate is based on commit:
> e03105efc38edca4ca429bf967a17b4d0fbebe40 [2]
>
> The source release rc3 is hosted at [3].
> The binary artifacts are hosted at [4][5][6][7][8][9][10][11].
> The changelog is located at [12].
>
> Please download, verify checksums and signatures, run the unit tests,
> and vote on the release. See [13] for how to validate a release candidate.
>
> See also a verification result on GitHub pull request [14].
>
> The vote will be open for at least 72 hours.
>
> [ ] +1 Release this as Apache Arrow 15.0.2
> [ ] +0
> [ ] -1 Do not release this as Apache Arrow 15.0.2 because...
>
> [1]: 
> https://github.com/apache/arrow/issues?q=is%3Aissue+milestone%3A15.0.2+is%3Aclosed
> [2]: 
> https://github.com/apache/arrow/tree/e03105efc38edca4ca429bf967a17b4d0fbebe40
> [3]: https://dist.apache.org/repos/dist/dev/arrow/apache-arrow-15.0.2-rc3
> [4]: https://apache.jfrog.io/artifactory/arrow/almalinux-rc/
> [5]: https://apache.jfrog.io/artifactory/arrow/amazon-linux-rc/
> [6]: https://apache.jfrog.io/artifactory/arrow/centos-rc/
> [7]: https://apache.jfrog.io/artifactory/arrow/debian-rc/
> [8]: https://apache.jfrog.io/artifactory/arrow/java-rc/15.0.2-rc3
> [9]: https://apache.jfrog.io/artifactory/arrow/nuget-rc/15.0.2-rc3
> [10]: https://apache.jfrog.io/artifactory/arrow/python-rc/15.0.2-rc3
> [11]: https://apache.jfrog.io/artifactory/arrow/ubuntu-rc/
> [12]: 
> https://github.com/apache/arrow/blob/e03105efc38edca4ca429bf967a17b4d0fbebe40/CHANGELOG.md
> [13]: 
> https://cwiki.apache.org/confluence/display/ARROW/How+to+Verify+Release+Candidates
> [14]: https://github.com/apache/arrow/pull/40504


Re: [ANNOUNCE] New Arrow committer: Bryce Mecum

2024-03-18 Thread David Li
Congrats Bryce!

On Mon, Mar 18, 2024, at 08:52, Ian Cook wrote:
> Congratulations Bryce!
>
> Ian
>
> On Sun, Mar 17, 2024 at 22:24 Nic Crane  wrote:
>
>> On behalf of the Arrow PMC, I'm happy to announce that Bryce Mecum has
>> accepted an invitation to become a committer on Apache Arrow. Welcome, and
>> thank you for your contributions!
>>
>> Nic
>>


Re: [ANNOUNCE] New Arrow committer: Bryce Mecum

2024-03-18 Thread Ian Cook
Congratulations Bryce!

Ian

On Sun, Mar 17, 2024 at 22:24 Nic Crane  wrote:

> On behalf of the Arrow PMC, I'm happy to announce that Bryce Mecum has
> accepted an invitation to become a committer on Apache Arrow. Welcome, and
> thank you for your contributions!
>
> Nic
>


Re: [ANNOUNCE] New Arrow committer: Bryce Mecum

2024-03-18 Thread Jonathan Keane
Congrats and welcome, Bryce.

-Jon


On Mon, Mar 18, 2024 at 6:47 AM Antoine Pitrou  wrote:

>
> Congratulations Bryce, and keep up the good work!
>
> Regards
>
> Antoine.
>
> Le 18/03/2024 à 03:21, Nic Crane a écrit :
> > On behalf of the Arrow PMC, I'm happy to announce that Bryce Mecum has
> > accepted an invitation to become a committer on Apache Arrow. Welcome,
> and
> > thank you for your contributions!
> >
> > Nic
> >
>


Re: [ANNOUNCE] New Arrow committer: Bryce Mecum

2024-03-18 Thread Neal Richardson
Congratulations!

On Mon, Mar 18, 2024 at 6:45 AM Rok Mihevc  wrote:

> Congrats and welcome Bryce!
>
> On Mon, Mar 18, 2024 at 11:07 AM Andrew Lamb  wrote:
>
> > Congratulations Bryce!
> >
> > On Mon, Mar 18, 2024 at 3:35 AM Alenka Frim  > .invalid>
> > wrote:
> >
> > > Congratulations Bryce and thank you for all your contributions!!
> > >
> > > On Mon, Mar 18, 2024 at 6:43 AM Raúl Cumplido 
> > > wrote:
> > >
> > > > Congratulations Bryce!!!
> > > >
> > > > El lun, 18 mar 2024, 5:21, Anja  escribió:
> > > >
> > > > > Congrats Bryce! =)
> > > > >
> > > > > On Sun, 17 Mar 2024 at 22:23, Nic Crane 
> wrote:
> > > > >
> > > > > > On behalf of the Arrow PMC, I'm happy to announce that Bryce
> Mecum
> > > has
> > > > > > accepted an invitation to become a committer on Apache Arrow.
> > > Welcome,
> > > > > and
> > > > > > thank you for your contributions!
> > > > > >
> > > > > > Nic
> > > > > >
> > > > >
> > > >
> > >
> >
>


Re: [VOTE] Release Apache Arrow 15.0.2 - RC3

2024-03-18 Thread Raúl Cumplido
Hi,

Thanks everyone.

The result of the vote was successful with 3 +1 binding votes, 1 +1
non-binding vote and no -1 votes.
I will start the post release tasks for 15.0.2 [1].

Thanks,
Raúl

[1] https://arrow.apache.org/docs/dev/developers/release.html#post-release-tasks

El sáb, 16 mar 2024 a las 21:15, David Li () escribió:
>
> +1
>
> tested on Debian Linux/Conda/x86_64
>
> On Sat, Mar 16, 2024, at 13:43, Ruoxi Sun wrote:
> > +1 (non-binding)
> >
> > On my Intel Mac, OS version Sonoma 14.2.1 (23C71).
> >
> > TEST_DEFAULT=0 TEST_GO=1 TEST_CPP=1 ./verify-release-candidate.sh 15.0.2 3
> >
> > I also tried to verify Python
> >
> > TEST_DEFAULT=0 TEST_PYTHON=1 ./verify-release-candidate.sh 15.0.2 3
> >
> > It succeeded except for [1] (as for 15.0.0 and 15.0.1), which should be
> > trivial.
> >
> > [1] https://github.com/apache/arrow/issues/39679
> >
> > *Regards,*
> > *Rossi SUN*
> >
> >
> > Sutou Kouhei  于2024年3月15日周五 18:56写道:
> >
> >> +1
> >>
> >> I ran the followings on Debian GNU/Linux sid:
> >>
> >>   * TEST_DEFAULT=0 \
> >>   TEST_SOURCE=1 \
> >>   LANG=C \
> >>   TZ=UTC \
> >>   CUDAToolkit_ROOT=/usr \
> >>   ARROW_CMAKE_OPTIONS="-DBoost_NO_BOOST_CMAKE=ON
> >> -Dxsimd_SOURCE=BUNDLED" \
> >>   dev/release/verify-release-candidate.sh 15.0.2 3
> >>
> >>   * TEST_DEFAULT=0 \
> >>   TEST_APT=1 \
> >>   LANG=C \
> >>   dev/release/verify-release-candidate.sh 15.0.2 3
> >>
> >>   * TEST_DEFAULT=0 \
> >>   TEST_BINARY=1 \
> >>   LANG=C \
> >>   dev/release/verify-release-candidate.sh 15.0.2 3
> >>
> >>   * TEST_DEFAULT=0 \
> >>   TEST_JARS=1 \
> >>   LANG=C \
> >>   dev/release/verify-release-candidate.sh 15.0.2 3
> >>
> >>   * TEST_DEFAULT=0 \
> >>   TEST_PYTHON_VERSIONS=3.11 \
> >>   TEST_WHEELS=1 \
> >>   LANG=C \
> >>   dev/release/verify-release-candidate.sh 15.0.2 3
> >>
> >>   * TEST_DEFAULT=0 \
> >>   TEST_YUM=1 \
> >>   LANG=C \
> >>   dev/release/verify-release-candidate.sh 15.0.2 3
> >>
> >> with:
> >>
> >>   * .NET SDK (7.0.406)
> >>   * Python 3.11.8
> >>   * gcc (Debian 13.2.0-13) 13.2.0
> >>   * nvidia-cuda-dev 12.0.146~12.0.1-4
> >>   * openjdk version "17.0.10" 2024-01-16
> >>   * ruby 3.1.2p20 (2022-04-12 revision 4491bb740a) [x86_64-linux-gnu]
> >>
> >>
> >> Thanks,
> >> --
> >> kou
> >>
> >>
> >> In 
> >>   "[VOTE] Release Apache Arrow 15.0.2 - RC3" on Thu, 14 Mar 2024 12:22:13
> >> +0100,
> >>   Raúl Cumplido  wrote:
> >>
> >> > Hi,
> >> >
> >> > I would like to propose the following release candidate (RC3) of Apache
> >> > Arrow version 15.0.2. This is a release consisting of 8
> >> > resolved GitHub issues[1].
> >> >
> >> > This release candidate is based on commit:
> >> > e03105efc38edca4ca429bf967a17b4d0fbebe40 [2]
> >> >
> >> > The source release rc3 is hosted at [3].
> >> > The binary artifacts are hosted at [4][5][6][7][8][9][10][11].
> >> > The changelog is located at [12].
> >> >
> >> > Please download, verify checksums and signatures, run the unit tests,
> >> > and vote on the release. See [13] for how to validate a release
> >> candidate.
> >> >
> >> > See also a verification result on GitHub pull request [14].
> >> >
> >> > The vote will be open for at least 72 hours.
> >> >
> >> > [ ] +1 Release this as Apache Arrow 15.0.2
> >> > [ ] +0
> >> > [ ] -1 Do not release this as Apache Arrow 15.0.2 because...
> >> >
> >> > [1]:
> >> https://github.com/apache/arrow/issues?q=is%3Aissue+milestone%3A15.0.2+is%3Aclosed
> >> > [2]:
> >> https://github.com/apache/arrow/tree/e03105efc38edca4ca429bf967a17b4d0fbebe40
> >> > [3]:
> >> https://dist.apache.org/repos/dist/dev/arrow/apache-arrow-15.0.2-rc3
> >> > [4]: https://apache.jfrog.io/artifactory/arrow/almalinux-rc/
> >> > [5]: https://apache.jfrog.io/artifactory/arrow/amazon-linux-rc/
> >> > [6]: https://apache.jfrog.io/artifactory/arrow/centos-rc/
> >> > [7]: https://apache.jfrog.io/artifactory/arrow/debian-rc/
> >> > [8]: https://apache.jfrog.io/artifactory/arrow/java-rc/15.0.2-rc3
> >> > [9]: https://apache.jfrog.io/artifactory/arrow/nuget-rc/15.0.2-rc3
> >> > [10]: https://apache.jfrog.io/artifactory/arrow/python-rc/15.0.2-rc3
> >> > [11]: https://apache.jfrog.io/artifactory/arrow/ubuntu-rc/
> >> > [12]:
> >> https://github.com/apache/arrow/blob/e03105efc38edca4ca429bf967a17b4d0fbebe40/CHANGELOG.md
> >> > [13]:
> >> https://cwiki.apache.org/confluence/display/ARROW/How+to+Verify+Release+Candidates
> >> > [14]: https://github.com/apache/arrow/pull/40504
> >>


Re: [ANNOUNCE] New Arrow committer: Bryce Mecum

2024-03-18 Thread Rok Mihevc
Congrats and welcome Bryce!

On Mon, Mar 18, 2024 at 11:07 AM Andrew Lamb  wrote:

> Congratulations Bryce!
>
> On Mon, Mar 18, 2024 at 3:35 AM Alenka Frim  .invalid>
> wrote:
>
> > Congratulations Bryce and thank you for all your contributions!!
> >
> > On Mon, Mar 18, 2024 at 6:43 AM Raúl Cumplido 
> > wrote:
> >
> > > Congratulations Bryce!!!
> > >
> > > El lun, 18 mar 2024, 5:21, Anja  escribió:
> > >
> > > > Congrats Bryce! =)
> > > >
> > > > On Sun, 17 Mar 2024 at 22:23, Nic Crane  wrote:
> > > >
> > > > > On behalf of the Arrow PMC, I'm happy to announce that Bryce Mecum
> > has
> > > > > accepted an invitation to become a committer on Apache Arrow.
> > Welcome,
> > > > and
> > > > > thank you for your contributions!
> > > > >
> > > > > Nic
> > > > >
> > > >
> > >
> >
>


Re: [ANNOUNCE] New Arrow committer: Bryce Mecum

2024-03-18 Thread Antoine Pitrou



Congratulations Bryce, and keep up the good work!

Regards

Antoine.

Le 18/03/2024 à 03:21, Nic Crane a écrit :

On behalf of the Arrow PMC, I'm happy to announce that Bryce Mecum has
accepted an invitation to become a committer on Apache Arrow. Welcome, and
thank you for your contributions!

Nic



Re: [ANNOUNCE] New Arrow committer: Bryce Mecum

2024-03-18 Thread Andrew Lamb
Congratulations Bryce!

On Mon, Mar 18, 2024 at 3:35 AM Alenka Frim 
wrote:

> Congratulations Bryce and thank you for all your contributions!!
>
> On Mon, Mar 18, 2024 at 6:43 AM Raúl Cumplido 
> wrote:
>
> > Congratulations Bryce!!!
> >
> > El lun, 18 mar 2024, 5:21, Anja  escribió:
> >
> > > Congrats Bryce! =)
> > >
> > > On Sun, 17 Mar 2024 at 22:23, Nic Crane  wrote:
> > >
> > > > On behalf of the Arrow PMC, I'm happy to announce that Bryce Mecum
> has
> > > > accepted an invitation to become a committer on Apache Arrow.
> Welcome,
> > > and
> > > > thank you for your contributions!
> > > >
> > > > Nic
> > > >
> > >
> >
>


[RESULT][VOTE][RUST] Release Apache Arrow Rust 51.0.0 RC1

2024-03-18 Thread Raphael Taylor-Davies

With 5 +1 votes (4 binding) the release is approved

The release is available here: 
https://dist.apache.org/repos/dist/release/arrow/arrow-rs-51.0.0


It has also been released to crates.io

Thank you to everyone who helped verify this release

On 3/15/24 20:40, Raphael Taylor-Davies wrote:

Hi,

I would like to propose a release of Apache Arrow Rust Implementation, 
version 51.0.0.


This release candidate is based on commit: 
ada986c7ec8f8fe4f94235c8aaeba4995392ee72 [1]


The proposed release tarball and signatures are hosted at [2].

The changelog is located at [3].

Please download, verify checksums and signatures, run the unit tests,
and vote on the release. There is a script [4] that automates some of
the verification.

The vote will be open for at least 72 hours.

[ ] +1 Release this as Apache Arrow Rust
[ ] +0
[ ] -1 Do not release this as Apache Arrow Rust  because...

[1]: 
https://github.com/apache/arrow-rs/tree/ada986c7ec8f8fe4f94235c8aaeba4995392ee72
[2]: 
https://dist.apache.org/repos/dist/dev/arrow/apache-arrow-rs-51.0.0-rc1
[3]: 
https://github.com/apache/arrow-rs/blob/ada986c7ec8f8fe4f94235c8aaeba4995392ee72/CHANGELOG.md
[4]: 
https://github.com/apache/arrow-rs/blob/master/dev/release/verify-release-candidate.sh




Re: [ANNOUNCE] New Arrow committer: Bryce Mecum

2024-03-18 Thread Alenka Frim
Congratulations Bryce and thank you for all your contributions!!

On Mon, Mar 18, 2024 at 6:43 AM Raúl Cumplido 
wrote:

> Congratulations Bryce!!!
>
> El lun, 18 mar 2024, 5:21, Anja  escribió:
>
> > Congrats Bryce! =)
> >
> > On Sun, 17 Mar 2024 at 22:23, Nic Crane  wrote:
> >
> > > On behalf of the Arrow PMC, I'm happy to announce that Bryce Mecum has
> > > accepted an invitation to become a committer on Apache Arrow. Welcome,
> > and
> > > thank you for your contributions!
> > >
> > > Nic
> > >
> >
>