Skip to content

Commit

Permalink
Merge pull request #454 from igorbernstein2/patch-1
Browse files Browse the repository at this point in the history
Update Bigtable docs to reflect latest client [skip ci]
  • Loading branch information
mbrukman committed Aug 16, 2017
2 parents 170f424 + 1f3c66b commit c0ecc65
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions docs/bigtable.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ some specific configuration options to connect.
Bigtable connectivity relies on the `cloud-bigtable-client` library. This library is open-source and is
https://github.com/GoogleCloudPlatform/cloud-bigtable-client[hosted on GitHub]. JanusGraph uses the HBase 1.0 API,
so we require the lastest version of the
http://mvnrepository.com/artifact/com.google.cloud.bigtable/bigtable-hbase-1.0/0.9.5.1[bigtable-hbase-1.0 artifact.]
https://mvnrepository.com/artifact/com.google.cloud.bigtable/bigtable-hbase-1.x-hadoop/1.0.0-pre2[bigtable-hbase-1.x-hadoop artifact.]

This library also uses the
https://mvnrepository.com/artifact/io.netty/netty-tcnative-boringssl-static[netty-tcnative-boringssl-static] library
https://mvnrepository.com/artifact/io.netty/netty-tcnative-boringssl-static/1.1.33.Fork26[netty-tcnative-boringssl-static] library
to make secure connections to Bigtable. Use the version recommended by the cloud-bigtable-client library.

These two dependencies must be on the classpath of the Java binary that connects to Bigtable. Maven dependencies could
Expand All @@ -36,14 +36,14 @@ be defined as:
....
<dependency>
<groupId>com.google.cloud.bigtable</groupId>
<artifactId>bigtable-hbase-1.0</artifactId>
<version>0.9.5.1</version>
<artifactId>bigtable-hbase-1.x-hadoop</artifactId>
<version>1.0.0-pre2</version>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative-boringssl-static</artifactId>
<version>1.1.33.Fork19</version>
<version>1.1.33.Fork26</version>
</dependency>
....

Expand All @@ -61,7 +61,7 @@ Example:
[source,changelog]
....
storage.backend=hbase
storage.hbase.ext.hbase.client.connection.impl=com.google.cloud.bigtable.hbase1_0.BigtableConnection
storage.hbase.ext.hbase.client.connection.impl=com.google.cloud.bigtable.hbase1_x.BigtableConnection
storage.hbase.ext.google.bigtable.project.id=<Google Cloud Platform project id>
storage.hbase.ext.google.bigtable.instance.id=<Bigtable instance id>
....
6 changes: 3 additions & 3 deletions docs/versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ JanusGraph.
[options="header"]
|==========================
| JanusGraph | Cassandra | HBase | Bigtable | Elasticsearch | Solr | TinkerPop | Spark | Scala
| 0.1.0 | 1.2.z, 2.0.z, 2.1.z | 0.98.z, 1.0.z, 1.1.z, 1.2.z | 0.9.z | 1.5.z | 5.2.z | 3.2.z | 1.6.z | 2.10.z
| 0.1.1 | 1.2.z, 2.0.z, 2.1.z | 0.98.z, 1.0.z, 1.1.z, 1.2.z | 0.9.z | 1.5.z | 5.2.z | 3.2.z | 1.6.z | 2.10.z
| 0.2.0 | 1.2.z, 2.0.z, 2.1.z | 0.98.z, 1.0.z, 1.1.z, 1.2.z | 0.9.z | 1.z*,2.z,5.z | 5.3-5.5.z, 6.2-6.6.z | 3.2.z | 1.6.z | 2.10.z
| 0.1.0 | 1.2.z, 2.0.z, 2.1.z | 0.98.z, 1.0.z, 1.1.z, 1.2.z | 0.9.z, 1.0.0-preZ | 1.5.z | 5.2.z | 3.2.z | 1.6.z | 2.10.z
| 0.1.1 | 1.2.z, 2.0.z, 2.1.z | 0.98.z, 1.0.z, 1.1.z, 1.2.z | 0.9.z, 1.0.0-preZ | 1.5.z | 5.2.z | 3.2.z | 1.6.z | 2.10.z
| 0.2.0 | 1.2.z, 2.0.z, 2.1.z | 0.98.z, 1.0.z, 1.1.z, 1.2.z | 0.9.z, 1.0.0-preZ | 1.z*,2.z,5.z | 5.3-5.5.z, 6.2-6.6.z | 3.2.z | 1.6.z | 2.10.z
|==========================

*Elasticsearch 1.z compatibility is deprecated and no longer tested by default

0 comments on commit c0ecc65

Please sign in to comment.