JanusGraph: Distributed Graph Database is a scalable graph database optimized for storing and querying graphs containing hundreds of billions of vertices and edges distributed across a multi-machine cluster. JanusGraph is a transactional database that can support thousands of concurrent users executing complex graph traversals in real time. -- JanusGraph Homepage
Amazon DynamoDB is a fast and flexible NoSQL database service for all applications that need consistent, single-digit millisecond latency at any scale. It is a fully managed database and supports both document and key-value data models. Its flexible data model and reliable performance make it a great fit for mobile, web, gaming, ad-tech, IoT, and many other applications. -- AWS DynamoDB Homepage
JanusGraph + DynamoDB = Distributed Graph Database - Cluster Host Management
The following is a list of features of the Amazon DynamoDB Storage Backend for JanusGraph.
This example populates a JanusGraph database backed by DynamoDB Local using the Marvel Universe Social Graph. The graph has a vertex per comic book character with an edge to each of the comic books in which they appeared.
Install the prerequisites (Git, JDK 1.8, Maven, Docker, wget, gpg) of this tutorial. The command below uses a convenience script for Amazon Linux on EC2 instances to install Git, Open JDK 1.8, Maven, Docker and Docker Compose. It adds the ec2-user to the docker group so that you can execute Docker commands without using sudo. Log out and back in to effect changes on ec2-user.
curl https://raw.githubusercontent.com/awslabs/dynamodb-janusgraph-storage-backend/master/src/test/resources/install-reqs.sh | bash
exit
Clone the repository and change directories.
git clone https://github.com/awslabs/dynamodb-janusgraph-storage-backend.git && cd dynamodb-janusgraph-storage-backend
Use Docker and Docker Compose to bake DynamoDB Local into a container and start Gremlin Server with the DynamoDB Storage Backend for JanusGraph installed.
docker build -t awslabs/dynamodblocal ./src/test/resources/dynamodb-local-docker \
&& src/test/resources/install-gremlin-server.sh \
&& cp server/dynamodb-janusgraph-storage-backend-*.zip src/test/resources/dynamodb-janusgraph-docker \
&& mvn docker:build -Pdynamodb-janusgraph-docker \
&& docker-compose -f src/test/resources/docker-compose.yml up -d \
&& docker exec -i -t dynamodb-janusgraph /var/jg/bin/gremlin.sh
After the Gremlin shell starts, set it up to execute commands remotely.
:remote connect tinkerpop.server conf/remote.yaml session
:remote console
Load the first 100 lines of the Marvel graph using the Gremlin shell.
com.amazon.janusgraph.example.MarvelGraphFactory.load(graph, 100, false)
Print the characters and the comic-books they appeared in where the characters had a weapon that was a shield or claws.
g.V().has('weapon', within('shield','claws')).as('weapon', 'character', 'book').select('weapon', 'character','book').by('weapon').by('character').by(__.out('appeared').values('comic-book'))
Print the characters and the comic-books they appeared in where the characters had a weapon that was not a shield or claws.
g.V().has('weapon').has('weapon', without('shield','claws')).as('weapon', 'character', 'book').select('weapon', 'character','book').by('weapon').by('character').by(__.out('appeared').values('comic-book'))
Print a sorted list of the characters that appear in comic-book AVF 4.
g.V().has('comic-book', 'AVF 4').in('appeared').values('character').order()
Print a sorted list of the characters that appear in comic-book AVF 4 that have a weapon that is not a shield or claws.
g.V().has('comic-book', 'AVF 4').in('appeared').has('weapon', without('shield','claws')).values('character').order()
Exit remote mode and Control-C to quit.
:remote console
Clean up the composed Docker containers.
docker-compose -f src/test/resources/docker-compose.yml stop
rm -rf server
.Load the Graph of the Gods.
GraphOfTheGodsFactory.loadWithoutMixedIndex(graph, true)
scriptEngines/gremlin-groovy/scripts
list element in the Gremlin Server YAML
file for more information about what is in scope in the remote environment.TinkerGraph.open()
step as the remote execution environment already has a
graph
variable set up. TinkerPop have
other tutorials available as well.The DynamoDB Storage Backend for JanusGraph includes CloudFormation templates that creates a VPC, an EC2 instance in the VPC, installs Gremlin Server with the DynamoDB Storage Backend for JanusGraph installed, and starts the Gremlin Server Websocket endpoint. Also included are templates that create the graph's DynamoDB tables. The Network ACL of the VPC includes just enough access to allow:
Requirements for running this CloudFormation template include two items.
Note, this cloud formation template downloads the JanusGraph zip files available on the JanusGraph downloads page. The CloudFormation template downloads these packages and builds and adds the DynamoDB Storage Backend for JanusGraph with its dependencies.
Below you can find a list of CloudFormation templates discussed in this document, and links to launch each stack in CloudFormation and to view the stack in the designer.
Template name | Description | View |
---|---|---|
Single-Item Model Tables | Set up six graph tables with the single item data model. | View |
Multiple-Item Model Tables | Set up six graph tables with the multiple item data model. | View |
Gremlin Server on DynamoDB | The HTTP user agent header to send with all requests. | View |
src/test/resources/dynamodb.properties
assumes that you
will deploy the stack in us-west-2 and that you will use the multiple item model.chmod 400
on your key as
EC2 instance will reject connections if permissions on the key are
too open.ec2.amazonaws.com
as an identity provider. The easiest way to do
this is to create a new role on the IAM console
and from the AWS Service Role list in the accordion, select Amazon EC2, and add the AmazonDynamoDBFullAccess
and AmazonS3ReadOnlyAccess managed policies.GremlinShell
output of the
CloudFormation template and run it on your command line.The Amazon DynamoDB Storage Backend for JanusGraph has a flexible data model that allows clients to select the data model for each JanusGraph backend table. Clients can configure tables to use either a single-item model or a multiple-item model.
The single-item model uses a single DynamoDB item to store all values for a single key. In terms of JanusGraph backend implementations, the key becomes the DynamoDB hash key, and each column becomes an attribute name and the column value is stored in the respective attribute value.
This is definitely the most efficient implementation, but beware of the 400kb limit DynamoDB imposes on items. It is best to only use this on tables you are sure will not surpass the item size limit. Graphs with low vertex degree and low number of items per index can take advantage of this implementation.
The multiple-item model uses multiple DynamoDB items to store all values for a single key. In terms of JanusGraph backend implementations, the key becomes the DynamoDB hash key, and each column becomes the range key in its own item. The column values are stored in its own attribute.
The multiple item model is less efficient than the single-item during initial graph loads, but it gets around the 400kb limitation. The multiple-item model uses range Query calls instead of GetItem calls to get the necessary column values.
Each configuration option has a certain mutability level that governs whether and how it can be modified after the database is opened for the first time. The following listing describes the mutability levels.
Leading namespace names are shortened and sometimes spaces were inserted in long strings to make sure the tables below are formatted correctly.
All of the following parameters are in the storage
(s
) namespace, and most
are in the storage.dynamodb
(s.d
) namespace subset.
Name | Description | Datatype | Default Value | Mutability |
---|---|---|---|---|
s.backend |
The primary persistence provider used by JanusGraph. To use DynamoDB you must set this to com.amazon.janusgraph.diskstorage. dynamodb.DynamoDBStoreManager |
String | LOCAL | |
s.d.prefix |
A prefix to put before the JanusGraph table name. This allows clients to have multiple graphs in the same AWS DynamoDB account in the same region. | String | jg | LOCAL |
s.d.metrics-prefix |
Prefix on the codahale metric names emitted by DynamoDBDelegate. | String | d | LOCAL |
s.d.force-consistent-read |
This feature sets the force consistent read property on DynamoDB calls. | Boolean | true | LOCAL |
s.d.enable-parallel-scan |
This feature changes the scan behavior from a sequential scan (with consistent key order) to a segmented, parallel scan. Enabling this feature will make full graph scans faster, but it may cause this backend to be incompatible with Titan's OLAP library. | Boolean | false | LOCAL |
s.d.max-self-throttled-retries |
The number of retries that the backend should attempt and self-throttle. | Integer | 60 | LOCAL |
s.d.initial-retry-millis |
The amount of time to initially wait (in milliseconds) when retrying self-throttled DynamoDB API calls. | Integer | 25 | LOCAL |
s.d.control-plane-rate |
The rate in permits per second at which to issue DynamoDB control plane requests (CreateTable, UpdateTable, DeleteTable, ListTables, DescribeTable). | Double | 10 | LOCAL |
s.d.native-locking |
Set this to false if you need to use JanusGraph's locking mechanism for remote lock expiry. | Boolean | true | LOCAL |
s.d.use-titan-ids |
Set this to true if you are migrating from Titan to JanusGraph so that you do not have to copy your titan_ids table. | Boolean | false | LOCAL |
Some configurations require specifications for each of the JanusGraph backend Key-Column-Value stores. Here is a list of the default JanusGraph backend Key-Column-Value stores:
Any store you define in the umbrella storage.dynamodb.stores.*
namespace that starts
with ulog_
will be used for user-defined transaction logs.
Again, if you opt out of storage-native locking with the
storage.dynamodb.native-locking = false
configuration, you will need to configure the
data model, initial capacity and rate limiters for the three following stores:
You can configure the initial read and write capacity, rate limits, scan limits and data model for each KCV graph store. You can always scale up and down the read and write capacity of your tables in the DynamoDB console. If you have a write once, read many workload, or you are running a bulk data load, it is useful to adjust the capacity of edgestore and graphindex tables as necessary in the DynamoDB console, and decreasing the allocated capacity and rate limiters afterwards.
For details about these Key-Column-Value stores, please see
Store Mapping
and
JanusGraph Data Model.
All of these configuration parameters are in the storage.dynamodb.stores
(s.d.s
) umbrella namespace subset. In the tables below these configurations
have the text t
where the JanusGraph store name should go.
When upgrading from Titan 1.0.0, you will need to set the
ids.store-name configuration
to titan_ids
to avoid re-using id ranges that are already assigned.
Name | Description | Datatype | Default Value | Mutability |
---|---|---|---|---|
s.d.s.t.data-model |
SINGLE means that all the values for a given key are put into a single DynamoDB item. A SINGLE is efficient because all the updates for a single key can be done atomically. However, the tradeoff is that DynamoDB has a 400k limit per item so it cannot hold much data. MULTI means that each 'column' is used as a range key in DynamoDB so a key can span multiple items. A MULTI implementation is slightly less efficient than SINGLE because it must use DynamoDB Query rather than a direct lookup. It is HIGHLY recommended to use MULTI for edgestore and graphindex unless your graph has very low max degree. | String | MULTI | FIXED |
s.d.s.t.initial-capacity-read |
Define the initial read capacity for a given DynamoDB table. Make sure to replace the s with your actual table name. |
Integer | 4 | LOCAL |
s.d.s.t.initial-capacity-write |
Define the initial write capacity for a given DynamoDB table. Make sure to replace the s with your actual table name. |
Integer | 4 | LOCAL |
s.d.s.t.read-rate |
The max number of reads per second. | Double | 4 | LOCAL |
s.d.s.t.write-rate |
Used to throttle write rate of given table. The max number of writes per second. | Double | 4 | LOCAL |
s.d.s.t.scan-limit |
The maximum number of items to evaluate (not necessarily the number of matching items). If DynamoDB processes the number of items up to the limit while processing the results, it stops the operation and returns the matching values up to that point, and a key in LastEvaluatedKey to apply in a subsequent operation, so that you can pick up where you left off. Also, if the processed data set size exceeds 1 MB before DynamoDB reaches this limit, it stops the operation and returns the matching values up to the limit, and a key in LastEvaluatedKey to apply in a subsequent operation to continue the operation. | Integer | 10000 | LOCAL |
All of these configuration parameters are in the storage.dynamodb.client
(s.d.c
) namespace subset, and are related to the DynamoDB SDK client
configuration.
Name | Description | Datatype | Default Value | Mutability |
---|---|---|---|---|
s.d.c.connection-timeout |
The amount of time to wait (in milliseconds) when initially establishing a connection before giving up and timing out. | Integer | 60000 | LOCAL |
s.d.c.connection-ttl |
The expiration time (in milliseconds) for a connection in the connection pool. | Integer | 60000 | LOCAL |
s.d.c.connection-max |
The maximum number of allowed open HTTP connections. | Integer | 10 | LOCAL |
s.d.c.retry-error-max |
The maximum number of retry attempts for failed retryable requests (ex: 5xx error responses from services). | Integer | 0 | LOCAL |
s.d.c.use-gzip |
Sets whether gzip compression should be used. | Boolean | false | LOCAL |
s.d.c.use-reaper |
Sets whether the IdleConnectionReaper is to be started as a daemon thread. | Boolean | true | LOCAL |
s.d.c.user-agent |
The HTTP user agent header to send with all requests. | String | LOCAL | |
s.d.c.endpoint |
Sets the service endpoint to use for connecting to DynamoDB. | String | LOCAL | |
s.d.c.signing-region |
Sets the signing region to use for signing requests to DynamoDB. Required. | String | LOCAL |
All of these configuration parameters are in the
storage.dynamodb.client.proxy
(s.d.c.p
) namespace subset, and are related to
the DynamoDB SDK client proxy configuration.
Name | Description | Datatype | Default Value | Mutability |
---|---|---|---|---|
s.d.c.p.domain |
The optional Windows domain name for configuration an NTLM proxy. | String | LOCAL | |
s.d.c.p.workstation |
The optional Windows workstation name for configuring NTLM proxy support. | String | LOCAL | |
s.d.c.p.host |
The optional proxy host the client will connect through. | String | LOCAL | |
s.d.c.p.port |
The optional proxy port the client will connect through. | String | LOCAL | |
s.d.c.p.username |
The optional proxy user name to use if connecting through a proxy. | String | LOCAL | |
s.d.c.p.password |
The optional proxy password to use when connecting through a proxy. | String | LOCAL |
All of these configuration parameters are in the storage.dynamodb.client.socket
(s.d.c.s
) namespace subset, and are related to the DynamoDB SDK client socket
configuration.
Name | Description | Datatype | Default Value | Mutability |
---|---|---|---|---|
s.d.c.s.buffer-send-hint |
The optional size hints (in bytes) for the low level TCP send and receive buffers. | Integer | 1048576 | LOCAL |
s.d.c.s.buffer-recv-hint |
The optional size hints (in bytes) for the low level TCP send and receive buffers. | Integer | 1048576 | LOCAL |
s.d.c.s.timeout |
The amount of time to wait (in milliseconds) for data to be transfered over an established, open connection before the connection times out and is closed. | Long | 50000 | LOCAL |
s.d.c.s.tcp-keep-alive |
Sets whether or not to enable TCP KeepAlive support at the socket level. Not used at the moment. | Boolean | LOCAL |
All of these configuration parameters are in the storage.dynamodb.client.executor
(s.d.c.e
) namespace subset, and are related to the DynamoDB SDK client
executor / thread-pool configuration.
Name | Description | Datatype | Default Value | Mutability |
---|---|---|---|---|
s.d.c.e.core-pool-size |
The core number of threads for the DynamoDB async client. | Integer | 25 | LOCAL |
s.d.c.e.max-pool-size |
The maximum allowed number of threads for the DynamoDB async client. | Integer | 50 | LOCAL |
s.d.c.e.keep-alive |
The time limit for which threads may remain idle before being terminated for the DynamoDB async client. | Integer | LOCAL | |
s.d.c.e.max-queue-length |
The maximum size of the executor queue before requests start getting run in the caller. | Integer | 1024 | LOCAL |
s.d.c.e.max-concurrent-operations |
The expected number of threads expected to be using a single JanusGraph instance. Used to allocate threads to batch operations. | Integer | 1 | LOCAL |
All of these configuration parameters are in the storage.dynamodb.client.credentials
(s.d.c.c
) namespace subset, and are related to the DynamoDB SDK client
credential configuration.
Name | Description | Datatype | Default Value | Mutability |
---|---|---|---|---|
s.d.c.c.class-name |
Specify the fully qualified class that implements AWSCredentialsProvider or AWSCredentials. | String | com.amazonaws.auth. BasicAWSCredentials |
LOCAL |
s.d.c.c.constructor-args |
Comma separated list of strings to pass to the credentials constructor. | String | accessKey,secretKey |
LOCAL |
Earlier versions of this software supported Titan 1.0.0. This software supports upgrading from the DynamoDB Storage Backend for Titan 1.0.0 by following the steps to update your configuration below.
ids.store-name=titan_ids
. This allows you to reuse your
titan_ids
table.storage.backend=com.amazon.janusgraph.diskstorage.dynamodb.DynamoDBStoreManager
.Install dependencies. For Amazon Linux:
sudo wget http://repos.fedorapeople.org/repos/dchen/apache-maven/epel-apache-maven.repo \
-O /etc/yum.repos.d/epel-apache-maven.repo
sudo sed -i s/\$releasever/6/g /etc/yum.repos.d/epel-apache-maven.repo
sudo yum update -y && sudo yum upgrade -y
sudo yum install -y apache-maven sqlite-devel git java-1.8.0-openjdk-devel
sudo alternatives --set java /usr/lib/jvm/jre-1.8.0-openjdk.x86_64/bin/java
sudo alternatives --set javac /usr/lib/jvm/java-1.8.0-openjdk.x86_64/bin/javac
git clone https://github.com/awslabs/dynamodb-janusgraph-storage-backend.git
cd dynamodb-janusgraph-storage-backend && mvn install
screen
.Run the single-item data model tests.
mvn verify -P integration-tests \
-Dexclude.category=com.amazon.janusgraph.testcategory.MultipleItemTestCategory \
-Dinclude.category="**/*.java" > o 2>&1
Run the multiple-item data model tests.
mvn verify -P integration-tests \
-Dexclude.category=com.amazon.janusgraph.testcategory.SingleItemTestCategory \
-Dinclude.category="**/*.java" > o 2>&1
Run other miscellaneous tests.
mvn verify -P integration-tests -Dinclude.category="**/*.java" \
-Dgroups=com.amazon.janusgraph.testcategory.IsolateRemainingTestsCategory > o 2>&1
CTRL-A D
and logout of the EC2 instance.Log back into the EC2 instance and resume the screen with screen -r
to
review the test results.
cd target/surefire-reports && grep testcase *.xml | grep -v "\/"