Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
## I/Os

* Support for X source added (Java/Python) ([#X](https://github.com/apache/beam/issues/X)).
* Add ArrowFlight IO (Java) ([#20116](https://github.com/apache/beam/issues/20116)).
* DebeziumIO (Java): added `OffsetRetainer` interface and `FileSystemOffsetRetainer` implementation to persist and restore CDC offsets across pipeline restarts, and exposed `withStartOffset` / `withOffsetRetainer` on `DebeziumIO.Read` and the cross-language `ReadBuilder` ([#28248](https://github.com/apache/beam/issues/28248)).

## New Features / Improvements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -925,6 +925,8 @@ class BeamModulePlugin implements Plugin<Project> {
arrow_vector : "org.apache.arrow:arrow-vector:$arrow_version",
arrow_memory_core : "org.apache.arrow:arrow-memory-core:$arrow_version",
arrow_memory_netty : "org.apache.arrow:arrow-memory-netty:$arrow_version",
arrow_flight_core : "org.apache.arrow:flight-core:$arrow_version",
arrow_flight_sql : "org.apache.arrow:flight-sql:$arrow_version",
],
groovy: [
groovy_all: "org.codehaus.groovy:groovy-all:2.4.13",
Expand Down
39 changes: 39 additions & 0 deletions sdks/java/io/arrow-flight/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* License); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an AS IS BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

plugins { id 'org.apache.beam.module' }
applyJavaNature(automaticModuleName: 'org.apache.beam.sdk.io.arrowflight')

description = "Apache Beam :: SDKs :: Java :: IO :: Arrow Flight"
ext.summary = "IO to read and write data using Apache Arrow Flight RPC."

dependencies {
implementation project(path: ":sdks:java:core", configuration: "shadow")
implementation project(path: ":sdks:java:extensions:arrow")
implementation library.java.joda_time
implementation library.java.slf4j_api
implementation library.java.vendored_guava_32_1_2_jre
implementation(library.java.arrow_flight_core)
implementation(library.java.arrow_memory_core)
implementation(library.java.arrow_vector)
testImplementation library.java.hamcrest
testImplementation library.java.junit
testImplementation(library.java.arrow_memory_netty)
testRuntimeOnly library.java.slf4j_simple
testRuntimeOnly project(path: ":runners:direct-java", configuration: "shadow")
}
Loading
Loading