Closed dspasic closed 7 years ago
Thank You @dspasic . Your explanation of the issue solved https://github.com/awslabs/dynamodb-janusgraph-storage-backend/issues/249
I used to execute graph = TinkerGraph.open()
Output: No such property: TinkerGraph for class: Script2
After reading your issue, I executed graph = JanusGraphFactory.open('/usr/local/packages/dynamodb-janusgraph-storage-backend-1.1.1/conf/gremlin-server/dynamodb.properties')
Output : ==>standardjanusgraph[com.amazon.janusgraph.diskstorage.dynamodb.DynamoDBStoreManager:[127.0.0.1]]
Thank you for the reply @Shubhakeerthi. I found out, that I need to define the s.d.s.*.data-model from MULTI, which is the default value, to SINGLE. So it was my mistake. Sorry for that. However, it confused me a little bit to don't get any response.
storage.dynamodb.stores.edgestore.data-model=SINGLE
storage.dynamodb.stores.graphindex.data-model=SINGLE
storage.dynamodb.stores.janusgraph_ids.data-model=SINGLE
storage.dynamodb.stores.system_properties.data-model=SINGLE
storage.dynamodb.stores.systemlog.data-model=SINGLE
storage.dynamodb.stores.txlog.data-model=SINGLE
Yes, if you use the single item data model, you need to specify that in properties, as the default is MULTI.
Hi,
here the headline: after trying to execute
graph = JanusGraphFactory.open('path/to/configuration.properties')
the shell freezes, means there is no response from the method and I need to quit the session with CTRL-C.I'm using the recent version of the storage backend and for JanusGraph the version 0.2.0. The gremlin server is running on an ec2 instance and I'm using the single table strategy.
One more note maybe: I adopted the cf template instead of applying it 1:1.
My question is how can I troubleshoot the issue? Do somebody have a hint for me?
The properties looks as follow:
Let me know you if you need more information.