Skip to content

Commit

Permalink
[BugFix] support to read s3 in hudi reader (backport #27615) (#31218)
Browse files Browse the repository at this point in the history
Co-authored-by: dirtysalt <[email protected]>
  • Loading branch information
2 people authored and nshangyiming committed Sep 16, 2023
1 parent a4caca0 commit 9738290
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/exec/olap_scan_prepare.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ void OlapScanConjunctsManager::normalize_join_runtime_filter(const SlotDescripto
}

// bloom runtime filter
for (const auto it : runtime_filters->descriptors()) {
for (const auto& it : runtime_filters->descriptors()) {
const RuntimeFilterProbeDescriptor* desc = it.second;
const JoinRuntimeFilter* rf = desc->runtime_filter();
using RangeType = ColumnValueRange<RangeValueType>;
Expand Down
7 changes: 7 additions & 0 deletions java-extensions/hudi-reader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<slf4j.version>1.7.36</slf4j.version>
<presto.hadoop.version>2.7.4-11</presto.hadoop.version>
<presto.hive.version>3.0.0-8</presto.hive.version>
<hadoop.version>2.7.4</hadoop.version>
<hudi.version>0.12.2</hudi.version>
<fasterxml.version>2.13.4</fasterxml.version>
<fasterxml.jackson.databind.version>2.13.4.2</fasterxml.jackson.databind.version>
Expand Down Expand Up @@ -88,6 +89,12 @@
</exclusions>
</dependency>

<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-aws</artifactId>
<version>${hadoop.version}</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
Expand Down

0 comments on commit 9738290

Please sign in to comment.