Skip to content

Commit

Permalink
[Java] Upgrade substrait for antlr4 compatibility. reduce binary size (
Browse files Browse the repository at this point in the history
…lakesoul-io#523)

Signed-off-by: chenxu <[email protected]>
Co-authored-by: chenxu <[email protected]>
  • Loading branch information
xuchen-plus and dmetasoul01 authored Aug 7, 2024
1 parent 8a1673e commit db4f537
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
10 changes: 5 additions & 5 deletions native-io/lakesoul-io-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ SPDX-License-Identifier: Apache-2.0
<maven.compiler.target>8</maven.compiler.target>
<arrow.version>15.0.2</arrow.version>
<scalatest.version>3.1.0</scalatest.version>
<substrait.version>0.28.0</substrait.version>
<substrait.version>0.30.0</substrait.version>
<protobuf.version>3.22.0</protobuf.version>
<protobuf.plugin.version>0.6.1</protobuf.plugin.version>
</properties>
Expand Down Expand Up @@ -630,6 +630,9 @@ SPDX-License-Identifier: Apache-2.0
<includes>
<include>**</include>
</includes>
<excludes>
<exclude>org.apache.spark:*</exclude>
</excludes>
</artifactSet>
<filters>
<filter>
Expand All @@ -646,6 +649,7 @@ SPDX-License-Identifier: Apache-2.0
<excludes>
<exclude>org/sparkproject/jetty/**</exclude>
<exclude>META-INF/maven/org.eclipse.jetty/**</exclude>
<exclude>META-INF/maven/org.spark-project.spark/**</exclude>
<exclude>jetty-dir.css</exclude>
<exclude>META-INF/services/org.eclipse.jetty.http.HttpFieldPreEncoder</exclude>
</excludes>
Expand Down Expand Up @@ -744,10 +748,6 @@ SPDX-License-Identifier: Apache-2.0
<pattern>com.google.flatbuffers</pattern>
<shadedPattern>com.lakesoul.shaded.com.google.flatbuffers</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.spark</pattern>
<shadedPattern>com.lakesoul.shaded.org.apache.spark</shadedPattern>
</relocation>
<relocation>
<pattern>io.substrait</pattern>
<shadedPattern>com.lakesoul.shaded.io.substrait</shadedPattern>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,9 @@
package com.dmetasoul.lakesoul

import com.dmetasoul.lakesoul.lakesoul.io.NativeIOReader
import org.apache.arrow.c.{ArrowArray, ArrowSchema, CDataDictionaryProvider, Data}
import org.apache.arrow.c.{ArrowArray, CDataDictionaryProvider, Data}
import org.apache.arrow.vector.VectorSchemaRoot

import java.io.IOException
import scala.concurrent.duration.DurationInt
import scala.concurrent.{Await, Future, Promise}
import scala.util.Success

case class LakeSoulArrowReader(reader: NativeIOReader,
timeout: Int = 10000) extends AutoCloseable {

Expand Down
5 changes: 4 additions & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ members = [
resolver = "2"

[profile.release]
strip = true
opt-level = "z"
lto = true

[workspace.dependencies]
datafusion = { git = "https://github.com/lakesoul-io/arrow-datafusion.git", branch = "datafusion-33-parquet-prefetch" }
Expand Down Expand Up @@ -47,4 +50,4 @@ bytes = "1.4.0"
half = "^2.1"
tracing = "0.1.40"
thiserror = "1.0"
anyhow = "1.0.79"
anyhow = "1.0.79"

0 comments on commit db4f537

Please sign in to comment.