MVN

ch.cern.hbase : hbase-external-blockcache

Maven & Gradle

Nov 09, 2020
2 usages

Apache HBase - External Block Cache · HBase module that provides out of process block cache. Currently Memcached is the reference implementation for external block cache. External block caches allow HBase to take advantage of other more complex caches that can live longer than the HBase regionserver process and are not necessarily tied to a single computer life time. However external block caches add in extra operational overhead.

<dependency>
    <groupId>ch.cern.hbase</groupId>
    <artifactId>hbase-external-blockcache</artifactId>
    <version>2.1.3_1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of ch.cern.hbase : hbase-external-blockcache to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.1.3_1

All Versions

Choose a version of ch.cern.hbase : hbase-external-blockcache to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.2.x
hbase-external-blockcache-2.2.4
hbase-external-blockcache-2.2.4_1
2.1.x
hbase-external-blockcache-2.1.3
hbase-external-blockcache-2.1.3_1

How to add a dependency to Maven

Add the following ch.cern.hbase : hbase-external-blockcache maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>ch.cern.hbase</groupId>
    <artifactId>hbase-external-blockcache</artifactId>
    <version>2.1.3_1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following ch.cern.hbase : hbase-external-blockcache gradle dependency to your build.gradle file:

implementation 'ch.cern.hbase:hbase-external-blockcache:2.1.3_1'

Gradle Kotlin DSL: Add the following ch.cern.hbase : hbase-external-blockcache gradle kotlin dependency to your build.gradle.kts file:

implementation("ch.cern.hbase:hbase-external-blockcache:2.1.3_1")

How to add a dependency to SBT Scala

SBT Scala: Add the following ch.cern.hbase : hbase-external-blockcache sbt scala dependency to your build.sbt file:

libraryDependencies += "ch.cern.hbase" % "hbase-external-blockcache" % "2.1.3_1"

Advertisement