Skip to content
This repository has been archived by the owner on Jul 20, 2022. It is now read-only.

Fix some minor formatting in the readme. #82

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions aws-blog-titan-graph-database/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,9 @@ This example populates a Titan graph database backed by DynamoDB Local using the
```
5. Open a graph using the Titan DynamoDB Storage Backend in the Gremlin shell.

```
conf = new BaseConfiguration()

```
conf = new BaseConfiguration()
conf.setProperty("storage.backend", "com.amazon.titan.diskstorage.dynamodb.DynamoDBStoreManager")
conf.setProperty("storage.dynamodb.client.endpoint", "http://localhost:4567")
conf.setProperty("index.search.backend", "elasticsearch")
Expand All @@ -63,4 +64,4 @@ conf.setProperty("index.search.elasticsearch.local-mode", "true")
conf.setProperty("index.search.elasticsearch.inteface", "NODE")
g = TitanFactory.open(conf)
com.amazonaws.bigdatablog.titanrestaurants.RestaurantFactory.load(g)
```
```