Re: [VOTE][RUST] Release Apache Arrow Rust 29.0.0 RC2

2022-12-12 Thread Raphael Taylor-Davies
+1 (binding) I did find one accidental breaking change here but I don't think it is a release blocker On 09/12/2022 22:31, Andrew Lamb wrote: Hi, I would like to propose a release of Apache Arrow Rust Implementation, vers

[Java] VectorSchemaRoot? batches->table

2022-12-12 Thread John Muehlhausen
Hello, pyarrow.Table from_batches(batches, Schema schema=None) Construct a Table from a sequence or iterator of Arrow RecordBatches. What is the equivalent of this in Java? What is the relationship between VectorSchemaRoot, Table and RecordBatch in Java? It all seems a bit different... Specifi

Re: Request for Patch release of 10.0.2

2022-12-12 Thread Matthew Topol
I'm in favor of this, can someone from the PMC please comment to the viability of this? I know we have the v11 release coming up in the next month or so and we'd need someone to be the release manager for performing a v10.0.2 patch release. So I'm not sure whether or not this is a viable option. -

Re: Request for Patch release of 10.0.2

2022-12-12 Thread Matthew Topol
@Laurent: Would it be sufficient if we cherry-pick the bugfixes to a branch off of the v10 release and then you can use a replace directive in the go.mod to point at that particular commit until the v11 release comes out in 4 - 6 weeks (give or take given the end of year holidays)? --Matt On Mon,

Re: DISCUSS: [FlightSQL] Catalog support

2022-12-12 Thread David Li
Following up here, James are you interested in putting up a draft PR for the Flight SQL URI format and for session management? The Flight SQL URI format would then also cover Andrew's use case. And if someone wants to draw up a PR to the JDBC driver to enable arbitrary properties, I can review

Re: DISCUSS: [FlightSQL] Catalog support

2022-12-12 Thread James Duong
Hi David, I've written up the URI parsing in C++ and started adding session management messages. I'm also planning on having the ClientCookieMiddlewareFactory be able to report if sessions are enabled on the server. I (or another developer) will send an update once those features are ready for

Re: [Java] VectorSchemaRoot? batches->table

2022-12-12 Thread Larry White
H John, The different Arrow language libraries have different approaches to working with the data as you discovered. For processing individual batches, you should use a VectorSchemaRoot. Table is intended for non-batch operations, especially where you want stronger guarantees of immutability. Rec

Nightly CI doesn't work since 2022-12-08

2022-12-12 Thread Sutou Kouhei
Hi, It seems that our nightly CI doesn't work since 2022-12-08. https://lists.apache.org/list.html?bui...@arrow.apache.org shows 2022-12-07's nightly CI as the latest result. Could someone confirm this? Thanks, -- kou

Re: Request for Patch release of 10.0.2

2022-12-12 Thread Laurent Quérel
@matthew It could work for me if we stay within this kind of time frame. However, this memory leak problem could affect other users who may not be aware of the problem or the fix. Having an official patch version would be more effective in spreading this fix within the community I think. —Laureby

[RESULT] [VOTE][RUST] Release Apache Arrow Rust 29.0.0 RC2

2022-12-12 Thread Andrew Lamb
With 9 +1 votes (4 binding) the release is approved The release is available here: https://dist.apache.org/repos/dist/release/arrow/arrow-rs-29.0.0 It has also been released to crates.io! Thank you again to everyone involved with the release. Keeping the train going ! Andrew On Mon, Dec 12,

Re: Request for Patch release of 10.0.2

2022-12-12 Thread Sutou Kouhei
Hi, I'm sorry but I can't do this (serve as release manager) in this month. But I can help a committer or PMC member who wants to serve as release manager for 10.0.2. FYI: ASF says that a committer can serve as release manager: https://infra.apache.org/release-publishing.html#releasemanager A co

[Java]: Failures building Java pom

2022-12-12 Thread James Duong
I have been trying to build Java from the root pom and am seeing errors while running Flight-core tests from maven, suggesting build issues with pojo classes: [ERROR] TestDictionaryUtils.:1 Unresolved compilation problems: The type org.apache.arrow.vector.types.pojo.ArrowType$Int cannot be reso

Re: [Java]: Failures building Java pom

2022-12-12 Thread Larry White
> The type org.apache.arrow.vector.types.pojo.ArrowType$Int cannot be resolved. This is a generated class. The source should be in the vector module, under target/generated-sources when the build starts. The process varies somewhat depending on the Arrow version, but if you're not seeing the sourc