Gremlin OLAP queries on AWS Neptune
Asked Answered
R

1

6

In the AWS Neptune documentation it says it is Apache TinkerPop Gremlin compatible but it only refers to online transaction processing (OLTP) type of graph traversal queries. I haven't seen anything about long-running online analytical processing (OLAP) GraphComputer queries.

Is it possible to execute OLAP queries on graphs stored in AWS Neptune graph database service?

Rabiah answered 20/12, 2017 at 21:58 Comment(0)
K
5

I was at ReInvent and had a chance to talk to Brad about it. For the immediate future it’s all OLTP. only one query per transaction (I.e no semi colons) and must begin with “g.” For your implicit graph.

Update: Since GA (June 2018), Neptune supports multiple queries in a single request/transaction.

Karelian answered 23/12, 2017 at 20:40 Comment(1)
this is true, but all queries except the last one must end with .next(); so if a step ends a traversal such as .drop() then no other queries may come after itZeuxis

© 2022 - 2024 — McMap. All rights reserved.