Skip to content

Commit

Permalink
[GLUTEN-4675][CH] Support write mergetree to s3 (#4676)
Browse files Browse the repository at this point in the history
What changes were proposed in this pull request?
support write mergetree on s3 and hdfs

How was this patch tested?
UT
---------

Co-authored-by: liuneng1994 <[email protected]>
Co-authored-by: liuneng <[email protected]>
  • Loading branch information
3 people authored Mar 22, 2024
1 parent 4a953a2 commit 4855a4d
Show file tree
Hide file tree
Showing 25 changed files with 2,008 additions and 36 deletions.
28 changes: 27 additions & 1 deletion backends-clickhouse/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@
<artifactId>gluten-core</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>guava</artifactId>
<groupId>com.google.guava</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.glutenproject</groupId>
Expand Down Expand Up @@ -50,6 +56,16 @@
<groupId>org.apache.spark</groupId>
<artifactId>spark-yarn_${scala.binary.version}</artifactId>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>hadoop-client-api</artifactId>
<groupId>org.apache.hadoop</groupId>
</exclusion>
<exclusion>
<artifactId>hadoop-client-runtime</artifactId>
<groupId>org.apache.hadoop</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
Expand Down Expand Up @@ -138,7 +154,11 @@
<groupId>org.apache.hive</groupId>
<artifactId>hive-exec</artifactId>
</exclusion>
</exclusions>
<exclusion>
<artifactId>guava</artifactId>
<groupId>com.google.guava</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
Expand Down Expand Up @@ -181,6 +201,12 @@
<version>1.11.901</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.minio</groupId>
<artifactId>minio</artifactId>
<version>8.5.9</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
Loading

0 comments on commit 4855a4d

Please sign in to comment.