Using java/gremlin inside python with Jpype!
Sqlg
. It seems a very easy and powerful way to give python code full access to the any java api. In my case I am making SqgGraph
available to python. It is about 5 lines of setup code and voila, the python code has the same functionality as native java.
Does anyone use Jpype, anything caveats I should know about?...Structure Test Suite - Test Data Types and Serialization Types Don't Match?
Lists
, since when GLVs serialize property values of type array or list they come in as an ArrayList
.
However, the structure test suite, namely PropertyTest
, sends the property value type directly to the graph as int[]{1, 2, 3}
for example which breaks our Graph since we only expected ArrayList
due to the expectation of serialization....What's the significance of done: false ? (after calling .next())
Profiling Neptune from javascript
select T.id + optional properties
select().by
does not work as it filters out not productive
properties.
Here is the sample graph I am testing this on.
...Is there a way to specify a query execution timeout via the GremlinLangScriptEngine?
ScriptEngine
implementations in that it operates in the current thread without interrupt. we'd wrapped the GremlinScriptEngine
up into the GremlinExecutor
to try to generalize behavior for timeouts and Future
based execution. you would have to use that class to get that sort of behavior and avoid direct use of the GremlinLangScriptEngine
directly.What algorithms exist for this hypergraph data structure?
Basic vertex querying does not work in Amazon Neptune but it works with local Gremlin Server
CollectingBarrierStep bug
pymogwai
Naming multiple vertices
Possibilities to improve performance on query?
Neptune Cluster Balancing Configuration
[Bug] clone query affects original cloned query
process
to gProcess
as it's a global variable in Nodejs...Neo4j news
Confusing behavior of `select()`.
Tinkerpop Server OOM
Good CLI REPL allowing unlabeled edges?
g.V().out()
as opposed to g.V().out('default')
. speaking more to your questions, i'm not sure what other graph frameworks you might use. i could be wrong, but i think NetworkX lets you create labelless graph elements: https://networkx.org/Best practices for local development with Neptune.
I would be curious to hear what the needs are for local dev....
Sequential edge creation between streamed vertices
next
edge.
For example, given this g.V().hasLabel("person").values("name")
produces:
```
==> josh...partition()
step so that you could change all that code to just:
```
g.V().hasLabel('person').
partition(2).
addE('next').from.......