This is an automated email from the ASF dual-hosted git repository. gavinchou pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new 6a6e6ff8f21 [FE](dependency) Add azure sdk dependency to FE (#36528) 6a6e6ff8f21 is described below commit 6a6e6ff8f21b5270be332552c579d1a9dbc156b2 Author: AlexYue <yj976240...@gmail.com> AuthorDate: Thu Jun 20 00:25:43 2024 +0800 [FE](dependency) Add azure sdk dependency to FE (#36528) This is one prior pr for FE's Azure support. Introduce the Azure Java SDK in this PR. This way, the PR supporting S3 load and Copy into can be developed in parallel. --- fe/fe-core/pom.xml | 15 ++++++++++++++- fe/pom.xml | 9 +++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/fe/fe-core/pom.xml b/fe/fe-core/pom.xml index cd8f0e0b8e5..d5bbe8b231d 100644 --- a/fe/fe-core/pom.xml +++ b/fe/fe-core/pom.xml @@ -829,6 +829,19 @@ under the License. <artifactId>hbase-hadoop-compat</artifactId> <version>2.5.2-hadoop3</version> </dependency> + <dependency> + <groupId>com.azure</groupId> + <artifactId>azure-storage-blob</artifactId> + </dependency> + <dependency> + <groupId>com.azure</groupId> + <artifactId>azure-identity</artifactId> + </dependency> + <dependency> + <groupId>com.azure</groupId> + <artifactId>azure-storage-blob-batch</artifactId> + <version>${azure.sdk.batch.version}</version> + </dependency> </dependencies> <repositories> <!-- for huawei obs sdk --> @@ -1198,4 +1211,4 @@ under the License. </extension> </extensions> </build> -</project> +</project> \ No newline at end of file diff --git a/fe/pom.xml b/fe/pom.xml index f30e4448fc4..c93c8c6f2b1 100644 --- a/fe/pom.xml +++ b/fe/pom.xml @@ -363,6 +363,8 @@ under the License. <jakarta.annotation-api.version>2.1.1</jakarta.annotation-api.version> <asm.version>9.4</asm.version> <airlift.version>202</airlift.version> + <azure.sdk.version>1.2.24</azure.sdk.version> + <azure.sdk.batch.version>12.22.0</azure.sdk.batch.version> </properties> <profiles> <profile> @@ -1754,6 +1756,13 @@ under the License. <artifactId>concurrent</artifactId> <version>${airlift.version}</version> </dependency> + <dependency> + <groupId>com.azure</groupId> + <artifactId>azure-sdk-bom</artifactId> + <version>${azure.sdk.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> </dependencies> </dependencyManagement> <dependencies> --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org