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
51 changes: 21 additions & 30 deletions fluss-filesystems/fluss-fs-azure/src/main/resources/META-INF/NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -7,52 +7,43 @@ This project bundles the following dependencies under the Apache Software Licens
- com.fasterxml.jackson.core:jackson-core:2.15.3
- com.fasterxml.jackson.core:jackson-databind:2.15.3
- com.fasterxml.woodstox:woodstox-core:5.4.0
- com.google.guava:failureaccess:1.0
- com.google.guava:guava:27.0-jre
- com.google.guava:failureaccess:1.0.1
- com.google.guava:guava:32.0.1-jre
- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
- com.google.j2objc:j2objc-annotations:1.1
- com.google.j2objc:j2objc-annotations:2.8
- com.microsoft.azure:azure-keyvault-core:1.0.0
- com.microsoft.azure:azure-storage:7.0.1
- commons-beanutils:commons-beanutils:1.9.4
- commons-codec:commons-codec:1.11
- commons-collections:commons-collections:3.2.2
- commons-io:commons-io:2.14.0
- commons-io:commons-io:2.16.1
- commons-logging:commons-logging:1.2
- io.dropwizard.metrics:metrics-core:3.2.4
- io.netty:netty-buffer:4.1.100.Final
- io.netty:netty-codec:4.1.100.Final
- io.netty:netty-common:4.1.100.Final
- io.netty:netty-handler:4.1.100.Final
- io.netty:netty-resolver:4.1.100.Final
- io.netty:netty-transport:4.1.100.Final
- io.netty:netty-transport-classes-epoll:4.1.100.Final
- io.netty:netty-transport-native-epoll:4.1.100.Final
- io.netty:netty-transport-native-unix-common:4.1.100.Final
- org.apache.commons:commons-compress:1.24.0
- org.apache.commons:commons-configuration2:2.8.0
- org.apache.commons:commons-collections4:4.4
- org.apache.commons:commons-compress:1.26.1
- org.apache.commons:commons-configuration2:2.10.1
- org.apache.commons:commons-lang3:3.18.0
- org.apache.commons:commons-text:1.10.0
- org.apache.hadoop.thirdparty:hadoop-shaded-guava:1.1.1
- org.apache.hadoop.thirdparty:hadoop-shaded-protobuf_3_21:1.2.0
- org.apache.hadoop:hadoop-annotations:3.4.0
- org.apache.hadoop:hadoop-auth:3.4.0
- org.apache.hadoop:hadoop-azure:3.3.4
- org.apache.hadoop:hadoop-common:3.4.0
- org.apache.commons:commons-text:1.14.0
- org.apache.hadoop.thirdparty:hadoop-shaded-guava:1.5.0
- org.apache.hadoop.thirdparty:hadoop-shaded-protobuf_3_25:1.5.0
- org.apache.hadoop:hadoop-annotations:3.4.3
- org.apache.hadoop:hadoop-auth:3.4.3
- org.apache.hadoop:hadoop-azure:3.4.3
- org.apache.hadoop:hadoop-common:3.4.3
- org.apache.kerby:kerb-core:2.0.3
- org.apache.kerby:kerb-crypto:2.0.3
- org.apache.kerby:kerb-util:2.0.3
- org.apache.kerby:kerby-asn1:2.0.3
- org.apache.kerby:kerby-config:2.0.3
- org.apache.kerby:kerby-pkix:2.0.3
- org.apache.kerby:kerby-util:2.0.3
- org.apache.httpcomponents:httpclient:4.5.13
- org.apache.httpcomponents:httpcore:4.4.13
- org.codehaus.jackson:jackson-core-asl:1.9.13
- org.codehaus.jackson:jackson-mapper-asl:1.9.13
- org.codehaus.jettison:jettison:1.5.4
- org.wildfly.openssl:wildfly-openssl:1.0.7.Final
- org.wildfly.openssl:wildfly-openssl:2.2.5.Final
- org.xerial.snappy:snappy-java:1.1.10.4

This project bundles the following dependencies under the BSD license. See bundled license files for details.

- dnsjava:dnsjava:3.4.0
- dnsjava:dnsjava:3.6.1
- org.codehaus.woodstox:stax2-api:4.2.1

This project bundles the following dependencies under the Go License (https://golang.org/LICENSE). See bundled license files for details.
Expand All @@ -70,6 +61,6 @@ This project bundles the following dependencies under the Eclipse Distribution L

This project bundles the following dependencies under the MIT License (https://opensource.org/license/mit). See bundled license files for details.

- org.checkerframework:checker-qual:2.5.2
- org.checkerframework:checker-qual:3.33.0
- org.codehaus.mojo:animal-sniffer-annotations:1.17
- org.bouncycastle:bcprov-jdk15on:1.70
- org.bouncycastle:bcprov-jdk15on:1.70
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
class AbfsFileSystemBehaviorITCase extends FileSystemBehaviorTestSuite {

private static final String CONFIG_PREFIX = "fs.azure.account";
private static final String HNS_ENABLED = CONFIG_PREFIX + ".hns.enabled";
private static final String CLIENT_ID = "testClientId";
private static final String CLIENT_SECRET = "testClientSecret";

Expand All @@ -53,6 +54,7 @@ static void setup() {
CONFIG_PREFIX + ".oauth2.client.endpoint",
ENDPOINT_PREFIX + mockAuthServer.getPort());
configuration.setString(CONFIG_PREFIX + ".key", AZURE_ACCOUNT_KEY);
configuration.setBoolean(HNS_ENABLED, false);
FileSystem.initialize(configuration, null);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
class AbfsFileSystemDelegationTokenITCase extends FileSystemBehaviorTestSuite {

private static final String ABFS_FS_PATH = "abfs://fluss@test.dfs.core.windows.net/test";
private static final String HNS_ENABLED = "fs.azure.account.hns.enabled";

@BeforeAll
static void setup() throws Exception {
Expand All @@ -64,7 +65,9 @@ static void setup() throws Exception {
new AbfsDelegationTokenReceiver().onNewTokensObtained(token);

// Initialize without account key.
FileSystem.initialize(new Configuration(), null);
Configuration configuration = new Configuration();
configuration.setBoolean(HNS_ENABLED, false);
FileSystem.initialize(configuration, null);
}

@AfterAll
Expand Down
74 changes: 42 additions & 32 deletions fluss-filesystems/fluss-fs-cos/src/main/resources/META-INF/NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@ This project bundles the following dependencies under the Apache Software Licens
- com.fasterxml.jackson.core:jackson-databind:2.15.3
- com.fasterxml.woodstox:woodstox-core:5.4.0
- com.google.code.gson:gson:2.8.9
- com.google.guava:failureaccess:1.0
- com.google.guava:guava:27.0-jre
- com.google.guava:failureaccess:1.0.1
- com.google.guava:guava:32.0.1-jre
- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
- com.google.j2objc:j2objc-annotations:1.1
- com.google.re2j:re2j:1.1
- com.google.j2objc:j2objc-annotations:2.8
- com.qcloud:cos_api:5.6.139
- com.squareup.okhttp3:logging-interceptor:4.10.0
- com.squareup.okhttp3:okhttp:4.10.0
Expand All @@ -24,53 +23,64 @@ This project bundles the following dependencies under the Apache Software Licens
- com.tencentcloudapi:tencentcloud-sdk-java-common:3.1.678
- com.tencentcloudapi:tencentcloud-sdk-java-kms:3.1.213
- com.tencentcloudapi:tencentcloud-sdk-java-sts:3.1.678
- commons-beanutils:commons-beanutils:1.9.4
- commons-codec:commons-codec:1.13
- commons-collections:commons-collections:3.2.2
- commons-io:commons-io:2.14.0
- commons-io:commons-io:2.16.1
- commons-logging:commons-logging:1.2
- dnsjava:dnsjava:3.4.0
- io.dropwizard.metrics:metrics-core:3.2.4
- io.netty:netty-buffer:4.1.100.Final
- io.netty:netty-codec:4.1.100.Final
- io.netty:netty-common:4.1.100.Final
- io.netty:netty-handler:4.1.100.Final
- io.netty:netty-resolver:4.1.100.Final
- io.netty:netty-transport-classes-epoll:4.1.100.Final
- io.netty:netty-transport-native-epoll:4.1.100.Final
- io.netty:netty-transport-native-unix-common:4.1.100.Final
- io.netty:netty-transport:4.1.100.Final
- jakarta.activation:jakarta.activation-api:1.2.1
- joda-time:joda-time:2.9.9
- org.ini4j:ini4j:0.5.4
- org.apache.commons:commons-compress:1.24.0
- org.apache.commons:commons-configuration2:2.8.0
- org.apache.commons:commons-collections4:4.4
- org.apache.commons:commons-compress:1.26.1
- org.apache.commons:commons-configuration2:2.10.1
- org.apache.commons:commons-lang3:3.18.0
- org.apache.commons:commons-text:1.10.0
- org.apache.hadoop:hadoop-annotations:3.4.0
- org.apache.hadoop:hadoop-auth:3.4.0
- org.apache.hadoop:hadoop-common:3.4.0
- org.apache.commons:commons-text:1.14.0
- org.apache.hadoop:hadoop-annotations:3.4.3
- org.apache.hadoop:hadoop-auth:3.4.3
- org.apache.hadoop:hadoop-common:3.4.3
- org.apache.hadoop:hadoop-cos:3.3.5
- org.apache.hadoop.thirdparty:hadoop-shaded-guava:1.2.0
- org.apache.hadoop.thirdparty:hadoop-shaded-protobuf_3_21:1.2.0
- org.apache.hadoop.thirdparty:hadoop-shaded-guava:1.5.0
- org.apache.hadoop.thirdparty:hadoop-shaded-protobuf_3_25:1.5.0
- org.apache.httpcomponents:httpclient:4.5.13
- org.apache.httpcomponents:httpcore:4.4.13
- org.apache.kerby:kerb-core:2.0.3
- org.apache.kerby:kerb-crypto:2.0.3
- org.apache.kerby:kerb-util:2.0.3
- org.apache.kerby:kerby-asn1:2.0.3
- org.apache.kerby:kerby-config:2.0.3
- org.apache.kerby:kerby-pkix:2.0.3
- org.apache.kerby:kerby-util:2.0.3
- org.bouncycastle:bcprov-jdk15on:1.67
- org.checkerframework:checker-qual:2.5.2
- org.ini4j:ini4j:0.5.4
- org.jetbrains.kotlin:kotlin-stdlib-common:1.6.20
- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.10
- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.10
- org.jetbrains.kotlin:kotlin-stdlib:1.6.20
- org.jetbrains:annotations:13.0
- org.codehaus.jettison:jettison:1.5.4
- org.codehaus.mojo:animal-sniffer-annotations:1.17
- org.codehaus.woodstox:stax2-api:4.2.1
- org.xerial.snappy:snappy-java:1.1.10.4

This project bundles the following dependencies under the MIT (https://opensource.org/licenses/MIT)
See bundled license files for details.

- org.checkerframework:checker-qual:3.33.0

This project bundles the following dependencies under BSD-2 License (https://opensource.org/licenses/BSD-2-Clause).
See bundled license files for details.

- dnsjava:dnsjava:3.6.1

This project bundles the following dependencies under the Go License (https://golang.org/LICENSE).
See bundled license files for details.

- com.google.re2j:re2j:1.1

This project bundles the following dependencies under BSD License (https://opensource.org/licenses/bsd-license.php).
See bundled license files for details.

- org.codehaus.woodstox:stax2-api:4.2.1 (https://github.com/FasterXML/stax2-api/tree/stax2-api-4.2.1)

This project bundles the following dependencies under EDL 1.0 License (https://www.eclipse.org/org/documents/edl-v10.php).
See bundled license files for details.

- jakarta.activation:jakarta.activation-api:1.2.1

This project bundles the following dependencies under the CDDL 1.1 license.
See bundled license files for details.

Expand Down
26 changes: 25 additions & 1 deletion fluss-filesystems/fluss-fs-gs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@
<groupId>com.github.pjfanning</groupId>
<artifactId>jersey-json</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-server</artifactId>
Expand Down Expand Up @@ -181,6 +185,26 @@
<groupId>org.slf4j</groupId>
<artifactId>slf4j-reload4j</artifactId>
</exclusion>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
</exclusion>
<exclusion>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.codehaus.jettison</groupId>
<artifactId>jettison</artifactId>
</exclusion>
</exclusions>
</dependency>

Expand Down Expand Up @@ -430,4 +454,4 @@
</plugins>
</build>

</project>
</project>
44 changes: 24 additions & 20 deletions fluss-filesystems/fluss-fs-gs/src/main/resources/META-INF/NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This project bundles the following dependencies under the Apache Software Licens
- com.fasterxml.jackson.core:jackson-annotations:2.15.3
- com.fasterxml.jackson.core:jackson-core:2.15.3
- com.fasterxml.jackson.core:jackson-databind:2.15.3
- com.fasterxml.woodstox:woodstox-core:5.3.0
- com.fasterxml.woodstox:woodstox-core:5.4.0
- com.google.android:annotations:4.1.1.4
- com.google.api-client:google-api-client-jackson2:2.0.1
- com.google.api-client:google-api-client:2.2.0
Expand All @@ -31,10 +31,10 @@ This project bundles the following dependencies under the Apache Software Licens
- com.google.flogger:flogger-system-backend:0.7.1
- com.google.flogger:flogger:0.7.1
- com.google.flogger:google-extensions:0.7.1
- com.google.guava:failureaccess:1.0
- com.google.guava:guava:27.0-jre
- com.google.guava:failureaccess:1.0.1
- com.google.guava:guava:32.0.1-jre
- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
- com.google.j2objc:j2objc-annotations:1.1
- com.google.j2objc:j2objc-annotations:2.8
- com.google.http-client:google-http-client-apache-v2:1.43.3
- com.google.http-client:google-http-client-appengine:1.43.3
- com.google.http-client:google-http-client-gson:1.43.3
Expand All @@ -45,8 +45,8 @@ This project bundles the following dependencies under the Apache Software Licens
- commons-beanutils:commons-beanutils:1.9.4
- commons-codec:commons-codec:1.16.0
- commons-collections:commons-collections:3.2.2
- commons-io:commons-io:2.8.0
- commons-logging:commons-logging:1.1.3
- commons-io:commons-io:2.16.1
- commons-logging:commons-logging:1.3.0
- io.grpc:grpc-alts:1.59.1
- io.grpc:grpc-api:1.59.1
- io.grpc:grpc-auth:1.59.1
Expand Down Expand Up @@ -75,21 +75,25 @@ This project bundles the following dependencies under the Apache Software Licens
- io.opencensus:opencensus-impl-core:0.31.0
- io.opencensus:opencensus-proto:0.2.0
- io.perfmark:perfmark-api:0.26.0
- org.apache.commons:commons-compress:1.21
- org.apache.commons:commons-configuration2:2.1.1
- org.apache.commons:commons-collections4:4.4
- org.apache.commons:commons-compress:1.26.1
- org.apache.commons:commons-configuration2:2.10.1
- org.apache.commons:commons-lang3:3.18.0
- org.apache.commons:commons-text:1.4
- org.apache.hadoop.thirdparty:hadoop-shaded-guava:1.1.1
- org.apache.hadoop.thirdparty:hadoop-shaded-protobuf_3_7:1.1.1
- org.apache.hadoop:hadoop-annotations:3.3.4
- org.apache.hadoop:hadoop-auth:3.3.4
- org.apache.hadoop:hadoop-common:3.3.4
- org.apache.commons:commons-text:1.14.0
- org.apache.hadoop.thirdparty:hadoop-shaded-guava:1.5.0
- org.apache.hadoop.thirdparty:hadoop-shaded-protobuf_3_25:1.5.0
- org.apache.hadoop:hadoop-annotations:3.4.3
- org.apache.hadoop:hadoop-auth:3.4.3
- org.apache.hadoop:hadoop-common:3.4.3
- org.apache.httpcomponents:httpclient:4.5.13
- org.apache.httpcomponents:httpcore:4.4.13
- org.apache.kerby:kerb-core:1.0.1
- org.apache.kerby:kerby-asn1:1.0.1
- org.apache.kerby:kerby-pkix:1.0.1
- org.apache.kerby:kerby-util:1.0.1
- org.apache.kerby:kerb-core:2.0.3
- org.apache.kerby:kerb-crypto:2.0.3
- org.apache.kerby:kerb-util:2.0.3
- org.apache.kerby:kerby-asn1:2.0.3
- org.apache.kerby:kerby-config:2.0.3
- org.apache.kerby:kerby-pkix:2.0.3
- org.apache.kerby:kerby-util:2.0.3
- org.conscrypt:conscrypt-openjdk-uber:2.5.2
- org.xerial.snappy:snappy-java:1.1.10.4

Expand All @@ -101,7 +105,7 @@ See bundled license files for details.
This project bundles the following dependencies under BSD-2 License (https://opensource.org/licenses/BSD-2-Clause).
See bundled license files for details.

- dnsjava:dnsjava:2.1.7
- dnsjava:dnsjava:3.6.1

This project bundles the following dependencies under BSD-3 License (https://opensource.org/licenses/BSD-3-Clause).
See bundled license files for details.
Expand All @@ -123,7 +127,7 @@ See bundled license files for details.
This project bundles the following dependencies under the MIT License.
See bundled license files for details.

- org.checkerframework:checker-qual:2.5.2
- org.checkerframework:checker-qual:3.33.0
- org.codehaus.mojo:animal-sniffer-annotations:1.23

This project bundles the following dependencies under the CDDL 1.1 license.
Expand Down
Loading
Loading