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
10 changes: 8 additions & 2 deletions fe/be-java-extensions/preload-extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,15 @@ under the License.
</dependency>
<!-- For BE CosN Access -->
<dependency>
<groupId>org.apache.hadoop</groupId>
<groupId>com.qcloud.cos</groupId>
<artifactId>hadoop-cos</artifactId>
<version>3.3.5</version>
<version>${tencentcos.version}</version>
<exclusions>
<exclusion>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- For BE Paimon OSS/S3 Access -->
<dependency>
Expand Down
1 change: 0 additions & 1 deletion fe/fe-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ under the License.
<doris.thirdparty>${basedir}/../../thirdparty</doris.thirdparty>
<fe_ut_parallel>1</fe_ut_parallel>
<huaweiobs.version>3.1.1-hw-46</huaweiobs.version>
<tencentcos.version>8.2.7</tencentcos.version>
</properties>
<profiles>
<profile>
Expand Down
2 changes: 2 additions & 0 deletions fe/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,8 @@ under the License.
<aircompressor.version>0.27</aircompressor.version>
<!-- paimon -->
<paimon.version>1.1.1</paimon.version>
<!-- tencent cosn -->
<tencentcos.version>8.2.7</tencentcos.version>
<disruptor.version>3.4.4</disruptor.version>
<!-- arrow flight sql -->
<arrow.vector.classifier>shade-format-flatbuffers</arrow.vector.classifier>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,6 @@
-- !cos --
1 2 3 4 5 6 7 8 9.1 10.1 11.10 2020-02-02 13str 14varchar a true aaaa 2023-08-13T09:32:38.530

-- !cosn --
1 2 3 4 5 6 7 8 9.1 10.1 11.10 2020-02-02 13str 14varchar a true aaaa 2023-08-13T09:32:38.530

Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,7 @@ suite("paimon_base_filesystem", "p0,external,doris,external_docker,external_dock
qt_oss oss
qt_obs obs
qt_cos cos
// java.lang.ClassNotFoundException: Class org.apache.hadoop.fs.CosFileSystem not found
// qt_cosn cosn
qt_cosn cosn

} finally {
sql """set force_jni_scanner=false"""
Expand Down
Loading