HBase

The connector provides sources, flows and sinks to interact with HBase database.

HBase is a column family NoSQL Database backed by HDFS. For more information about HBase, please visit the HBase documentation.

Project Info: Alpakka HBase
Artifact
com.lightbend.akka
akka-stream-alpakka-hbase
7.0.2
JDK versions
Eclipse Temurin JDK 11
Eclipse Temurin JDK 17
Scala versions2.13.12, 3.3.1
JPMS module nameakka.stream.alpakka.hbase
License
Readiness level
Since 0.4, 2016-12-22
Home pagehttps://doc.akka.io/docs/alpakka/current
API documentation
Forums
Release notesGitHub releases
IssuesGithub issues
Sourceshttps://github.com/akka/alpakka

Artifacts

The Akka dependencies are available from Akka’s library repository. To access them there, you need to configure the URL for this repository.

sbt
resolvers += "Akka library repository".at("https://repo.akka.io/maven")
Maven
<project>
  ...
  <repositories>
    <repository>
      <id>akka-repository</id>
      <name>Akka library repository</name>
      <url>https://repo.akka.io/maven</url>
    </repository>
  </repositories>
</project>
Gradle
repositories {
    mavenCentral()
    maven {
        url "https://repo.akka.io/maven"
    }
}

Additionally, add the dependencies as below.

sbt
val AkkaVersion = "2.9.0"
libraryDependencies ++= Seq(
  "com.lightbend.akka" %% "akka-stream-alpakka-hbase" % "7.0.2",
  "com.typesafe.akka" %% "akka-stream" % AkkaVersion
)
Maven
<properties>
  <akka.version>2.9.0</akka.version>
  <scala.binary.version>2.13</scala.binary.version>
</properties>
<dependencies>
  <dependency>
    <groupId>com.lightbend.akka</groupId>
    <artifactId>akka-stream-alpakka-hbase_${scala.binary.version}</artifactId>
    <version>7.0.2</version>
  </dependency>
  <dependency>
    <groupId>com.typesafe.akka</groupId>
    <artifactId>akka-stream_${scala.binary.version}</artifactId>
    <version>${akka.version}</version>
  </dependency>
</dependencies>
Gradle
def versions = [
  AkkaVersion: "2.9.0",
  ScalaBinary: "2.13"
]
dependencies {
  implementation "com.lightbend.akka:akka-stream-alpakka-hbase_${versions.ScalaBinary}:7.0.2"
  implementation "com.typesafe.akka:akka-stream_${versions.ScalaBinary}:${versions.AkkaVersion}"
}

The table below shows direct dependencies of this module and the second tab shows all libraries it depends on transitively.

Direct dependencies
OrganizationArtifactVersion
com.typesafe.akkaakka-stream_2.132.9.0
org.apache.hadoophadoop-common3.3.3
org.apache.hadoophadoop-mapreduce-client-core3.3.3
org.apache.hbasehbase-common1.4.13
org.apache.hbasehbase-shaded-client1.4.13
org.scala-langscala-library2.13.12
Dependency tree
com.typesafe.akka    akka-stream_2.13    2.9.0    BUSL-1.1
    com.typesafe.akka    akka-actor_2.13    2.9.0    BUSL-1.1
        com.typesafe    config    1.4.3    Apache-2.0
        org.scala-lang.modules    scala-java8-compat_2.13    1.0.2    Apache-2.0
            org.scala-lang    scala-library    2.13.12    Apache-2.0
        org.scala-lang    scala-library    2.13.12    Apache-2.0
    com.typesafe.akka    akka-protobuf-v3_2.13    2.9.0    BUSL-1.1
    org.reactivestreams    reactive-streams    1.0.4    MIT-0
    org.scala-lang    scala-library    2.13.12    Apache-2.0
org.apache.hadoop    hadoop-common    3.3.3
    ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
    com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
        com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
        com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
    com.fasterxml.woodstox    woodstox-core    5.3.0    The Apache License, Version 2.0
        org.codehaus.woodstox    stax2-api    4.2.1    The BSD License
    com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
    com.google.code.gson    gson    2.8.9    Apache-2.0
    com.google.guava    guava    27.0-jre
        com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
        com.google.errorprone    error_prone_annotations    2.2.0    Apache 2.0
        com.google.guava    failureaccess    1.0
        com.google.guava    listenablefuture    9999.0-empty-to-avoid-conflict-with-guava
        com.google.j2objc    j2objc-annotations    1.1    The Apache Software License, Version 2.0
        org.checkerframework    checker-qual    2.5.2    The MIT License
        org.codehaus.mojo    animal-sniffer-annotations    1.17
    com.google.protobuf    protobuf-java    2.5.0    New BSD license
    com.google.re2j    re2j    1.1    The Go license
    com.jcraft    jsch    0.1.55    Revised BSD
    com.sun.jersey    jersey-core    1.19
        javax.ws.rs    jsr311-api    1.1.1    CDDL License
    com.sun.jersey    jersey-json    1.19
        com.sun.jersey    jersey-core    1.19
            javax.ws.rs    jsr311-api    1.1.1    CDDL License
        com.sun.xml.bind    jaxb-impl    2.2.3-1    CDDL 1.1
            javax.xml.bind    jaxb-api    2.2.11    CDDL 1.1
        org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
        org.codehaus.jackson    jackson-jaxrs    1.9.2    The Apache Software License, Version 2.0
            org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
            org.codehaus.jackson    jackson-mapper-asl    1.9.13    The Apache Software License, Version 2.0
                org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
        org.codehaus.jackson    jackson-mapper-asl    1.9.13    The Apache Software License, Version 2.0
            org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
        org.codehaus.jackson    jackson-xc    1.9.2    The Apache Software License, Version 2.0
            org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
            org.codehaus.jackson    jackson-mapper-asl    1.9.13    The Apache Software License, Version 2.0
                org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
        org.codehaus.jettison    jettison    1.1
    com.sun.jersey    jersey-server    1.19
        com.sun.jersey    jersey-core    1.19
            javax.ws.rs    jsr311-api    1.1.1    CDDL License
    com.sun.jersey    jersey-servlet    1.19
        com.sun.jersey    jersey-server    1.19
            com.sun.jersey    jersey-core    1.19
                javax.ws.rs    jsr311-api    1.1.1    CDDL License
    commons-beanutils    commons-beanutils    1.9.4
        commons-collections    commons-collections    3.2.2
        commons-logging    commons-logging    1.2
    commons-cli    commons-cli    1.2
    commons-codec    commons-codec    1.15
    commons-collections    commons-collections    3.2.2
    commons-io    commons-io    2.8.0
    commons-logging    commons-logging    1.2
    commons-net    commons-net    3.6
    dnsjava    dnsjava    2.1.7    BSD 2-Clause license
    jakarta.activation    jakarta.activation-api    1.2.2
    javax.servlet.jsp    jsp-api    2.1
    javax.servlet    javax.servlet-api    3.1.0    CDDL + GPLv2 with classpath exception
    org.apache.avro    avro    1.7.7
        com.thoughtworks.paranamer    paranamer    2.3
        org.apache.commons    commons-compress    1.21
        org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
        org.codehaus.jackson    jackson-mapper-asl    1.9.13    The Apache Software License, Version 2.0
            org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
        org.slf4j    slf4j-api    1.7.36
        org.xerial.snappy    snappy-java    1.1.8.2    Apache-2.0
    org.apache.commons    commons-compress    1.21
    org.apache.commons    commons-configuration2    2.1.1
        commons-logging    commons-logging    1.2
    org.apache.commons    commons-lang3    3.12.0
    org.apache.commons    commons-math3    3.1.1
    org.apache.commons    commons-text    1.4
        org.apache.commons    commons-lang3    3.12.0
    org.apache.curator    curator-client    4.2.0
    org.apache.curator    curator-recipes    4.2.0
        org.apache.curator    curator-framework    4.2.0
            org.apache.curator    curator-client    4.2.0
    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.3
    org.apache.hadoop    hadoop-auth    3.3.3
        ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
        com.nimbusds    nimbus-jose-jwt    9.8.1    The Apache Software License, Version 2.0
            com.github.stephenc.jcip    jcip-annotations    1.0-1    Apache License, Version 2.0
        commons-codec    commons-codec    1.15
        net.minidev    json-smart    2.4.7    The Apache Software License, Version 2.0
            net.minidev    accessors-smart    2.4.7    The Apache Software License, Version 2.0
                org.ow2.asm    asm    9.1    BSD-3-Clause
        org.apache.curator    curator-framework    4.2.0
            org.apache.curator    curator-client    4.2.0
        org.apache.hadoop.thirdparty    hadoop-shaded-guava    1.1.1
        org.apache.httpcomponents    httpclient    4.5.13
            commons-codec    commons-codec    1.15
            commons-logging    commons-logging    1.2
            org.apache.httpcomponents    httpcore    4.4.13
        org.apache.kerby    kerb-simplekdc    1.0.1
            org.apache.kerby    kerb-admin    1.0.1
                org.apache.kerby    kerb-server    1.0.1
                    org.apache.kerby    kerb-common    1.0.1
                        commons-io    commons-io    2.8.0
                        org.apache.kerby    kerb-crypto    1.0.1
                            org.apache.kerby    kerb-core    1.0.1
                                org.apache.kerby    kerby-pkix    1.0.1
                                    org.apache.kerby    kerby-asn1    1.0.1
                                    org.apache.kerby    kerby-util    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                            org.apache.kerby    kerby-util    1.0.1
                        org.apache.kerby    kerby-config    1.0.1
                            org.slf4j    slf4j-api    1.7.36
                    org.apache.kerby    kerb-identity    1.0.1
                        org.apache.kerby    kerb-core    1.0.1
                            org.apache.kerby    kerby-pkix    1.0.1
                                org.apache.kerby    kerby-asn1    1.0.1
                                org.apache.kerby    kerby-util    1.0.1
                                org.slf4j    slf4j-api    1.7.36
                        org.apache.kerby    kerby-config    1.0.1
                            org.slf4j    slf4j-api    1.7.36
                org.apache.kerby    kerb-util    1.0.1
                    org.apache.kerby    kerb-core    1.0.1
                        org.apache.kerby    kerby-pkix    1.0.1
                            org.apache.kerby    kerby-asn1    1.0.1
                            org.apache.kerby    kerby-util    1.0.1
                            org.slf4j    slf4j-api    1.7.36
                    org.apache.kerby    kerb-crypto    1.0.1
                        org.apache.kerby    kerb-core    1.0.1
                            org.apache.kerby    kerby-pkix    1.0.1
                                org.apache.kerby    kerby-asn1    1.0.1
                                org.apache.kerby    kerby-util    1.0.1
                                org.slf4j    slf4j-api    1.7.36
                        org.apache.kerby    kerby-util    1.0.1
                    org.apache.kerby    kerby-config    1.0.1
                        org.slf4j    slf4j-api    1.7.36
                org.apache.kerby    kerby-xdr    1.0.1
            org.apache.kerby    kerb-client    1.0.1
                org.apache.kerby    kerb-common    1.0.1
                    commons-io    commons-io    2.8.0
                    org.apache.kerby    kerb-crypto    1.0.1
                        org.apache.kerby    kerb-core    1.0.1
                            org.apache.kerby    kerby-pkix    1.0.1
                                org.apache.kerby    kerby-asn1    1.0.1
                                org.apache.kerby    kerby-util    1.0.1
                                org.slf4j    slf4j-api    1.7.36
                        org.apache.kerby    kerby-util    1.0.1
                    org.apache.kerby    kerby-config    1.0.1
                        org.slf4j    slf4j-api    1.7.36
                org.apache.kerby    kerb-core    1.0.1
                    org.apache.kerby    kerby-pkix    1.0.1
                        org.apache.kerby    kerby-asn1    1.0.1
                        org.apache.kerby    kerby-util    1.0.1
                        org.slf4j    slf4j-api    1.7.36
                org.apache.kerby    kerb-util    1.0.1
                    org.apache.kerby    kerb-core    1.0.1
                        org.apache.kerby    kerby-pkix    1.0.1
                            org.apache.kerby    kerby-asn1    1.0.1
                            org.apache.kerby    kerby-util    1.0.1
                            org.slf4j    slf4j-api    1.7.36
                    org.apache.kerby    kerb-crypto    1.0.1
                        org.apache.kerby    kerb-core    1.0.1
                            org.apache.kerby    kerby-pkix    1.0.1
                                org.apache.kerby    kerby-asn1    1.0.1
                                org.apache.kerby    kerby-util    1.0.1
                                org.slf4j    slf4j-api    1.7.36
                        org.apache.kerby    kerby-util    1.0.1
                    org.apache.kerby    kerby-config    1.0.1
                        org.slf4j    slf4j-api    1.7.36
                org.apache.kerby    kerby-config    1.0.1
                    org.slf4j    slf4j-api    1.7.36
                org.apache.kerby    token-provider    1.0.1
                    com.nimbusds    nimbus-jose-jwt    9.8.1    The Apache Software License, Version 2.0
                        com.github.stephenc.jcip    jcip-annotations    1.0-1    Apache License, Version 2.0
                    org.apache.kerby    kerb-core    1.0.1
                        org.apache.kerby    kerby-pkix    1.0.1
                            org.apache.kerby    kerby-asn1    1.0.1
                            org.apache.kerby    kerby-util    1.0.1
                            org.slf4j    slf4j-api    1.7.36
        org.apache.zookeeper    zookeeper    3.5.6
            io.netty    netty-handler    4.1.42.Final
                io.netty    netty-buffer    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
                io.netty    netty-codec    4.1.42.Final
                    io.netty    netty-buffer    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
                    io.netty    netty-transport    4.1.42.Final
                        io.netty    netty-buffer    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                        io.netty    netty-resolver    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                io.netty    netty-common    4.1.42.Final
                io.netty    netty-transport    4.1.42.Final
                    io.netty    netty-buffer    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
                    io.netty    netty-resolver    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
            io.netty    netty-transport-native-epoll    4.1.42.Final
                io.netty    netty-buffer    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
                io.netty    netty-common    4.1.42.Final
                io.netty    netty-transport-native-unix-common    4.1.42.Final
                    io.netty    netty-buffer    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
                    io.netty    netty-transport    4.1.42.Final
                        io.netty    netty-buffer    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                        io.netty    netty-resolver    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                io.netty    netty-transport    4.1.42.Final
                    io.netty    netty-buffer    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
                    io.netty    netty-resolver    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
            org.apache.yetus    audience-annotations    0.5.0
            org.apache.zookeeper    zookeeper-jute    3.5.6
                org.apache.yetus    audience-annotations    0.5.0
            org.slf4j    slf4j-api    1.7.36
        org.slf4j    slf4j-api    1.7.36
        org.slf4j    slf4j-reload4j    1.7.36
            ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
            org.slf4j    slf4j-api    1.7.36
    org.apache.httpcomponents    httpclient    4.5.13
        commons-codec    commons-codec    1.15
        commons-logging    commons-logging    1.2
        org.apache.httpcomponents    httpcore    4.4.13
    org.apache.kerby    kerb-core    1.0.1
        org.apache.kerby    kerby-pkix    1.0.1
            org.apache.kerby    kerby-asn1    1.0.1
            org.apache.kerby    kerby-util    1.0.1
            org.slf4j    slf4j-api    1.7.36
    org.apache.zookeeper    zookeeper    3.5.6
        io.netty    netty-handler    4.1.42.Final
            io.netty    netty-buffer    4.1.42.Final
                io.netty    netty-common    4.1.42.Final
            io.netty    netty-codec    4.1.42.Final
                io.netty    netty-buffer    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
                io.netty    netty-common    4.1.42.Final
                io.netty    netty-transport    4.1.42.Final
                    io.netty    netty-buffer    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
                    io.netty    netty-resolver    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
            io.netty    netty-common    4.1.42.Final
            io.netty    netty-transport    4.1.42.Final
                io.netty    netty-buffer    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
                io.netty    netty-common    4.1.42.Final
                io.netty    netty-resolver    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
        io.netty    netty-transport-native-epoll    4.1.42.Final
            io.netty    netty-buffer    4.1.42.Final
                io.netty    netty-common    4.1.42.Final
            io.netty    netty-common    4.1.42.Final
            io.netty    netty-transport-native-unix-common    4.1.42.Final
                io.netty    netty-buffer    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
                io.netty    netty-common    4.1.42.Final
                io.netty    netty-transport    4.1.42.Final
                    io.netty    netty-buffer    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
                    io.netty    netty-resolver    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
            io.netty    netty-transport    4.1.42.Final
                io.netty    netty-buffer    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
                io.netty    netty-common    4.1.42.Final
                io.netty    netty-resolver    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
        org.apache.yetus    audience-annotations    0.5.0
        org.apache.zookeeper    zookeeper-jute    3.5.6
            org.apache.yetus    audience-annotations    0.5.0
        org.slf4j    slf4j-api    1.7.36
    org.codehaus.woodstox    stax2-api    4.2.1    The BSD License
    org.eclipse.jetty    jetty-server    9.4.43.v20210629
        javax.servlet    javax.servlet-api    3.1.0    CDDL + GPLv2 with classpath exception
        org.eclipse.jetty    jetty-http    9.4.43.v20210629
            org.eclipse.jetty    jetty-io    9.4.43.v20210629
                org.eclipse.jetty    jetty-util    9.4.43.v20210629
            org.eclipse.jetty    jetty-util    9.4.43.v20210629
        org.eclipse.jetty    jetty-io    9.4.43.v20210629
            org.eclipse.jetty    jetty-util    9.4.43.v20210629
    org.eclipse.jetty    jetty-servlet    9.4.43.v20210629
        org.eclipse.jetty    jetty-security    9.4.43.v20210629
            org.eclipse.jetty    jetty-server    9.4.43.v20210629
                javax.servlet    javax.servlet-api    3.1.0    CDDL + GPLv2 with classpath exception
                org.eclipse.jetty    jetty-http    9.4.43.v20210629
                    org.eclipse.jetty    jetty-io    9.4.43.v20210629
                        org.eclipse.jetty    jetty-util    9.4.43.v20210629
                    org.eclipse.jetty    jetty-util    9.4.43.v20210629
                org.eclipse.jetty    jetty-io    9.4.43.v20210629
                    org.eclipse.jetty    jetty-util    9.4.43.v20210629
        org.eclipse.jetty    jetty-util-ajax    9.4.43.v20210629
            org.eclipse.jetty    jetty-util    9.4.43.v20210629
    org.eclipse.jetty    jetty-util    9.4.43.v20210629
    org.eclipse.jetty    jetty-webapp    9.4.43.v20210629
        org.eclipse.jetty    jetty-servlet    9.4.43.v20210629
            org.eclipse.jetty    jetty-security    9.4.43.v20210629
                org.eclipse.jetty    jetty-server    9.4.43.v20210629
                    javax.servlet    javax.servlet-api    3.1.0    CDDL + GPLv2 with classpath exception
                    org.eclipse.jetty    jetty-http    9.4.43.v20210629
                        org.eclipse.jetty    jetty-io    9.4.43.v20210629
                            org.eclipse.jetty    jetty-util    9.4.43.v20210629
                        org.eclipse.jetty    jetty-util    9.4.43.v20210629
                    org.eclipse.jetty    jetty-io    9.4.43.v20210629
                        org.eclipse.jetty    jetty-util    9.4.43.v20210629
            org.eclipse.jetty    jetty-util-ajax    9.4.43.v20210629
                org.eclipse.jetty    jetty-util    9.4.43.v20210629
        org.eclipse.jetty    jetty-xml    9.4.43.v20210629
            org.eclipse.jetty    jetty-util    9.4.43.v20210629
    org.slf4j    slf4j-api    1.7.36
    org.slf4j    slf4j-reload4j    1.7.36
        ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
        org.slf4j    slf4j-api    1.7.36
    org.xerial.snappy    snappy-java    1.1.8.2    Apache-2.0
org.apache.hadoop    hadoop-mapreduce-client-core    3.3.3
    com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
        com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
        com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
    com.google.inject.extensions    guice-servlet    4.0
        com.google.inject    guice    4.0
            aopalliance    aopalliance    1.0    Public Domain
            com.google.guava    guava    27.0-jre
                com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
                com.google.errorprone    error_prone_annotations    2.2.0    Apache 2.0
                com.google.guava    failureaccess    1.0
                com.google.guava    listenablefuture    9999.0-empty-to-avoid-conflict-with-guava
                com.google.j2objc    j2objc-annotations    1.1    The Apache Software License, Version 2.0
                org.checkerframework    checker-qual    2.5.2    The MIT License
                org.codehaus.mojo    animal-sniffer-annotations    1.17
            javax.inject    javax.inject    1    The Apache Software License, Version 2.0
    com.google.protobuf    protobuf-java    2.5.0    New BSD license
    io.netty    netty    3.10.6.Final    Apache License, Version 2.0
    javax.ws.rs    javax.ws.rs-api    2.1.1    EPL 2.0
    org.apache.avro    avro    1.7.7
        com.thoughtworks.paranamer    paranamer    2.3
        org.apache.commons    commons-compress    1.21
        org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
        org.codehaus.jackson    jackson-mapper-asl    1.9.13    The Apache Software License, Version 2.0
            org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
        org.slf4j    slf4j-api    1.7.36
        org.xerial.snappy    snappy-java    1.1.8.2    Apache-2.0
    org.apache.hadoop    hadoop-annotations    3.3.3
    org.apache.hadoop    hadoop-hdfs-client    3.3.3
        com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
        com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
            com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
            com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
        com.squareup.okhttp    okhttp    2.7.5
            com.squareup.okio    okio    1.6.0
    org.apache.hadoop    hadoop-yarn-client    3.3.3
        ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
        commons-cli    commons-cli    1.2
        org.apache.hadoop.thirdparty    hadoop-shaded-guava    1.1.1
        org.apache.hadoop    hadoop-annotations    3.3.3
        org.apache.hadoop    hadoop-yarn-api    3.3.3
            com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
            com.google.protobuf    protobuf-java    2.5.0    New BSD license
            javax.ws.rs    javax.ws.rs-api    2.1.1    EPL 2.0
            javax.xml.bind    jaxb-api    2.2.11    CDDL 1.1
            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.3
        org.apache.hadoop    hadoop-yarn-common    3.3.3
            ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
            com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
            com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
            com.fasterxml.jackson.jaxrs    jackson-jaxrs-json-provider    2.13.2
                com.fasterxml.jackson.jaxrs    jackson-jaxrs-base    2.13.2
                    com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
                        com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                        com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.module    jackson-module-jaxb-annotations    2.13.2
                    com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
                        com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                        com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                    jakarta.activation    jakarta.activation-api    1.2.2
                    jakarta.xml.bind    jakarta.xml.bind-api    2.3.3
                        jakarta.activation    jakarta.activation-api    1.2.2
            com.fasterxml.jackson.module    jackson-module-jaxb-annotations    2.13.2
                com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                jakarta.activation    jakarta.activation-api    1.2.2
                jakarta.xml.bind    jakarta.xml.bind-api    2.3.3
                    jakarta.activation    jakarta.activation-api    1.2.2
            com.google.inject.extensions    guice-servlet    4.0
                com.google.inject    guice    4.0
                    aopalliance    aopalliance    1.0    Public Domain
                    com.google.guava    guava    27.0-jre
                        com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
                        com.google.errorprone    error_prone_annotations    2.2.0    Apache 2.0
                        com.google.guava    failureaccess    1.0
                        com.google.guava    listenablefuture    9999.0-empty-to-avoid-conflict-with-guava
                        com.google.j2objc    j2objc-annotations    1.1    The Apache Software License, Version 2.0
                        org.checkerframework    checker-qual    2.5.2    The MIT License
                        org.codehaus.mojo    animal-sniffer-annotations    1.17
                    javax.inject    javax.inject    1    The Apache Software License, Version 2.0
            com.google.inject    guice    4.0
                aopalliance    aopalliance    1.0    Public Domain
                com.google.guava    guava    27.0-jre
                    com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
                    com.google.errorprone    error_prone_annotations    2.2.0    Apache 2.0
                    com.google.guava    failureaccess    1.0
                    com.google.guava    listenablefuture    9999.0-empty-to-avoid-conflict-with-guava
                    com.google.j2objc    j2objc-annotations    1.1    The Apache Software License, Version 2.0
                    org.checkerframework    checker-qual    2.5.2    The MIT License
                    org.codehaus.mojo    animal-sniffer-annotations    1.17
                javax.inject    javax.inject    1    The Apache Software License, Version 2.0
            com.google.protobuf    protobuf-java    2.5.0    New BSD license
            com.sun.jersey.contribs    jersey-guice    1.19
                com.google.inject.extensions    guice-servlet    4.0
                    com.google.inject    guice    4.0
                        aopalliance    aopalliance    1.0    Public Domain
                        com.google.guava    guava    27.0-jre
                            com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
                            com.google.errorprone    error_prone_annotations    2.2.0    Apache 2.0
                            com.google.guava    failureaccess    1.0
                            com.google.guava    listenablefuture    9999.0-empty-to-avoid-conflict-with-guava
                            com.google.j2objc    j2objc-annotations    1.1    The Apache Software License, Version 2.0
                            org.checkerframework    checker-qual    2.5.2    The MIT License
                            org.codehaus.mojo    animal-sniffer-annotations    1.17
                        javax.inject    javax.inject    1    The Apache Software License, Version 2.0
                com.google.inject    guice    4.0
                    aopalliance    aopalliance    1.0    Public Domain
                    com.google.guava    guava    27.0-jre
                        com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
                        com.google.errorprone    error_prone_annotations    2.2.0    Apache 2.0
                        com.google.guava    failureaccess    1.0
                        com.google.guava    listenablefuture    9999.0-empty-to-avoid-conflict-with-guava
                        com.google.j2objc    j2objc-annotations    1.1    The Apache Software License, Version 2.0
                        org.checkerframework    checker-qual    2.5.2    The MIT License
                        org.codehaus.mojo    animal-sniffer-annotations    1.17
                    javax.inject    javax.inject    1    The Apache Software License, Version 2.0
                com.sun.jersey    jersey-servlet    1.19
                    com.sun.jersey    jersey-server    1.19
                        com.sun.jersey    jersey-core    1.19
                            javax.ws.rs    jsr311-api    1.1.1    CDDL License
                javax.inject    javax.inject    1    The Apache Software License, Version 2.0
            com.sun.jersey    jersey-client    1.19
                com.sun.jersey    jersey-core    1.19
                    javax.ws.rs    jsr311-api    1.1.1    CDDL License
            com.sun.jersey    jersey-core    1.19
                javax.ws.rs    jsr311-api    1.1.1    CDDL License
            com.sun.jersey    jersey-json    1.19
                com.sun.jersey    jersey-core    1.19
                    javax.ws.rs    jsr311-api    1.1.1    CDDL License
                com.sun.xml.bind    jaxb-impl    2.2.3-1    CDDL 1.1
                    javax.xml.bind    jaxb-api    2.2.11    CDDL 1.1
                org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
                org.codehaus.jackson    jackson-jaxrs    1.9.2    The Apache Software License, Version 2.0
                    org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
                    org.codehaus.jackson    jackson-mapper-asl    1.9.13    The Apache Software License, Version 2.0
                        org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
                org.codehaus.jackson    jackson-mapper-asl    1.9.13    The Apache Software License, Version 2.0
                    org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
                org.codehaus.jackson    jackson-xc    1.9.2    The Apache Software License, Version 2.0
                    org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
                    org.codehaus.jackson    jackson-mapper-asl    1.9.13    The Apache Software License, Version 2.0
                        org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
                org.codehaus.jettison    jettison    1.1
            com.sun.jersey    jersey-server    1.19
                com.sun.jersey    jersey-core    1.19
                    javax.ws.rs    jsr311-api    1.1.1    CDDL License
            commons-cli    commons-cli    1.2
            commons-codec    commons-codec    1.15
            commons-io    commons-io    2.8.0
            javax.servlet    javax.servlet-api    3.1.0    CDDL + GPLv2 with classpath exception
            javax.ws.rs    javax.ws.rs-api    2.1.1    EPL 2.0
            javax.xml.bind    jaxb-api    2.2.11    CDDL 1.1
            org.apache.commons    commons-compress    1.21
            org.apache.hadoop.thirdparty    hadoop-shaded-guava    1.1.1
            org.apache.hadoop    hadoop-annotations    3.3.3
            org.apache.hadoop    hadoop-auth    3.3.3
                ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
                com.nimbusds    nimbus-jose-jwt    9.8.1    The Apache Software License, Version 2.0
                    com.github.stephenc.jcip    jcip-annotations    1.0-1    Apache License, Version 2.0
                commons-codec    commons-codec    1.15
                net.minidev    json-smart    2.4.7    The Apache Software License, Version 2.0
                    net.minidev    accessors-smart    2.4.7    The Apache Software License, Version 2.0
                        org.ow2.asm    asm    9.1    BSD-3-Clause
                org.apache.curator    curator-framework    4.2.0
                    org.apache.curator    curator-client    4.2.0
                org.apache.hadoop.thirdparty    hadoop-shaded-guava    1.1.1
                org.apache.httpcomponents    httpclient    4.5.13
                    commons-codec    commons-codec    1.15
                    commons-logging    commons-logging    1.2
                    org.apache.httpcomponents    httpcore    4.4.13
                org.apache.kerby    kerb-simplekdc    1.0.1
                    org.apache.kerby    kerb-admin    1.0.1
                        org.apache.kerby    kerb-server    1.0.1
                            org.apache.kerby    kerb-common    1.0.1
                                commons-io    commons-io    2.8.0
                                org.apache.kerby    kerb-crypto    1.0.1
                                    org.apache.kerby    kerb-core    1.0.1
                                        org.apache.kerby    kerby-pkix    1.0.1
                                            org.apache.kerby    kerby-asn1    1.0.1
                                            org.apache.kerby    kerby-util    1.0.1
                                            org.slf4j    slf4j-api    1.7.36
                                    org.apache.kerby    kerby-util    1.0.1
                                org.apache.kerby    kerby-config    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                            org.apache.kerby    kerb-identity    1.0.1
                                org.apache.kerby    kerb-core    1.0.1
                                    org.apache.kerby    kerby-pkix    1.0.1
                                        org.apache.kerby    kerby-asn1    1.0.1
                                        org.apache.kerby    kerby-util    1.0.1
                                        org.slf4j    slf4j-api    1.7.36
                                org.apache.kerby    kerby-config    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                        org.apache.kerby    kerb-util    1.0.1
                            org.apache.kerby    kerb-core    1.0.1
                                org.apache.kerby    kerby-pkix    1.0.1
                                    org.apache.kerby    kerby-asn1    1.0.1
                                    org.apache.kerby    kerby-util    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                            org.apache.kerby    kerb-crypto    1.0.1
                                org.apache.kerby    kerb-core    1.0.1
                                    org.apache.kerby    kerby-pkix    1.0.1
                                        org.apache.kerby    kerby-asn1    1.0.1
                                        org.apache.kerby    kerby-util    1.0.1
                                        org.slf4j    slf4j-api    1.7.36
                                org.apache.kerby    kerby-util    1.0.1
                            org.apache.kerby    kerby-config    1.0.1
                                org.slf4j    slf4j-api    1.7.36
                        org.apache.kerby    kerby-xdr    1.0.1
                    org.apache.kerby    kerb-client    1.0.1
                        org.apache.kerby    kerb-common    1.0.1
                            commons-io    commons-io    2.8.0
                            org.apache.kerby    kerb-crypto    1.0.1
                                org.apache.kerby    kerb-core    1.0.1
                                    org.apache.kerby    kerby-pkix    1.0.1
                                        org.apache.kerby    kerby-asn1    1.0.1
                                        org.apache.kerby    kerby-util    1.0.1
                                        org.slf4j    slf4j-api    1.7.36
                                org.apache.kerby    kerby-util    1.0.1
                            org.apache.kerby    kerby-config    1.0.1
                                org.slf4j    slf4j-api    1.7.36
                        org.apache.kerby    kerb-core    1.0.1
                            org.apache.kerby    kerby-pkix    1.0.1
                                org.apache.kerby    kerby-asn1    1.0.1
                                org.apache.kerby    kerby-util    1.0.1
                                org.slf4j    slf4j-api    1.7.36
                        org.apache.kerby    kerb-util    1.0.1
                            org.apache.kerby    kerb-core    1.0.1
                                org.apache.kerby    kerby-pkix    1.0.1
                                    org.apache.kerby    kerby-asn1    1.0.1
                                    org.apache.kerby    kerby-util    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                            org.apache.kerby    kerb-crypto    1.0.1
                                org.apache.kerby    kerb-core    1.0.1
                                    org.apache.kerby    kerby-pkix    1.0.1
                                        org.apache.kerby    kerby-asn1    1.0.1
                                        org.apache.kerby    kerby-util    1.0.1
                                        org.slf4j    slf4j-api    1.7.36
                                org.apache.kerby    kerby-util    1.0.1
                            org.apache.kerby    kerby-config    1.0.1
                                org.slf4j    slf4j-api    1.7.36
                        org.apache.kerby    kerby-config    1.0.1
                            org.slf4j    slf4j-api    1.7.36
                        org.apache.kerby    token-provider    1.0.1
                            com.nimbusds    nimbus-jose-jwt    9.8.1    The Apache Software License, Version 2.0
                                com.github.stephenc.jcip    jcip-annotations    1.0-1    Apache License, Version 2.0
                            org.apache.kerby    kerb-core    1.0.1
                                org.apache.kerby    kerby-pkix    1.0.1
                                    org.apache.kerby    kerby-asn1    1.0.1
                                    org.apache.kerby    kerby-util    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                org.apache.zookeeper    zookeeper    3.5.6
                    io.netty    netty-handler    4.1.42.Final
                        io.netty    netty-buffer    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                        io.netty    netty-codec    4.1.42.Final
                            io.netty    netty-buffer    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                            io.netty    netty-transport    4.1.42.Final
                                io.netty    netty-buffer    4.1.42.Final
                                    io.netty    netty-common    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                                io.netty    netty-resolver    4.1.42.Final
                                    io.netty    netty-common    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                        io.netty    netty-transport    4.1.42.Final
                            io.netty    netty-buffer    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                            io.netty    netty-resolver    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                    io.netty    netty-transport-native-epoll    4.1.42.Final
                        io.netty    netty-buffer    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                        io.netty    netty-transport-native-unix-common    4.1.42.Final
                            io.netty    netty-buffer    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                            io.netty    netty-transport    4.1.42.Final
                                io.netty    netty-buffer    4.1.42.Final
                                    io.netty    netty-common    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                                io.netty    netty-resolver    4.1.42.Final
                                    io.netty    netty-common    4.1.42.Final
                        io.netty    netty-transport    4.1.42.Final
                            io.netty    netty-buffer    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                            io.netty    netty-resolver    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                    org.apache.yetus    audience-annotations    0.5.0
                    org.apache.zookeeper    zookeeper-jute    3.5.6
                        org.apache.yetus    audience-annotations    0.5.0
                    org.slf4j    slf4j-api    1.7.36
                org.slf4j    slf4j-api    1.7.36
                org.slf4j    slf4j-reload4j    1.7.36
                    ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
                    org.slf4j    slf4j-api    1.7.36
            org.apache.hadoop    hadoop-hdfs-client    3.3.3
                com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                com.squareup.okhttp    okhttp    2.7.5
                    com.squareup.okio    okio    1.6.0
            org.apache.hadoop    hadoop-yarn-api    3.3.3
                com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                com.google.protobuf    protobuf-java    2.5.0    New BSD license
                javax.ws.rs    javax.ws.rs-api    2.1.1    EPL 2.0
                javax.xml.bind    jaxb-api    2.2.11    CDDL 1.1
                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.3
            org.eclipse.jetty    jetty-util    9.4.43.v20210629
            org.slf4j    slf4j-api    1.7.36
        org.eclipse.jetty.websocket    websocket-client    9.4.43.v20210629
            org.eclipse.jetty.websocket    websocket-common    9.4.43.v20210629
                org.eclipse.jetty.websocket    websocket-api    9.4.43.v20210629
                org.eclipse.jetty    jetty-io    9.4.43.v20210629
                    org.eclipse.jetty    jetty-util    9.4.43.v20210629
                org.eclipse.jetty    jetty-util    9.4.43.v20210629
            org.eclipse.jetty    jetty-client    9.4.43.v20210629
                org.eclipse.jetty    jetty-http    9.4.43.v20210629
                    org.eclipse.jetty    jetty-io    9.4.43.v20210629
                        org.eclipse.jetty    jetty-util    9.4.43.v20210629
                    org.eclipse.jetty    jetty-util    9.4.43.v20210629
                org.eclipse.jetty    jetty-io    9.4.43.v20210629
                    org.eclipse.jetty    jetty-util    9.4.43.v20210629
            org.eclipse.jetty    jetty-io    9.4.43.v20210629
                org.eclipse.jetty    jetty-util    9.4.43.v20210629
            org.eclipse.jetty    jetty-util    9.4.43.v20210629
        org.jline    jline    3.9.0
    org.apache.hadoop    hadoop-yarn-common    3.3.3
        ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
        com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
        com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
            com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
            com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
        com.fasterxml.jackson.jaxrs    jackson-jaxrs-json-provider    2.13.2
            com.fasterxml.jackson.jaxrs    jackson-jaxrs-base    2.13.2
                com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
            com.fasterxml.jackson.module    jackson-module-jaxb-annotations    2.13.2
                com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                jakarta.activation    jakarta.activation-api    1.2.2
                jakarta.xml.bind    jakarta.xml.bind-api    2.3.3
                    jakarta.activation    jakarta.activation-api    1.2.2
        com.fasterxml.jackson.module    jackson-module-jaxb-annotations    2.13.2
            com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
            com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
            com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
            jakarta.activation    jakarta.activation-api    1.2.2
            jakarta.xml.bind    jakarta.xml.bind-api    2.3.3
                jakarta.activation    jakarta.activation-api    1.2.2
        com.google.inject.extensions    guice-servlet    4.0
            com.google.inject    guice    4.0
                aopalliance    aopalliance    1.0    Public Domain
                com.google.guava    guava    27.0-jre
                    com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
                    com.google.errorprone    error_prone_annotations    2.2.0    Apache 2.0
                    com.google.guava    failureaccess    1.0
                    com.google.guava    listenablefuture    9999.0-empty-to-avoid-conflict-with-guava
                    com.google.j2objc    j2objc-annotations    1.1    The Apache Software License, Version 2.0
                    org.checkerframework    checker-qual    2.5.2    The MIT License
                    org.codehaus.mojo    animal-sniffer-annotations    1.17
                javax.inject    javax.inject    1    The Apache Software License, Version 2.0
        com.google.inject    guice    4.0
            aopalliance    aopalliance    1.0    Public Domain
            com.google.guava    guava    27.0-jre
                com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
                com.google.errorprone    error_prone_annotations    2.2.0    Apache 2.0
                com.google.guava    failureaccess    1.0
                com.google.guava    listenablefuture    9999.0-empty-to-avoid-conflict-with-guava
                com.google.j2objc    j2objc-annotations    1.1    The Apache Software License, Version 2.0
                org.checkerframework    checker-qual    2.5.2    The MIT License
                org.codehaus.mojo    animal-sniffer-annotations    1.17
            javax.inject    javax.inject    1    The Apache Software License, Version 2.0
        com.google.protobuf    protobuf-java    2.5.0    New BSD license
        com.sun.jersey.contribs    jersey-guice    1.19
            com.google.inject.extensions    guice-servlet    4.0
                com.google.inject    guice    4.0
                    aopalliance    aopalliance    1.0    Public Domain
                    com.google.guava    guava    27.0-jre
                        com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
                        com.google.errorprone    error_prone_annotations    2.2.0    Apache 2.0
                        com.google.guava    failureaccess    1.0
                        com.google.guava    listenablefuture    9999.0-empty-to-avoid-conflict-with-guava
                        com.google.j2objc    j2objc-annotations    1.1    The Apache Software License, Version 2.0
                        org.checkerframework    checker-qual    2.5.2    The MIT License
                        org.codehaus.mojo    animal-sniffer-annotations    1.17
                    javax.inject    javax.inject    1    The Apache Software License, Version 2.0
            com.google.inject    guice    4.0
                aopalliance    aopalliance    1.0    Public Domain
                com.google.guava    guava    27.0-jre
                    com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
                    com.google.errorprone    error_prone_annotations    2.2.0    Apache 2.0
                    com.google.guava    failureaccess    1.0
                    com.google.guava    listenablefuture    9999.0-empty-to-avoid-conflict-with-guava
                    com.google.j2objc    j2objc-annotations    1.1    The Apache Software License, Version 2.0
                    org.checkerframework    checker-qual    2.5.2    The MIT License
                    org.codehaus.mojo    animal-sniffer-annotations    1.17
                javax.inject    javax.inject    1    The Apache Software License, Version 2.0
            com.sun.jersey    jersey-servlet    1.19
                com.sun.jersey    jersey-server    1.19
                    com.sun.jersey    jersey-core    1.19
                        javax.ws.rs    jsr311-api    1.1.1    CDDL License
            javax.inject    javax.inject    1    The Apache Software License, Version 2.0
        com.sun.jersey    jersey-client    1.19
            com.sun.jersey    jersey-core    1.19
                javax.ws.rs    jsr311-api    1.1.1    CDDL License
        com.sun.jersey    jersey-core    1.19
            javax.ws.rs    jsr311-api    1.1.1    CDDL License
        com.sun.jersey    jersey-json    1.19
            com.sun.jersey    jersey-core    1.19
                javax.ws.rs    jsr311-api    1.1.1    CDDL License
            com.sun.xml.bind    jaxb-impl    2.2.3-1    CDDL 1.1
                javax.xml.bind    jaxb-api    2.2.11    CDDL 1.1
            org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
            org.codehaus.jackson    jackson-jaxrs    1.9.2    The Apache Software License, Version 2.0
                org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
                org.codehaus.jackson    jackson-mapper-asl    1.9.13    The Apache Software License, Version 2.0
                    org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
            org.codehaus.jackson    jackson-mapper-asl    1.9.13    The Apache Software License, Version 2.0
                org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
            org.codehaus.jackson    jackson-xc    1.9.2    The Apache Software License, Version 2.0
                org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
                org.codehaus.jackson    jackson-mapper-asl    1.9.13    The Apache Software License, Version 2.0
                    org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
            org.codehaus.jettison    jettison    1.1
        com.sun.jersey    jersey-server    1.19
            com.sun.jersey    jersey-core    1.19
                javax.ws.rs    jsr311-api    1.1.1    CDDL License
        commons-cli    commons-cli    1.2
        commons-codec    commons-codec    1.15
        commons-io    commons-io    2.8.0
        javax.servlet    javax.servlet-api    3.1.0    CDDL + GPLv2 with classpath exception
        javax.ws.rs    javax.ws.rs-api    2.1.1    EPL 2.0
        javax.xml.bind    jaxb-api    2.2.11    CDDL 1.1
        org.apache.commons    commons-compress    1.21
        org.apache.hadoop.thirdparty    hadoop-shaded-guava    1.1.1
        org.apache.hadoop    hadoop-annotations    3.3.3
        org.apache.hadoop    hadoop-auth    3.3.3
            ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
            com.nimbusds    nimbus-jose-jwt    9.8.1    The Apache Software License, Version 2.0
                com.github.stephenc.jcip    jcip-annotations    1.0-1    Apache License, Version 2.0
            commons-codec    commons-codec    1.15
            net.minidev    json-smart    2.4.7    The Apache Software License, Version 2.0
                net.minidev    accessors-smart    2.4.7    The Apache Software License, Version 2.0
                    org.ow2.asm    asm    9.1    BSD-3-Clause
            org.apache.curator    curator-framework    4.2.0
                org.apache.curator    curator-client    4.2.0
            org.apache.hadoop.thirdparty    hadoop-shaded-guava    1.1.1
            org.apache.httpcomponents    httpclient    4.5.13
                commons-codec    commons-codec    1.15
                commons-logging    commons-logging    1.2
                org.apache.httpcomponents    httpcore    4.4.13
            org.apache.kerby    kerb-simplekdc    1.0.1
                org.apache.kerby    kerb-admin    1.0.1
                    org.apache.kerby    kerb-server    1.0.1
                        org.apache.kerby    kerb-common    1.0.1
                            commons-io    commons-io    2.8.0
                            org.apache.kerby    kerb-crypto    1.0.1
                                org.apache.kerby    kerb-core    1.0.1
                                    org.apache.kerby    kerby-pkix    1.0.1
                                        org.apache.kerby    kerby-asn1    1.0.1
                                        org.apache.kerby    kerby-util    1.0.1
                                        org.slf4j    slf4j-api    1.7.36
                                org.apache.kerby    kerby-util    1.0.1
                            org.apache.kerby    kerby-config    1.0.1
                                org.slf4j    slf4j-api    1.7.36
                        org.apache.kerby    kerb-identity    1.0.1
                            org.apache.kerby    kerb-core    1.0.1
                                org.apache.kerby    kerby-pkix    1.0.1
                                    org.apache.kerby    kerby-asn1    1.0.1
                                    org.apache.kerby    kerby-util    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                            org.apache.kerby    kerby-config    1.0.1
                                org.slf4j    slf4j-api    1.7.36
                    org.apache.kerby    kerb-util    1.0.1
                        org.apache.kerby    kerb-core    1.0.1
                            org.apache.kerby    kerby-pkix    1.0.1
                                org.apache.kerby    kerby-asn1    1.0.1
                                org.apache.kerby    kerby-util    1.0.1
                                org.slf4j    slf4j-api    1.7.36
                        org.apache.kerby    kerb-crypto    1.0.1
                            org.apache.kerby    kerb-core    1.0.1
                                org.apache.kerby    kerby-pkix    1.0.1
                                    org.apache.kerby    kerby-asn1    1.0.1
                                    org.apache.kerby    kerby-util    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                            org.apache.kerby    kerby-util    1.0.1
                        org.apache.kerby    kerby-config    1.0.1
                            org.slf4j    slf4j-api    1.7.36
                    org.apache.kerby    kerby-xdr    1.0.1
                org.apache.kerby    kerb-client    1.0.1
                    org.apache.kerby    kerb-common    1.0.1
                        commons-io    commons-io    2.8.0
                        org.apache.kerby    kerb-crypto    1.0.1
                            org.apache.kerby    kerb-core    1.0.1
                                org.apache.kerby    kerby-pkix    1.0.1
                                    org.apache.kerby    kerby-asn1    1.0.1
                                    org.apache.kerby    kerby-util    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                            org.apache.kerby    kerby-util    1.0.1
                        org.apache.kerby    kerby-config    1.0.1
                            org.slf4j    slf4j-api    1.7.36
                    org.apache.kerby    kerb-core    1.0.1
                        org.apache.kerby    kerby-pkix    1.0.1
                            org.apache.kerby    kerby-asn1    1.0.1
                            org.apache.kerby    kerby-util    1.0.1
                            org.slf4j    slf4j-api    1.7.36
                    org.apache.kerby    kerb-util    1.0.1
                        org.apache.kerby    kerb-core    1.0.1
                            org.apache.kerby    kerby-pkix    1.0.1
                                org.apache.kerby    kerby-asn1    1.0.1
                                org.apache.kerby    kerby-util    1.0.1
                                org.slf4j    slf4j-api    1.7.36
                        org.apache.kerby    kerb-crypto    1.0.1
                            org.apache.kerby    kerb-core    1.0.1
                                org.apache.kerby    kerby-pkix    1.0.1
                                    org.apache.kerby    kerby-asn1    1.0.1
                                    org.apache.kerby    kerby-util    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                            org.apache.kerby    kerby-util    1.0.1
                        org.apache.kerby    kerby-config    1.0.1
                            org.slf4j    slf4j-api    1.7.36
                    org.apache.kerby    kerby-config    1.0.1
                        org.slf4j    slf4j-api    1.7.36
                    org.apache.kerby    token-provider    1.0.1
                        com.nimbusds    nimbus-jose-jwt    9.8.1    The Apache Software License, Version 2.0
                            com.github.stephenc.jcip    jcip-annotations    1.0-1    Apache License, Version 2.0
                        org.apache.kerby    kerb-core    1.0.1
                            org.apache.kerby    kerby-pkix    1.0.1
                                org.apache.kerby    kerby-asn1    1.0.1
                                org.apache.kerby    kerby-util    1.0.1
                                org.slf4j    slf4j-api    1.7.36
            org.apache.zookeeper    zookeeper    3.5.6
                io.netty    netty-handler    4.1.42.Final
                    io.netty    netty-buffer    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                    io.netty    netty-codec    4.1.42.Final
                        io.netty    netty-buffer    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                        io.netty    netty-transport    4.1.42.Final
                            io.netty    netty-buffer    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                            io.netty    netty-resolver    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
                    io.netty    netty-transport    4.1.42.Final
                        io.netty    netty-buffer    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                        io.netty    netty-resolver    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                io.netty    netty-transport-native-epoll    4.1.42.Final
                    io.netty    netty-buffer    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
                    io.netty    netty-transport-native-unix-common    4.1.42.Final
                        io.netty    netty-buffer    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                        io.netty    netty-transport    4.1.42.Final
                            io.netty    netty-buffer    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                            io.netty    netty-resolver    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                    io.netty    netty-transport    4.1.42.Final
                        io.netty    netty-buffer    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                        io.netty    netty-resolver    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                org.apache.yetus    audience-annotations    0.5.0
                org.apache.zookeeper    zookeeper-jute    3.5.6
                    org.apache.yetus    audience-annotations    0.5.0
                org.slf4j    slf4j-api    1.7.36
            org.slf4j    slf4j-api    1.7.36
            org.slf4j    slf4j-reload4j    1.7.36
                ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
                org.slf4j    slf4j-api    1.7.36
        org.apache.hadoop    hadoop-hdfs-client    3.3.3
            com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
            com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
            com.squareup.okhttp    okhttp    2.7.5
                com.squareup.okio    okio    1.6.0
        org.apache.hadoop    hadoop-yarn-api    3.3.3
            com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
            com.google.protobuf    protobuf-java    2.5.0    New BSD license
            javax.ws.rs    javax.ws.rs-api    2.1.1    EPL 2.0
            javax.xml.bind    jaxb-api    2.2.11    CDDL 1.1
            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.3
        org.eclipse.jetty    jetty-util    9.4.43.v20210629
        org.slf4j    slf4j-api    1.7.36
    org.slf4j    slf4j-api    1.7.36
    org.slf4j    slf4j-reload4j    1.7.36
        ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
        org.slf4j    slf4j-api    1.7.36
org.apache.hbase    hbase-common    1.4.13
    com.github.stephenc.findbugs    findbugs-annotations    1.3.9-1    Apache License, Version 2.0
    com.google.guava    guava    27.0-jre
        com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
        com.google.errorprone    error_prone_annotations    2.2.0    Apache 2.0
        com.google.guava    failureaccess    1.0
        com.google.guava    listenablefuture    9999.0-empty-to-avoid-conflict-with-guava
        com.google.j2objc    j2objc-annotations    1.1    The Apache Software License, Version 2.0
        org.checkerframework    checker-qual    2.5.2    The MIT License
        org.codehaus.mojo    animal-sniffer-annotations    1.17
    com.google.protobuf    protobuf-java    2.5.0    New BSD license
    commons-codec    commons-codec    1.15
    commons-collections    commons-collections    3.2.2
    commons-io    commons-io    2.8.0
    commons-lang    commons-lang    2.6
    commons-logging    commons-logging    1.2
    junit    junit    4.12    Eclipse Public License 1.0
        org.hamcrest    hamcrest-core    1.3
    org.apache.hadoop    hadoop-common    3.3.3
        ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
        com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
            com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
            com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
        com.fasterxml.woodstox    woodstox-core    5.3.0    The Apache License, Version 2.0
            org.codehaus.woodstox    stax2-api    4.2.1    The BSD License
        com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
        com.google.code.gson    gson    2.8.9    Apache-2.0
        com.google.guava    guava    27.0-jre
            com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
            com.google.errorprone    error_prone_annotations    2.2.0    Apache 2.0
            com.google.guava    failureaccess    1.0
            com.google.guava    listenablefuture    9999.0-empty-to-avoid-conflict-with-guava
            com.google.j2objc    j2objc-annotations    1.1    The Apache Software License, Version 2.0
            org.checkerframework    checker-qual    2.5.2    The MIT License
            org.codehaus.mojo    animal-sniffer-annotations    1.17
        com.google.protobuf    protobuf-java    2.5.0    New BSD license
        com.google.re2j    re2j    1.1    The Go license
        com.jcraft    jsch    0.1.55    Revised BSD
        com.sun.jersey    jersey-core    1.19
            javax.ws.rs    jsr311-api    1.1.1    CDDL License
        com.sun.jersey    jersey-json    1.19
            com.sun.jersey    jersey-core    1.19
                javax.ws.rs    jsr311-api    1.1.1    CDDL License
            com.sun.xml.bind    jaxb-impl    2.2.3-1    CDDL 1.1
                javax.xml.bind    jaxb-api    2.2.11    CDDL 1.1
            org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
            org.codehaus.jackson    jackson-jaxrs    1.9.2    The Apache Software License, Version 2.0
                org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
                org.codehaus.jackson    jackson-mapper-asl    1.9.13    The Apache Software License, Version 2.0
                    org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
            org.codehaus.jackson    jackson-mapper-asl    1.9.13    The Apache Software License, Version 2.0
                org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
            org.codehaus.jackson    jackson-xc    1.9.2    The Apache Software License, Version 2.0
                org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
                org.codehaus.jackson    jackson-mapper-asl    1.9.13    The Apache Software License, Version 2.0
                    org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
            org.codehaus.jettison    jettison    1.1
        com.sun.jersey    jersey-server    1.19
            com.sun.jersey    jersey-core    1.19
                javax.ws.rs    jsr311-api    1.1.1    CDDL License
        com.sun.jersey    jersey-servlet    1.19
            com.sun.jersey    jersey-server    1.19
                com.sun.jersey    jersey-core    1.19
                    javax.ws.rs    jsr311-api    1.1.1    CDDL License
        commons-beanutils    commons-beanutils    1.9.4
            commons-collections    commons-collections    3.2.2
            commons-logging    commons-logging    1.2
        commons-cli    commons-cli    1.2
        commons-codec    commons-codec    1.15
        commons-collections    commons-collections    3.2.2
        commons-io    commons-io    2.8.0
        commons-logging    commons-logging    1.2
        commons-net    commons-net    3.6
        dnsjava    dnsjava    2.1.7    BSD 2-Clause license
        jakarta.activation    jakarta.activation-api    1.2.2
        javax.servlet.jsp    jsp-api    2.1
        javax.servlet    javax.servlet-api    3.1.0    CDDL + GPLv2 with classpath exception
        org.apache.avro    avro    1.7.7
            com.thoughtworks.paranamer    paranamer    2.3
            org.apache.commons    commons-compress    1.21
            org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
            org.codehaus.jackson    jackson-mapper-asl    1.9.13    The Apache Software License, Version 2.0
                org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
            org.slf4j    slf4j-api    1.7.36
            org.xerial.snappy    snappy-java    1.1.8.2    Apache-2.0
        org.apache.commons    commons-compress    1.21
        org.apache.commons    commons-configuration2    2.1.1
            commons-logging    commons-logging    1.2
        org.apache.commons    commons-lang3    3.12.0
        org.apache.commons    commons-math3    3.1.1
        org.apache.commons    commons-text    1.4
            org.apache.commons    commons-lang3    3.12.0
        org.apache.curator    curator-client    4.2.0
        org.apache.curator    curator-recipes    4.2.0
            org.apache.curator    curator-framework    4.2.0
                org.apache.curator    curator-client    4.2.0
        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.3
        org.apache.hadoop    hadoop-auth    3.3.3
            ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
            com.nimbusds    nimbus-jose-jwt    9.8.1    The Apache Software License, Version 2.0
                com.github.stephenc.jcip    jcip-annotations    1.0-1    Apache License, Version 2.0
            commons-codec    commons-codec    1.15
            net.minidev    json-smart    2.4.7    The Apache Software License, Version 2.0
                net.minidev    accessors-smart    2.4.7    The Apache Software License, Version 2.0
                    org.ow2.asm    asm    9.1    BSD-3-Clause
            org.apache.curator    curator-framework    4.2.0
                org.apache.curator    curator-client    4.2.0
            org.apache.hadoop.thirdparty    hadoop-shaded-guava    1.1.1
            org.apache.httpcomponents    httpclient    4.5.13
                commons-codec    commons-codec    1.15
                commons-logging    commons-logging    1.2
                org.apache.httpcomponents    httpcore    4.4.13
            org.apache.kerby    kerb-simplekdc    1.0.1
                org.apache.kerby    kerb-admin    1.0.1
                    org.apache.kerby    kerb-server    1.0.1
                        org.apache.kerby    kerb-common    1.0.1
                            commons-io    commons-io    2.8.0
                            org.apache.kerby    kerb-crypto    1.0.1
                                org.apache.kerby    kerb-core    1.0.1
                                    org.apache.kerby    kerby-pkix    1.0.1
                                        org.apache.kerby    kerby-asn1    1.0.1
                                        org.apache.kerby    kerby-util    1.0.1
                                        org.slf4j    slf4j-api    1.7.36
                                org.apache.kerby    kerby-util    1.0.1
                            org.apache.kerby    kerby-config    1.0.1
                                org.slf4j    slf4j-api    1.7.36
                        org.apache.kerby    kerb-identity    1.0.1
                            org.apache.kerby    kerb-core    1.0.1
                                org.apache.kerby    kerby-pkix    1.0.1
                                    org.apache.kerby    kerby-asn1    1.0.1
                                    org.apache.kerby    kerby-util    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                            org.apache.kerby    kerby-config    1.0.1
                                org.slf4j    slf4j-api    1.7.36
                    org.apache.kerby    kerb-util    1.0.1
                        org.apache.kerby    kerb-core    1.0.1
                            org.apache.kerby    kerby-pkix    1.0.1
                                org.apache.kerby    kerby-asn1    1.0.1
                                org.apache.kerby    kerby-util    1.0.1
                                org.slf4j    slf4j-api    1.7.36
                        org.apache.kerby    kerb-crypto    1.0.1
                            org.apache.kerby    kerb-core    1.0.1
                                org.apache.kerby    kerby-pkix    1.0.1
                                    org.apache.kerby    kerby-asn1    1.0.1
                                    org.apache.kerby    kerby-util    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                            org.apache.kerby    kerby-util    1.0.1
                        org.apache.kerby    kerby-config    1.0.1
                            org.slf4j    slf4j-api    1.7.36
                    org.apache.kerby    kerby-xdr    1.0.1
                org.apache.kerby    kerb-client    1.0.1
                    org.apache.kerby    kerb-common    1.0.1
                        commons-io    commons-io    2.8.0
                        org.apache.kerby    kerb-crypto    1.0.1
                            org.apache.kerby    kerb-core    1.0.1
                                org.apache.kerby    kerby-pkix    1.0.1
                                    org.apache.kerby    kerby-asn1    1.0.1
                                    org.apache.kerby    kerby-util    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                            org.apache.kerby    kerby-util    1.0.1
                        org.apache.kerby    kerby-config    1.0.1
                            org.slf4j    slf4j-api    1.7.36
                    org.apache.kerby    kerb-core    1.0.1
                        org.apache.kerby    kerby-pkix    1.0.1
                            org.apache.kerby    kerby-asn1    1.0.1
                            org.apache.kerby    kerby-util    1.0.1
                            org.slf4j    slf4j-api    1.7.36
                    org.apache.kerby    kerb-util    1.0.1
                        org.apache.kerby    kerb-core    1.0.1
                            org.apache.kerby    kerby-pkix    1.0.1
                                org.apache.kerby    kerby-asn1    1.0.1
                                org.apache.kerby    kerby-util    1.0.1
                                org.slf4j    slf4j-api    1.7.36
                        org.apache.kerby    kerb-crypto    1.0.1
                            org.apache.kerby    kerb-core    1.0.1
                                org.apache.kerby    kerby-pkix    1.0.1
                                    org.apache.kerby    kerby-asn1    1.0.1
                                    org.apache.kerby    kerby-util    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                            org.apache.kerby    kerby-util    1.0.1
                        org.apache.kerby    kerby-config    1.0.1
                            org.slf4j    slf4j-api    1.7.36
                    org.apache.kerby    kerby-config    1.0.1
                        org.slf4j    slf4j-api    1.7.36
                    org.apache.kerby    token-provider    1.0.1
                        com.nimbusds    nimbus-jose-jwt    9.8.1    The Apache Software License, Version 2.0
                            com.github.stephenc.jcip    jcip-annotations    1.0-1    Apache License, Version 2.0
                        org.apache.kerby    kerb-core    1.0.1
                            org.apache.kerby    kerby-pkix    1.0.1
                                org.apache.kerby    kerby-asn1    1.0.1
                                org.apache.kerby    kerby-util    1.0.1
                                org.slf4j    slf4j-api    1.7.36
            org.apache.zookeeper    zookeeper    3.5.6
                io.netty    netty-handler    4.1.42.Final
                    io.netty    netty-buffer    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                    io.netty    netty-codec    4.1.42.Final
                        io.netty    netty-buffer    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                        io.netty    netty-transport    4.1.42.Final
                            io.netty    netty-buffer    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                            io.netty    netty-resolver    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
                    io.netty    netty-transport    4.1.42.Final
                        io.netty    netty-buffer    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                        io.netty    netty-resolver    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                io.netty    netty-transport-native-epoll    4.1.42.Final
                    io.netty    netty-buffer    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
                    io.netty    netty-transport-native-unix-common    4.1.42.Final
                        io.netty    netty-buffer    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                        io.netty    netty-transport    4.1.42.Final
                            io.netty    netty-buffer    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                            io.netty    netty-resolver    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                    io.netty    netty-transport    4.1.42.Final
                        io.netty    netty-buffer    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                        io.netty    netty-resolver    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                org.apache.yetus    audience-annotations    0.5.0
                org.apache.zookeeper    zookeeper-jute    3.5.6
                    org.apache.yetus    audience-annotations    0.5.0
                org.slf4j    slf4j-api    1.7.36
            org.slf4j    slf4j-api    1.7.36
            org.slf4j    slf4j-reload4j    1.7.36
                ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
                org.slf4j    slf4j-api    1.7.36
        org.apache.httpcomponents    httpclient    4.5.13
            commons-codec    commons-codec    1.15
            commons-logging    commons-logging    1.2
            org.apache.httpcomponents    httpcore    4.4.13
        org.apache.kerby    kerb-core    1.0.1
            org.apache.kerby    kerby-pkix    1.0.1
                org.apache.kerby    kerby-asn1    1.0.1
                org.apache.kerby    kerby-util    1.0.1
                org.slf4j    slf4j-api    1.7.36
        org.apache.zookeeper    zookeeper    3.5.6
            io.netty    netty-handler    4.1.42.Final
                io.netty    netty-buffer    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
                io.netty    netty-codec    4.1.42.Final
                    io.netty    netty-buffer    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
                    io.netty    netty-transport    4.1.42.Final
                        io.netty    netty-buffer    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                        io.netty    netty-resolver    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                io.netty    netty-common    4.1.42.Final
                io.netty    netty-transport    4.1.42.Final
                    io.netty    netty-buffer    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
                    io.netty    netty-resolver    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
            io.netty    netty-transport-native-epoll    4.1.42.Final
                io.netty    netty-buffer    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
                io.netty    netty-common    4.1.42.Final
                io.netty    netty-transport-native-unix-common    4.1.42.Final
                    io.netty    netty-buffer    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
                    io.netty    netty-transport    4.1.42.Final
                        io.netty    netty-buffer    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                        io.netty    netty-resolver    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                io.netty    netty-transport    4.1.42.Final
                    io.netty    netty-buffer    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                    io.netty    netty-common    4.1.42.Final
                    io.netty    netty-resolver    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
            org.apache.yetus    audience-annotations    0.5.0
            org.apache.zookeeper    zookeeper-jute    3.5.6
                org.apache.yetus    audience-annotations    0.5.0
            org.slf4j    slf4j-api    1.7.36
        org.codehaus.woodstox    stax2-api    4.2.1    The BSD License
        org.eclipse.jetty    jetty-server    9.4.43.v20210629
            javax.servlet    javax.servlet-api    3.1.0    CDDL + GPLv2 with classpath exception
            org.eclipse.jetty    jetty-http    9.4.43.v20210629
                org.eclipse.jetty    jetty-io    9.4.43.v20210629
                    org.eclipse.jetty    jetty-util    9.4.43.v20210629
                org.eclipse.jetty    jetty-util    9.4.43.v20210629
            org.eclipse.jetty    jetty-io    9.4.43.v20210629
                org.eclipse.jetty    jetty-util    9.4.43.v20210629
        org.eclipse.jetty    jetty-servlet    9.4.43.v20210629
            org.eclipse.jetty    jetty-security    9.4.43.v20210629
                org.eclipse.jetty    jetty-server    9.4.43.v20210629
                    javax.servlet    javax.servlet-api    3.1.0    CDDL + GPLv2 with classpath exception
                    org.eclipse.jetty    jetty-http    9.4.43.v20210629
                        org.eclipse.jetty    jetty-io    9.4.43.v20210629
                            org.eclipse.jetty    jetty-util    9.4.43.v20210629
                        org.eclipse.jetty    jetty-util    9.4.43.v20210629
                    org.eclipse.jetty    jetty-io    9.4.43.v20210629
                        org.eclipse.jetty    jetty-util    9.4.43.v20210629
            org.eclipse.jetty    jetty-util-ajax    9.4.43.v20210629
                org.eclipse.jetty    jetty-util    9.4.43.v20210629
        org.eclipse.jetty    jetty-util    9.4.43.v20210629
        org.eclipse.jetty    jetty-webapp    9.4.43.v20210629
            org.eclipse.jetty    jetty-servlet    9.4.43.v20210629
                org.eclipse.jetty    jetty-security    9.4.43.v20210629
                    org.eclipse.jetty    jetty-server    9.4.43.v20210629
                        javax.servlet    javax.servlet-api    3.1.0    CDDL + GPLv2 with classpath exception
                        org.eclipse.jetty    jetty-http    9.4.43.v20210629
                            org.eclipse.jetty    jetty-io    9.4.43.v20210629
                                org.eclipse.jetty    jetty-util    9.4.43.v20210629
                            org.eclipse.jetty    jetty-util    9.4.43.v20210629
                        org.eclipse.jetty    jetty-io    9.4.43.v20210629
                            org.eclipse.jetty    jetty-util    9.4.43.v20210629
                org.eclipse.jetty    jetty-util-ajax    9.4.43.v20210629
                    org.eclipse.jetty    jetty-util    9.4.43.v20210629
            org.eclipse.jetty    jetty-xml    9.4.43.v20210629
                org.eclipse.jetty    jetty-util    9.4.43.v20210629
        org.slf4j    slf4j-api    1.7.36
        org.slf4j    slf4j-reload4j    1.7.36
            ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
            org.slf4j    slf4j-api    1.7.36
        org.xerial.snappy    snappy-java    1.1.8.2    Apache-2.0
    org.apache.hadoop    hadoop-mapreduce-client-core    3.3.3
        com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
            com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
            com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
        com.google.inject.extensions    guice-servlet    4.0
            com.google.inject    guice    4.0
                aopalliance    aopalliance    1.0    Public Domain
                com.google.guava    guava    27.0-jre
                    com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
                    com.google.errorprone    error_prone_annotations    2.2.0    Apache 2.0
                    com.google.guava    failureaccess    1.0
                    com.google.guava    listenablefuture    9999.0-empty-to-avoid-conflict-with-guava
                    com.google.j2objc    j2objc-annotations    1.1    The Apache Software License, Version 2.0
                    org.checkerframework    checker-qual    2.5.2    The MIT License
                    org.codehaus.mojo    animal-sniffer-annotations    1.17
                javax.inject    javax.inject    1    The Apache Software License, Version 2.0
        com.google.protobuf    protobuf-java    2.5.0    New BSD license
        io.netty    netty    3.10.6.Final    Apache License, Version 2.0
        javax.ws.rs    javax.ws.rs-api    2.1.1    EPL 2.0
        org.apache.avro    avro    1.7.7
            com.thoughtworks.paranamer    paranamer    2.3
            org.apache.commons    commons-compress    1.21
            org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
            org.codehaus.jackson    jackson-mapper-asl    1.9.13    The Apache Software License, Version 2.0
                org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
            org.slf4j    slf4j-api    1.7.36
            org.xerial.snappy    snappy-java    1.1.8.2    Apache-2.0
        org.apache.hadoop    hadoop-annotations    3.3.3
        org.apache.hadoop    hadoop-hdfs-client    3.3.3
            com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
            com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
            com.squareup.okhttp    okhttp    2.7.5
                com.squareup.okio    okio    1.6.0
        org.apache.hadoop    hadoop-yarn-client    3.3.3
            ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
            commons-cli    commons-cli    1.2
            org.apache.hadoop.thirdparty    hadoop-shaded-guava    1.1.1
            org.apache.hadoop    hadoop-annotations    3.3.3
            org.apache.hadoop    hadoop-yarn-api    3.3.3
                com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                com.google.protobuf    protobuf-java    2.5.0    New BSD license
                javax.ws.rs    javax.ws.rs-api    2.1.1    EPL 2.0
                javax.xml.bind    jaxb-api    2.2.11    CDDL 1.1
                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.3
            org.apache.hadoop    hadoop-yarn-common    3.3.3
                ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
                com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.jaxrs    jackson-jaxrs-json-provider    2.13.2
                    com.fasterxml.jackson.jaxrs    jackson-jaxrs-base    2.13.2
                        com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                        com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
                            com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                            com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.module    jackson-module-jaxb-annotations    2.13.2
                        com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                        com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                        com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
                            com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                            com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                        jakarta.activation    jakarta.activation-api    1.2.2
                        jakarta.xml.bind    jakarta.xml.bind-api    2.3.3
                            jakarta.activation    jakarta.activation-api    1.2.2
                com.fasterxml.jackson.module    jackson-module-jaxb-annotations    2.13.2
                    com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
                        com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                        com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                    jakarta.activation    jakarta.activation-api    1.2.2
                    jakarta.xml.bind    jakarta.xml.bind-api    2.3.3
                        jakarta.activation    jakarta.activation-api    1.2.2
                com.google.inject.extensions    guice-servlet    4.0
                    com.google.inject    guice    4.0
                        aopalliance    aopalliance    1.0    Public Domain
                        com.google.guava    guava    27.0-jre
                            com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
                            com.google.errorprone    error_prone_annotations    2.2.0    Apache 2.0
                            com.google.guava    failureaccess    1.0
                            com.google.guava    listenablefuture    9999.0-empty-to-avoid-conflict-with-guava
                            com.google.j2objc    j2objc-annotations    1.1    The Apache Software License, Version 2.0
                            org.checkerframework    checker-qual    2.5.2    The MIT License
                            org.codehaus.mojo    animal-sniffer-annotations    1.17
                        javax.inject    javax.inject    1    The Apache Software License, Version 2.0
                com.google.inject    guice    4.0
                    aopalliance    aopalliance    1.0    Public Domain
                    com.google.guava    guava    27.0-jre
                        com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
                        com.google.errorprone    error_prone_annotations    2.2.0    Apache 2.0
                        com.google.guava    failureaccess    1.0
                        com.google.guava    listenablefuture    9999.0-empty-to-avoid-conflict-with-guava
                        com.google.j2objc    j2objc-annotations    1.1    The Apache Software License, Version 2.0
                        org.checkerframework    checker-qual    2.5.2    The MIT License
                        org.codehaus.mojo    animal-sniffer-annotations    1.17
                    javax.inject    javax.inject    1    The Apache Software License, Version 2.0
                com.google.protobuf    protobuf-java    2.5.0    New BSD license
                com.sun.jersey.contribs    jersey-guice    1.19
                    com.google.inject.extensions    guice-servlet    4.0
                        com.google.inject    guice    4.0
                            aopalliance    aopalliance    1.0    Public Domain
                            com.google.guava    guava    27.0-jre
                                com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
                                com.google.errorprone    error_prone_annotations    2.2.0    Apache 2.0
                                com.google.guava    failureaccess    1.0
                                com.google.guava    listenablefuture    9999.0-empty-to-avoid-conflict-with-guava
                                com.google.j2objc    j2objc-annotations    1.1    The Apache Software License, Version 2.0
                                org.checkerframework    checker-qual    2.5.2    The MIT License
                                org.codehaus.mojo    animal-sniffer-annotations    1.17
                            javax.inject    javax.inject    1    The Apache Software License, Version 2.0
                    com.google.inject    guice    4.0
                        aopalliance    aopalliance    1.0    Public Domain
                        com.google.guava    guava    27.0-jre
                            com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
                            com.google.errorprone    error_prone_annotations    2.2.0    Apache 2.0
                            com.google.guava    failureaccess    1.0
                            com.google.guava    listenablefuture    9999.0-empty-to-avoid-conflict-with-guava
                            com.google.j2objc    j2objc-annotations    1.1    The Apache Software License, Version 2.0
                            org.checkerframework    checker-qual    2.5.2    The MIT License
                            org.codehaus.mojo    animal-sniffer-annotations    1.17
                        javax.inject    javax.inject    1    The Apache Software License, Version 2.0
                    com.sun.jersey    jersey-servlet    1.19
                        com.sun.jersey    jersey-server    1.19
                            com.sun.jersey    jersey-core    1.19
                                javax.ws.rs    jsr311-api    1.1.1    CDDL License
                    javax.inject    javax.inject    1    The Apache Software License, Version 2.0
                com.sun.jersey    jersey-client    1.19
                    com.sun.jersey    jersey-core    1.19
                        javax.ws.rs    jsr311-api    1.1.1    CDDL License
                com.sun.jersey    jersey-core    1.19
                    javax.ws.rs    jsr311-api    1.1.1    CDDL License
                com.sun.jersey    jersey-json    1.19
                    com.sun.jersey    jersey-core    1.19
                        javax.ws.rs    jsr311-api    1.1.1    CDDL License
                    com.sun.xml.bind    jaxb-impl    2.2.3-1    CDDL 1.1
                        javax.xml.bind    jaxb-api    2.2.11    CDDL 1.1
                    org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
                    org.codehaus.jackson    jackson-jaxrs    1.9.2    The Apache Software License, Version 2.0
                        org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
                        org.codehaus.jackson    jackson-mapper-asl    1.9.13    The Apache Software License, Version 2.0
                            org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
                    org.codehaus.jackson    jackson-mapper-asl    1.9.13    The Apache Software License, Version 2.0
                        org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
                    org.codehaus.jackson    jackson-xc    1.9.2    The Apache Software License, Version 2.0
                        org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
                        org.codehaus.jackson    jackson-mapper-asl    1.9.13    The Apache Software License, Version 2.0
                            org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
                    org.codehaus.jettison    jettison    1.1
                com.sun.jersey    jersey-server    1.19
                    com.sun.jersey    jersey-core    1.19
                        javax.ws.rs    jsr311-api    1.1.1    CDDL License
                commons-cli    commons-cli    1.2
                commons-codec    commons-codec    1.15
                commons-io    commons-io    2.8.0
                javax.servlet    javax.servlet-api    3.1.0    CDDL + GPLv2 with classpath exception
                javax.ws.rs    javax.ws.rs-api    2.1.1    EPL 2.0
                javax.xml.bind    jaxb-api    2.2.11    CDDL 1.1
                org.apache.commons    commons-compress    1.21
                org.apache.hadoop.thirdparty    hadoop-shaded-guava    1.1.1
                org.apache.hadoop    hadoop-annotations    3.3.3
                org.apache.hadoop    hadoop-auth    3.3.3
                    ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
                    com.nimbusds    nimbus-jose-jwt    9.8.1    The Apache Software License, Version 2.0
                        com.github.stephenc.jcip    jcip-annotations    1.0-1    Apache License, Version 2.0
                    commons-codec    commons-codec    1.15
                    net.minidev    json-smart    2.4.7    The Apache Software License, Version 2.0
                        net.minidev    accessors-smart    2.4.7    The Apache Software License, Version 2.0
                            org.ow2.asm    asm    9.1    BSD-3-Clause
                    org.apache.curator    curator-framework    4.2.0
                        org.apache.curator    curator-client    4.2.0
                    org.apache.hadoop.thirdparty    hadoop-shaded-guava    1.1.1
                    org.apache.httpcomponents    httpclient    4.5.13
                        commons-codec    commons-codec    1.15
                        commons-logging    commons-logging    1.2
                        org.apache.httpcomponents    httpcore    4.4.13
                    org.apache.kerby    kerb-simplekdc    1.0.1
                        org.apache.kerby    kerb-admin    1.0.1
                            org.apache.kerby    kerb-server    1.0.1
                                org.apache.kerby    kerb-common    1.0.1
                                    commons-io    commons-io    2.8.0
                                    org.apache.kerby    kerb-crypto    1.0.1
                                        org.apache.kerby    kerb-core    1.0.1
                                            org.apache.kerby    kerby-pkix    1.0.1
                                                org.apache.kerby    kerby-asn1    1.0.1
                                                org.apache.kerby    kerby-util    1.0.1
                                                org.slf4j    slf4j-api    1.7.36
                                        org.apache.kerby    kerby-util    1.0.1
                                    org.apache.kerby    kerby-config    1.0.1
                                        org.slf4j    slf4j-api    1.7.36
                                org.apache.kerby    kerb-identity    1.0.1
                                    org.apache.kerby    kerb-core    1.0.1
                                        org.apache.kerby    kerby-pkix    1.0.1
                                            org.apache.kerby    kerby-asn1    1.0.1
                                            org.apache.kerby    kerby-util    1.0.1
                                            org.slf4j    slf4j-api    1.7.36
                                    org.apache.kerby    kerby-config    1.0.1
                                        org.slf4j    slf4j-api    1.7.36
                            org.apache.kerby    kerb-util    1.0.1
                                org.apache.kerby    kerb-core    1.0.1
                                    org.apache.kerby    kerby-pkix    1.0.1
                                        org.apache.kerby    kerby-asn1    1.0.1
                                        org.apache.kerby    kerby-util    1.0.1
                                        org.slf4j    slf4j-api    1.7.36
                                org.apache.kerby    kerb-crypto    1.0.1
                                    org.apache.kerby    kerb-core    1.0.1
                                        org.apache.kerby    kerby-pkix    1.0.1
                                            org.apache.kerby    kerby-asn1    1.0.1
                                            org.apache.kerby    kerby-util    1.0.1
                                            org.slf4j    slf4j-api    1.7.36
                                    org.apache.kerby    kerby-util    1.0.1
                                org.apache.kerby    kerby-config    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                            org.apache.kerby    kerby-xdr    1.0.1
                        org.apache.kerby    kerb-client    1.0.1
                            org.apache.kerby    kerb-common    1.0.1
                                commons-io    commons-io    2.8.0
                                org.apache.kerby    kerb-crypto    1.0.1
                                    org.apache.kerby    kerb-core    1.0.1
                                        org.apache.kerby    kerby-pkix    1.0.1
                                            org.apache.kerby    kerby-asn1    1.0.1
                                            org.apache.kerby    kerby-util    1.0.1
                                            org.slf4j    slf4j-api    1.7.36
                                    org.apache.kerby    kerby-util    1.0.1
                                org.apache.kerby    kerby-config    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                            org.apache.kerby    kerb-core    1.0.1
                                org.apache.kerby    kerby-pkix    1.0.1
                                    org.apache.kerby    kerby-asn1    1.0.1
                                    org.apache.kerby    kerby-util    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                            org.apache.kerby    kerb-util    1.0.1
                                org.apache.kerby    kerb-core    1.0.1
                                    org.apache.kerby    kerby-pkix    1.0.1
                                        org.apache.kerby    kerby-asn1    1.0.1
                                        org.apache.kerby    kerby-util    1.0.1
                                        org.slf4j    slf4j-api    1.7.36
                                org.apache.kerby    kerb-crypto    1.0.1
                                    org.apache.kerby    kerb-core    1.0.1
                                        org.apache.kerby    kerby-pkix    1.0.1
                                            org.apache.kerby    kerby-asn1    1.0.1
                                            org.apache.kerby    kerby-util    1.0.1
                                            org.slf4j    slf4j-api    1.7.36
                                    org.apache.kerby    kerby-util    1.0.1
                                org.apache.kerby    kerby-config    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                            org.apache.kerby    kerby-config    1.0.1
                                org.slf4j    slf4j-api    1.7.36
                            org.apache.kerby    token-provider    1.0.1
                                com.nimbusds    nimbus-jose-jwt    9.8.1    The Apache Software License, Version 2.0
                                    com.github.stephenc.jcip    jcip-annotations    1.0-1    Apache License, Version 2.0
                                org.apache.kerby    kerb-core    1.0.1
                                    org.apache.kerby    kerby-pkix    1.0.1
                                        org.apache.kerby    kerby-asn1    1.0.1
                                        org.apache.kerby    kerby-util    1.0.1
                                        org.slf4j    slf4j-api    1.7.36
                    org.apache.zookeeper    zookeeper    3.5.6
                        io.netty    netty-handler    4.1.42.Final
                            io.netty    netty-buffer    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                            io.netty    netty-codec    4.1.42.Final
                                io.netty    netty-buffer    4.1.42.Final
                                    io.netty    netty-common    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                                io.netty    netty-transport    4.1.42.Final
                                    io.netty    netty-buffer    4.1.42.Final
                                        io.netty    netty-common    4.1.42.Final
                                    io.netty    netty-common    4.1.42.Final
                                    io.netty    netty-resolver    4.1.42.Final
                                        io.netty    netty-common    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                            io.netty    netty-transport    4.1.42.Final
                                io.netty    netty-buffer    4.1.42.Final
                                    io.netty    netty-common    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                                io.netty    netty-resolver    4.1.42.Final
                                    io.netty    netty-common    4.1.42.Final
                        io.netty    netty-transport-native-epoll    4.1.42.Final
                            io.netty    netty-buffer    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                            io.netty    netty-transport-native-unix-common    4.1.42.Final
                                io.netty    netty-buffer    4.1.42.Final
                                    io.netty    netty-common    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                                io.netty    netty-transport    4.1.42.Final
                                    io.netty    netty-buffer    4.1.42.Final
                                        io.netty    netty-common    4.1.42.Final
                                    io.netty    netty-common    4.1.42.Final
                                    io.netty    netty-resolver    4.1.42.Final
                                        io.netty    netty-common    4.1.42.Final
                            io.netty    netty-transport    4.1.42.Final
                                io.netty    netty-buffer    4.1.42.Final
                                    io.netty    netty-common    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                                io.netty    netty-resolver    4.1.42.Final
                                    io.netty    netty-common    4.1.42.Final
                        org.apache.yetus    audience-annotations    0.5.0
                        org.apache.zookeeper    zookeeper-jute    3.5.6
                            org.apache.yetus    audience-annotations    0.5.0
                        org.slf4j    slf4j-api    1.7.36
                    org.slf4j    slf4j-api    1.7.36
                    org.slf4j    slf4j-reload4j    1.7.36
                        ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
                        org.slf4j    slf4j-api    1.7.36
                org.apache.hadoop    hadoop-hdfs-client    3.3.3
                    com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
                        com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                        com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                    com.squareup.okhttp    okhttp    2.7.5
                        com.squareup.okio    okio    1.6.0
                org.apache.hadoop    hadoop-yarn-api    3.3.3
                    com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                    com.google.protobuf    protobuf-java    2.5.0    New BSD license
                    javax.ws.rs    javax.ws.rs-api    2.1.1    EPL 2.0
                    javax.xml.bind    jaxb-api    2.2.11    CDDL 1.1
                    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.3
                org.eclipse.jetty    jetty-util    9.4.43.v20210629
                org.slf4j    slf4j-api    1.7.36
            org.eclipse.jetty.websocket    websocket-client    9.4.43.v20210629
                org.eclipse.jetty.websocket    websocket-common    9.4.43.v20210629
                    org.eclipse.jetty.websocket    websocket-api    9.4.43.v20210629
                    org.eclipse.jetty    jetty-io    9.4.43.v20210629
                        org.eclipse.jetty    jetty-util    9.4.43.v20210629
                    org.eclipse.jetty    jetty-util    9.4.43.v20210629
                org.eclipse.jetty    jetty-client    9.4.43.v20210629
                    org.eclipse.jetty    jetty-http    9.4.43.v20210629
                        org.eclipse.jetty    jetty-io    9.4.43.v20210629
                            org.eclipse.jetty    jetty-util    9.4.43.v20210629
                        org.eclipse.jetty    jetty-util    9.4.43.v20210629
                    org.eclipse.jetty    jetty-io    9.4.43.v20210629
                        org.eclipse.jetty    jetty-util    9.4.43.v20210629
                org.eclipse.jetty    jetty-io    9.4.43.v20210629
                    org.eclipse.jetty    jetty-util    9.4.43.v20210629
                org.eclipse.jetty    jetty-util    9.4.43.v20210629
            org.jline    jline    3.9.0
        org.apache.hadoop    hadoop-yarn-common    3.3.3
            ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
            com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
            com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
            com.fasterxml.jackson.jaxrs    jackson-jaxrs-json-provider    2.13.2
                com.fasterxml.jackson.jaxrs    jackson-jaxrs-base    2.13.2
                    com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
                        com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                        com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.module    jackson-module-jaxb-annotations    2.13.2
                    com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
                        com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                        com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                    jakarta.activation    jakarta.activation-api    1.2.2
                    jakarta.xml.bind    jakarta.xml.bind-api    2.3.3
                        jakarta.activation    jakarta.activation-api    1.2.2
            com.fasterxml.jackson.module    jackson-module-jaxb-annotations    2.13.2
                com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                jakarta.activation    jakarta.activation-api    1.2.2
                jakarta.xml.bind    jakarta.xml.bind-api    2.3.3
                    jakarta.activation    jakarta.activation-api    1.2.2
            com.google.inject.extensions    guice-servlet    4.0
                com.google.inject    guice    4.0
                    aopalliance    aopalliance    1.0    Public Domain
                    com.google.guava    guava    27.0-jre
                        com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
                        com.google.errorprone    error_prone_annotations    2.2.0    Apache 2.0
                        com.google.guava    failureaccess    1.0
                        com.google.guava    listenablefuture    9999.0-empty-to-avoid-conflict-with-guava
                        com.google.j2objc    j2objc-annotations    1.1    The Apache Software License, Version 2.0
                        org.checkerframework    checker-qual    2.5.2    The MIT License
                        org.codehaus.mojo    animal-sniffer-annotations    1.17
                    javax.inject    javax.inject    1    The Apache Software License, Version 2.0
            com.google.inject    guice    4.0
                aopalliance    aopalliance    1.0    Public Domain
                com.google.guava    guava    27.0-jre
                    com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
                    com.google.errorprone    error_prone_annotations    2.2.0    Apache 2.0
                    com.google.guava    failureaccess    1.0
                    com.google.guava    listenablefuture    9999.0-empty-to-avoid-conflict-with-guava
                    com.google.j2objc    j2objc-annotations    1.1    The Apache Software License, Version 2.0
                    org.checkerframework    checker-qual    2.5.2    The MIT License
                    org.codehaus.mojo    animal-sniffer-annotations    1.17
                javax.inject    javax.inject    1    The Apache Software License, Version 2.0
            com.google.protobuf    protobuf-java    2.5.0    New BSD license
            com.sun.jersey.contribs    jersey-guice    1.19
                com.google.inject.extensions    guice-servlet    4.0
                    com.google.inject    guice    4.0
                        aopalliance    aopalliance    1.0    Public Domain
                        com.google.guava    guava    27.0-jre
                            com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
                            com.google.errorprone    error_prone_annotations    2.2.0    Apache 2.0
                            com.google.guava    failureaccess    1.0
                            com.google.guava    listenablefuture    9999.0-empty-to-avoid-conflict-with-guava
                            com.google.j2objc    j2objc-annotations    1.1    The Apache Software License, Version 2.0
                            org.checkerframework    checker-qual    2.5.2    The MIT License
                            org.codehaus.mojo    animal-sniffer-annotations    1.17
                        javax.inject    javax.inject    1    The Apache Software License, Version 2.0
                com.google.inject    guice    4.0
                    aopalliance    aopalliance    1.0    Public Domain
                    com.google.guava    guava    27.0-jre
                        com.google.code.findbugs    jsr305    3.0.2    The Apache Software License, Version 2.0
                        com.google.errorprone    error_prone_annotations    2.2.0    Apache 2.0
                        com.google.guava    failureaccess    1.0
                        com.google.guava    listenablefuture    9999.0-empty-to-avoid-conflict-with-guava
                        com.google.j2objc    j2objc-annotations    1.1    The Apache Software License, Version 2.0
                        org.checkerframework    checker-qual    2.5.2    The MIT License
                        org.codehaus.mojo    animal-sniffer-annotations    1.17
                    javax.inject    javax.inject    1    The Apache Software License, Version 2.0
                com.sun.jersey    jersey-servlet    1.19
                    com.sun.jersey    jersey-server    1.19
                        com.sun.jersey    jersey-core    1.19
                            javax.ws.rs    jsr311-api    1.1.1    CDDL License
                javax.inject    javax.inject    1    The Apache Software License, Version 2.0
            com.sun.jersey    jersey-client    1.19
                com.sun.jersey    jersey-core    1.19
                    javax.ws.rs    jsr311-api    1.1.1    CDDL License
            com.sun.jersey    jersey-core    1.19
                javax.ws.rs    jsr311-api    1.1.1    CDDL License
            com.sun.jersey    jersey-json    1.19
                com.sun.jersey    jersey-core    1.19
                    javax.ws.rs    jsr311-api    1.1.1    CDDL License
                com.sun.xml.bind    jaxb-impl    2.2.3-1    CDDL 1.1
                    javax.xml.bind    jaxb-api    2.2.11    CDDL 1.1
                org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
                org.codehaus.jackson    jackson-jaxrs    1.9.2    The Apache Software License, Version 2.0
                    org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
                    org.codehaus.jackson    jackson-mapper-asl    1.9.13    The Apache Software License, Version 2.0
                        org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
                org.codehaus.jackson    jackson-mapper-asl    1.9.13    The Apache Software License, Version 2.0
                    org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
                org.codehaus.jackson    jackson-xc    1.9.2    The Apache Software License, Version 2.0
                    org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
                    org.codehaus.jackson    jackson-mapper-asl    1.9.13    The Apache Software License, Version 2.0
                        org.codehaus.jackson    jackson-core-asl    1.9.13    The Apache Software License, Version 2.0
                org.codehaus.jettison    jettison    1.1
            com.sun.jersey    jersey-server    1.19
                com.sun.jersey    jersey-core    1.19
                    javax.ws.rs    jsr311-api    1.1.1    CDDL License
            commons-cli    commons-cli    1.2
            commons-codec    commons-codec    1.15
            commons-io    commons-io    2.8.0
            javax.servlet    javax.servlet-api    3.1.0    CDDL + GPLv2 with classpath exception
            javax.ws.rs    javax.ws.rs-api    2.1.1    EPL 2.0
            javax.xml.bind    jaxb-api    2.2.11    CDDL 1.1
            org.apache.commons    commons-compress    1.21
            org.apache.hadoop.thirdparty    hadoop-shaded-guava    1.1.1
            org.apache.hadoop    hadoop-annotations    3.3.3
            org.apache.hadoop    hadoop-auth    3.3.3
                ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
                com.nimbusds    nimbus-jose-jwt    9.8.1    The Apache Software License, Version 2.0
                    com.github.stephenc.jcip    jcip-annotations    1.0-1    Apache License, Version 2.0
                commons-codec    commons-codec    1.15
                net.minidev    json-smart    2.4.7    The Apache Software License, Version 2.0
                    net.minidev    accessors-smart    2.4.7    The Apache Software License, Version 2.0
                        org.ow2.asm    asm    9.1    BSD-3-Clause
                org.apache.curator    curator-framework    4.2.0
                    org.apache.curator    curator-client    4.2.0
                org.apache.hadoop.thirdparty    hadoop-shaded-guava    1.1.1
                org.apache.httpcomponents    httpclient    4.5.13
                    commons-codec    commons-codec    1.15
                    commons-logging    commons-logging    1.2
                    org.apache.httpcomponents    httpcore    4.4.13
                org.apache.kerby    kerb-simplekdc    1.0.1
                    org.apache.kerby    kerb-admin    1.0.1
                        org.apache.kerby    kerb-server    1.0.1
                            org.apache.kerby    kerb-common    1.0.1
                                commons-io    commons-io    2.8.0
                                org.apache.kerby    kerb-crypto    1.0.1
                                    org.apache.kerby    kerb-core    1.0.1
                                        org.apache.kerby    kerby-pkix    1.0.1
                                            org.apache.kerby    kerby-asn1    1.0.1
                                            org.apache.kerby    kerby-util    1.0.1
                                            org.slf4j    slf4j-api    1.7.36
                                    org.apache.kerby    kerby-util    1.0.1
                                org.apache.kerby    kerby-config    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                            org.apache.kerby    kerb-identity    1.0.1
                                org.apache.kerby    kerb-core    1.0.1
                                    org.apache.kerby    kerby-pkix    1.0.1
                                        org.apache.kerby    kerby-asn1    1.0.1
                                        org.apache.kerby    kerby-util    1.0.1
                                        org.slf4j    slf4j-api    1.7.36
                                org.apache.kerby    kerby-config    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                        org.apache.kerby    kerb-util    1.0.1
                            org.apache.kerby    kerb-core    1.0.1
                                org.apache.kerby    kerby-pkix    1.0.1
                                    org.apache.kerby    kerby-asn1    1.0.1
                                    org.apache.kerby    kerby-util    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                            org.apache.kerby    kerb-crypto    1.0.1
                                org.apache.kerby    kerb-core    1.0.1
                                    org.apache.kerby    kerby-pkix    1.0.1
                                        org.apache.kerby    kerby-asn1    1.0.1
                                        org.apache.kerby    kerby-util    1.0.1
                                        org.slf4j    slf4j-api    1.7.36
                                org.apache.kerby    kerby-util    1.0.1
                            org.apache.kerby    kerby-config    1.0.1
                                org.slf4j    slf4j-api    1.7.36
                        org.apache.kerby    kerby-xdr    1.0.1
                    org.apache.kerby    kerb-client    1.0.1
                        org.apache.kerby    kerb-common    1.0.1
                            commons-io    commons-io    2.8.0
                            org.apache.kerby    kerb-crypto    1.0.1
                                org.apache.kerby    kerb-core    1.0.1
                                    org.apache.kerby    kerby-pkix    1.0.1
                                        org.apache.kerby    kerby-asn1    1.0.1
                                        org.apache.kerby    kerby-util    1.0.1
                                        org.slf4j    slf4j-api    1.7.36
                                org.apache.kerby    kerby-util    1.0.1
                            org.apache.kerby    kerby-config    1.0.1
                                org.slf4j    slf4j-api    1.7.36
                        org.apache.kerby    kerb-core    1.0.1
                            org.apache.kerby    kerby-pkix    1.0.1
                                org.apache.kerby    kerby-asn1    1.0.1
                                org.apache.kerby    kerby-util    1.0.1
                                org.slf4j    slf4j-api    1.7.36
                        org.apache.kerby    kerb-util    1.0.1
                            org.apache.kerby    kerb-core    1.0.1
                                org.apache.kerby    kerby-pkix    1.0.1
                                    org.apache.kerby    kerby-asn1    1.0.1
                                    org.apache.kerby    kerby-util    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                            org.apache.kerby    kerb-crypto    1.0.1
                                org.apache.kerby    kerb-core    1.0.1
                                    org.apache.kerby    kerby-pkix    1.0.1
                                        org.apache.kerby    kerby-asn1    1.0.1
                                        org.apache.kerby    kerby-util    1.0.1
                                        org.slf4j    slf4j-api    1.7.36
                                org.apache.kerby    kerby-util    1.0.1
                            org.apache.kerby    kerby-config    1.0.1
                                org.slf4j    slf4j-api    1.7.36
                        org.apache.kerby    kerby-config    1.0.1
                            org.slf4j    slf4j-api    1.7.36
                        org.apache.kerby    token-provider    1.0.1
                            com.nimbusds    nimbus-jose-jwt    9.8.1    The Apache Software License, Version 2.0
                                com.github.stephenc.jcip    jcip-annotations    1.0-1    Apache License, Version 2.0
                            org.apache.kerby    kerb-core    1.0.1
                                org.apache.kerby    kerby-pkix    1.0.1
                                    org.apache.kerby    kerby-asn1    1.0.1
                                    org.apache.kerby    kerby-util    1.0.1
                                    org.slf4j    slf4j-api    1.7.36
                org.apache.zookeeper    zookeeper    3.5.6
                    io.netty    netty-handler    4.1.42.Final
                        io.netty    netty-buffer    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                        io.netty    netty-codec    4.1.42.Final
                            io.netty    netty-buffer    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                            io.netty    netty-transport    4.1.42.Final
                                io.netty    netty-buffer    4.1.42.Final
                                    io.netty    netty-common    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                                io.netty    netty-resolver    4.1.42.Final
                                    io.netty    netty-common    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                        io.netty    netty-transport    4.1.42.Final
                            io.netty    netty-buffer    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                            io.netty    netty-resolver    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                    io.netty    netty-transport-native-epoll    4.1.42.Final
                        io.netty    netty-buffer    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                        io.netty    netty-common    4.1.42.Final
                        io.netty    netty-transport-native-unix-common    4.1.42.Final
                            io.netty    netty-buffer    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                            io.netty    netty-transport    4.1.42.Final
                                io.netty    netty-buffer    4.1.42.Final
                                    io.netty    netty-common    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                                io.netty    netty-resolver    4.1.42.Final
                                    io.netty    netty-common    4.1.42.Final
                        io.netty    netty-transport    4.1.42.Final
                            io.netty    netty-buffer    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                            io.netty    netty-common    4.1.42.Final
                            io.netty    netty-resolver    4.1.42.Final
                                io.netty    netty-common    4.1.42.Final
                    org.apache.yetus    audience-annotations    0.5.0
                    org.apache.zookeeper    zookeeper-jute    3.5.6
                        org.apache.yetus    audience-annotations    0.5.0
                    org.slf4j    slf4j-api    1.7.36
                org.slf4j    slf4j-api    1.7.36
                org.slf4j    slf4j-reload4j    1.7.36
                    ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
                    org.slf4j    slf4j-api    1.7.36
            org.apache.hadoop    hadoop-hdfs-client    3.3.3
                com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                com.fasterxml.jackson.core    jackson-databind    2.13.2.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                    com.fasterxml.jackson.core    jackson-core    2.13.2    The Apache Software License, Version 2.0
                com.squareup.okhttp    okhttp    2.7.5
                    com.squareup.okio    okio    1.6.0
            org.apache.hadoop    hadoop-yarn-api    3.3.3
                com.fasterxml.jackson.core    jackson-annotations    2.13.2    The Apache Software License, Version 2.0
                com.google.protobuf    protobuf-java    2.5.0    New BSD license
                javax.ws.rs    javax.ws.rs-api    2.1.1    EPL 2.0
                javax.xml.bind    jaxb-api    2.2.11    CDDL 1.1
                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.3
            org.eclipse.jetty    jetty-util    9.4.43.v20210629
            org.slf4j    slf4j-api    1.7.36
        org.slf4j    slf4j-api    1.7.36
        org.slf4j    slf4j-reload4j    1.7.36
            ch.qos.reload4j    reload4j    1.2.19    The Apache Software License, Version 2.0
            org.slf4j    slf4j-api    1.7.36
    org.apache.hbase.thirdparty    hbase-shaded-gson    3.0.0
    org.apache.hbase    hbase-annotations    1.4.13
        com.github.stephenc.findbugs    findbugs-annotations    1.3.9-1    Apache License, Version 2.0
        junit    junit    4.12    Eclipse Public License 1.0
            org.hamcrest    hamcrest-core    1.3
    org.apache.hbase    hbase-protocol    1.4.13
        com.github.stephenc.findbugs    findbugs-annotations    1.3.9-1    Apache License, Version 2.0
        com.google.protobuf    protobuf-java    2.5.0    New BSD license
        commons-logging    commons-logging    1.2
        junit    junit    4.12    Eclipse Public License 1.0
            org.hamcrest    hamcrest-core    1.3
        org.apache.hbase    hbase-annotations    1.4.13
            com.github.stephenc.findbugs    findbugs-annotations    1.3.9-1    Apache License, Version 2.0
            junit    junit    4.12    Eclipse Public License 1.0
                org.hamcrest    hamcrest-core    1.3
    org.apache.htrace    htrace-core    3.1.0-incubating
    org.mortbay.jetty    jetty-util    6.1.26
org.apache.hbase    hbase-shaded-client    1.4.13
    com.github.stephenc.findbugs    findbugs-annotations    1.3.9-1    Apache License, Version 2.0
    commons-logging    commons-logging    1.2
    junit    junit    4.12    Eclipse Public License 1.0
        org.hamcrest    hamcrest-core    1.3
    org.apache.htrace    htrace-core    3.1.0-incubating
    org.slf4j    slf4j-api    1.7.36
org.scala-lang    scala-library    2.13.12    Apache-2.0

Converters

Converters map the domain object to a list of HBase mutations (Append, Delete, Increment, Put).

Put

Scala
sourceimplicit def toBytes(string: String): Array[Byte] = Bytes.toBytes(string)
case class Person(id: Int, name: String)

val hBaseConverter: Person => immutable.Seq[Mutation] = { person =>
  val put = new Put(s"id_${person.id}")
  put.addColumn("info", "name", person.name)
  List(put)
}
Java
sourceFunction<Person, List<Mutation>> hBaseConverter =
    person -> {
      try {
        Put put = new Put(String.format("id_%d", person.id).getBytes("UTF-8"));
        put.addColumn(
            "info".getBytes("UTF-8"), "name".getBytes("UTF-8"), person.name.getBytes("UTF-8"));

        return Collections.singletonList(put);
      } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
        return Collections.emptyList();
      }
    };

Append

Scala
sourceval appendHBaseConverter: Person => immutable.Seq[Mutation] = { person =>
  // Append to a cell
  val append = new Append(s"id_${person.id}")
  append.add("info", "aliases", person.name)
  List(append)
}
Java
sourceFunction<Person, List<Mutation>> appendHBaseConverter =
    person -> {
      try {
        Append append = new Append(String.format("id_%d", person.id).getBytes("UTF-8"));
        append.add(
            "info".getBytes("UTF-8"), "aliases".getBytes("UTF-8"), person.name.getBytes("UTF-8"));

        return Collections.singletonList(append);
      } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
        return Collections.emptyList();
      }
    };

Delete

Scala
sourceval deleteHBaseConverter: Person => immutable.Seq[Mutation] = { person =>
  // Delete the specified row
  val delete = new Delete(s"id_${person.id}")
  List(delete)
}
Java
sourceFunction<Person, List<Mutation>> deleteHBaseConverter =
    person -> {
      try {
        Delete delete = new Delete(String.format("id_%d", person.id).getBytes("UTF-8"));

        return Collections.singletonList(delete);
      } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
        return Collections.emptyList();
      }
    };

Increment

Scala
sourceval incrementHBaseConverter: Person => immutable.Seq[Mutation] = { person =>
  // Increment a cell value
  val increment = new Increment(s"id_${person.id}")
  increment.addColumn("info", "numberOfChanges", 1)
  List(increment)
}
Java
sourceFunction<Person, List<Mutation>> incrementHBaseConverter =
    person -> {
      try {
        Increment increment = new Increment(String.format("id_%d", person.id).getBytes("UTF-8"));
        increment.addColumn("info".getBytes("UTF-8"), "numberOfChanges".getBytes("UTF-8"), 1);

        return Collections.singletonList(increment);
      } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
        return Collections.emptyList();
      }
    };

Complex and noop mutations

To ignore an object return an empty List - this will have no effect on HBase. You can also combine mutations to perform complex business logic:

Scala
sourceval mutationsHBaseConverter: Person => immutable.Seq[Mutation] = { person =>
  if (person.id != 0) {
    if (person.name.isEmpty) {
      // Delete the specified row
      val delete = new Delete(s"id_${person.id}")
      List(delete)
    } else {
      // Insert or update a row
      val put = new Put(s"id_${person.id}")
      put.addColumn("info", "name", person.name)

      val increment = new Increment(s"id_${person.id}")
      increment.addColumn("info", "numberOfChanges", 1)

      List(put, increment)
    }
  } else {
    List.empty
  }
}
Java
sourceFunction<Person, List<Mutation>> complexHBaseConverter =
    person -> {
      try {
        byte[] id = String.format("id_%d", person.id).getBytes("UTF-8");
        byte[] infoFamily = "info".getBytes("UTF-8");

        if (person.id != 0 && person.name.isEmpty()) {
          Delete delete = new Delete(id);
          return Collections.singletonList(delete);
        } else if (person.id != 0) {
          Put put = new Put(id);
          put.addColumn(infoFamily, "name".getBytes("UTF-8"), person.name.getBytes("UTF-8"));

          Increment increment = new Increment(id);
          increment.addColumn(infoFamily, "numberOfChanges".getBytes("UTF-8"), 1);

          return Arrays.asList(put, increment);
        } else {
          return Collections.emptyList();
        }
      } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
        return Collections.emptyList();
      }
    };

If you return a list of mutations they will be applied in the same order. The list of mutations are not applied in an transaction, each mutation is independent.

Settings

HBase combinators require HTableSettings. If the table referenced in the settings does not exist, it will be created on demand.

Scala
sourceval tableSettings =
  HTableSettings(HBaseConfiguration.create(), TableName.valueOf("person"), immutable.Seq("info"), hBaseConverter)
Java
sourceHTableSettings<Person> tableSettings =
    HTableSettings.create(
        HBaseConfiguration.create(),
        TableName.valueOf("person1"),
        Collections.singletonList("info"),
        hBaseConverter);

Source

Scala
sourceval scan = new Scan(new Get(Bytes.toBytes("id_100")))

val f = HTableStage
  .source(scan, tableSettings)
  .runWith(Sink.seq)
Java
sourceScan scan = new Scan(new Get("id_300".getBytes("UTF-8")));

CompletionStage<List<Result>> f =
    HTableStage.source(scan, tableSettings).runWith(Sink.seq(), system);

Flow

Scala
sourceval flow = HTableStage.flow[Person](tableSettings)

val f = Source(11 to 20).map(i => Person(i, s"zozo_$i")).via(flow).runWith(Sink.fold(0)((a, d) => a + d.id))
Java
sourceFlow<Person, Person, NotUsed> flow = HTableStage.flow(tableSettings);
Pair<NotUsed, CompletionStage<List<Person>>> run =
    Source.from(Arrays.asList(200, 201, 202, 203, 204))
        .map((i) -> new Person(i, String.format("name_%d", i)))
        .via(flow)
        .toMat(Sink.seq(), Keep.both())
        .run(system);

Sink

Scala
sourceval sink = HTableStage.sink[Person](tableSettings)

val f = Source(1 to 10).map(i => Person(i, s"zozo_$i")).runWith(sink)
Java
sourcefinal Sink<Person, CompletionStage<Done>> sink = HTableStage.sink(tableSettings);
CompletionStage<Done> o =
    Source.from(Arrays.asList(100, 101, 102, 103, 104))
        .map((i) -> new Person(i, String.format("name %d", i)))
        .runWith(sink, system);

HBase administration commands

To manage HBase database, startup HBase shell ($HBASE_HOME/bin/shell), and run following commands:

list // list tables
scan "person" // select * from person
disable "person" // Disable table "person", before drop
drop "person"
Found an error in this documentation? The source code for this page can be found here. Please feel free to edit and contribute a pull request.