tinkerpop3 icon indicating copy to clipboard operation
tinkerpop3 copied to clipboard

Blazegraph Tinkerpop3 Implementation

Results 10 tinkerpop3 issues
Sort by recently updated
recently updated
newest added

The project seems to be pretty much stale. I'd love to see a fork going and may be switching from java to python. What does the community think?

I'm trying to update a triple by issuing ```scala // val graph: BlazeGraphEmbedded // val id: String = "subject id" graph.update( s""" | |DELETE WHERE { | ?p ?o |}...

TestSuite still seems to run. Committed this while tests 743 of 876 had past positive - will get back later with full results of the very long running (up to...

I'm running this code on a 480K nodes graph g.V().has(property, value) and it takes more than 8 hours to complete. Am I doing something wrong? I didn't set up any...

Hi! When I try to File file = new File("/blaze/bg1.jrnl"); final String journal = file.getAbsolutePath(); final BigdataSailRepository repo = BasicRepositoryProvider.open(journal); graph = BlazeGraphEmbedded.open(repo); I get error: java.lang.NoSuchMethodError: com.bigdata.rdf.sail.BigdataSailRepository.getDatabase()Lcom/bigdata/rdf/store/AbstractTripleStore; at com.blazegraph.gremlin.embedded.BlazeGraphEmbedded.open(BlazeGraphEmbedded.java:180)...

tp3.version needs upgrade to 3.3.4 blaze.version needs upgrade to 2.1.4 then deprecated code needs to be replaced. Please comment and thumbs up if you'd like to participate in creating a...

``` gremlin> :install com.blazegraph blazegraph-gremlin 1.0.0 ==>Conflicting module versions. Module [groovy-xml is loaded in version 2.4.6 and you are trying to load version 2.4.1 ```

The README mentions a client/server implementation is reserved for a future release. Is this something that is planned for the near future?

``` @Test public void testBlazeGraph() { StopWatch stopWatch = new StopWatch(); stopWatch.start(); final BlazeGraphEmbedded g = BlazeGraphFactory.open(journalFile); for (int i = 0; i < 10000; i++) { g.addVertex(T.label, "Person", "name",...

I noticed this in the documentation. ``` graph.search("hell*", Match.ANY).count() ``` If a `P`-predicate is created for `Match.ANY` (and the others) then, when the `TraversalStrategy` that folds `has()`-steps into `BlazeGraphStep`, it...