Questions tagged [tinkerpop-blueprint]

Blueprints is a property graph model interface API with provided implementations. Databases that implement the Blueprints interfaces automatically support Blueprints-enabled applications.

Tinkerpop: An Open Source Graph Computing Framework


Blueprints

Blueprints is a collection of interfaces, implementations, ouplementations, and test suites for the property graph data model. Blueprints is analogous to the JDBC, but for graph databases. As such, it provides a common set of interfaces to allow developers to plug-and-play their graph database backend. Moreover, software written atop Blueprints works over all Blueprints-enabled graph databases. Within the TinkerPop software stack, Blueprints serves as the foundational technology for:

  • Pipes: A lazy, data flow framework
  • Gremlin: A graph traversal language
  • Frames: An object-to-graph mapper
  • Furnace: A graph algorithms package
  • Rexster: A graph server

Please join the Gremlin users group at http://groups.google.com/group/gremlin-users for all TinkerPop related discussions.

52 questions
2
votes
1 answer

Sparql endpoint for SAIL object

I have created a SAIL object using tinkerpop blueprints to load RDF data into a Graph database. Ive successfully managed to load the data. The Graph database in question does not have a sparql endpoint to run my query mix test driver. Does anyone…
1
vote
0 answers

Add a class vertex with properties and along with list of another class vertices and so on from JAVA in orient graph

Class A has properties and has list of class B and Class B has properties and has list of Class C. Class C has properties and so on. I'm trying to save java object and using tinkerpop - trying to add in orient graph so if i have to add class A…
1
vote
1 answer

ArangoDB and gremlin: How to reduce LOGGING

I have installed gremlin (v. 2.6.0) and ArangoDB (v. 2.8.11) and when I run any request through the gremlin.sh shell I get all the debug messages like 11:17:39.713 [main] DEBUG com.arangodb.http.HttpManager - [REQ]http-GET:…
Kuzeko
  • 1,545
  • 16
  • 39
1
vote
1 answer

how to use Tinkerpop blueprints API in arangodb to get all vertices and edges

I have created graph and add vertices and edges using Tinkerpop api by using below code ArangoDBBatchGraph arang = new ArangoDBBatchGraph("localhost", 8529, "testgraph", "testcollection", "testedgecollection"); Vertex user = null; …
AlexAnand
  • 169
  • 4
  • 18
1
vote
1 answer

Writing vertex to OrientDB with gremlin-scala wrapper

I'm using "com.michaelpollmeier" %% "gremlin-scala" % "3.2.0.1" together with "com.michaelpollmeier" % "orientdb-gremlin" % "3.2.0-incubating.1-SNAPSHOT" to store some domain objects as Vertices to an OrientDB (v2.1.20) I understand it's pretty…
Eddy
  • 1,662
  • 2
  • 21
  • 36
1
vote
0 answers

Neo4j2.3 tinkerpop

Right now we are using Neo4j 1.9.9 version(embedded mode) with tinkerpop blueprints 2.4 API. We are planning to upgrade our Neo4j to 2.3. But I see that blueprints is not compatible with neo 2.3. Since our system is stable now we are trying to…
Siriya
  • 23
  • 4
1
vote
1 answer

OrientDB: how to speed up import from Blueprint Java API?

I'm experiencing really slow data ingestion in OrientDB by using the Blueprint Java API. Specifically, I'm loading ~ 1M nodes and 3M edges from several CSV files by using the plocal mode and the OrientGraphNoTx class (unfortunately I couldn't use…
Alberto
  • 597
  • 3
  • 17
1
vote
1 answer

OrientDB "Cannot find a command executor for the command request" error

I originally posted this as a bug on the OrientDB issue tracker. However, I'm not not so sure it's a bug... Basically when I run the project from the IDE everything works great and all the queries get executed without a hitch. However, when I…
tarka
  • 5,289
  • 10
  • 51
  • 75
1
vote
1 answer

How to mock Tinkerpop blueprint Vertex and Edge objects?

Is there a way to create a fake Tinkerpop Bluerint Vertex and Edge in Java without being part of a database? Thanks
Michail Michailidis
  • 11,792
  • 6
  • 63
  • 106
1
vote
0 answers

Vertex id ignored when bulk loading data into Titan via BatchGraph

When I start my bulk load process using BatchGraph on a TitanGraph object and create vertices I get annoying info messages: 73482 [de...TitanBootstrapper.main()] INFO com.thinkaurelius.titan.graphdb.transaction.StandardTitanTx - Provided vertex id…
1
vote
1 answer

Neo4j, Blueprint and UpgradeNotAllowedByConfigurationException

I am dipping my toes in the Neo4j water, and am running into the following error: Caused by: org.neo4j.kernel.impl.storemigration.UpgradeNotAllowedByConfigurationException: Failed to start Neo4j with an older data store version. To enable automatic…
Magick
  • 4,603
  • 22
  • 66
  • 103
1
vote
1 answer

Is com.tinkerpop.blueprints.Graph object thread-safe?

I've a use case where I build a graph from data retrieved from multiple data stores. Each of those data stores has its own client library that builds the sub-graph representing that particular data stores data. Current implementation Since, I…
Aravind Yarram
  • 78,777
  • 46
  • 231
  • 327
1
vote
1 answer

Listing all Vertices of specific class in OrientDB

I've recently started exploring Graph databases (in particular Neo4j and OrientDB) and have come across a problem I can't seem to put my finger on. I'm running a local installation of OrientDB (OrientDB Server v2.0-M3 is active.). I'm using…
Andreas
  • 920
  • 1
  • 10
  • 22
1
vote
1 answer

How to connect to rexster server over rexpro within the java code?

I have a rexster server running locally on my machine on port 8984. I want to connect to my graph dadabase (orientdb) and execute gremlin scripts within my java code. I couldn't find any good example or tutorial on doing that. Here is my…
Sina
  • 1,632
  • 3
  • 15
  • 21
1
vote
1 answer

Tinkerpop frame: how to create new Vertex

I can't persist a new vertex with Tinkerpop Frame and Blueprint (ver. 2.6). What am I doing wrong? This is my code.. a little cleaned from parts that are not useful. I am using OrientDb as undelying Graph database engine. I receive no exception, but…
Andrea T
  • 3,035
  • 4
  • 23
  • 39