I want to use Blueprints and Pipes in OrientDB. What is the method? And also TinkerPop3 or TinkerPop2? Which is better for my learning experience?
How can we use Tinkerpop Blueprints in Orientdb?
1.7k Views Asked by Zeeshan At
2
There are 2 best solutions below
0
Craig Trader
On
If you're using OrientDB 1.7.X and you're using the Graph API, then you're already using Blueprints 2.5.0. Gremlin 2.5.0 is included as well. Other useful documents include:
Related Questions in ORIENTDB
- OrientDB - SQL command to pass array value as parameter in OrientDB function
- Error while creating database on OrientDB
- Create a vertex with Label in Gremlin
- OrientDB Execute a Script from a Text (.osql) File
- How to retrieve data from orientdb database to a list from two clusters that are linked with a edge?
- How to access results within batch statements in oriento
- OrientDB graph operations via REST API
- Get all used fieldnames of schema-hybrid Class in Orientdb
- How to do sharding and replication of Orient DB database
- select properties of the vertice that has out with specified @rid
- which data type in orient db for @rid?
- Understand orient-db logic
- Embedded Set,Link Set in OType in OrientDb
- NodeJS: How to improve error handling when writing a model class for OrientDB
- $parent and $ current in orientDB query
Related Questions in TINKERPOP
- How to efficiently create a vertex with a label and several properties?
- How to query/search/retrieve an Edge with a pair of Vertices in OrientDB using Java API?
- Disable tab to display console commands in the Gremlin console
- Finding vertices with exact edge matches traversing through children
- How to list the nodes associated to a given vertex through intermediate nodes in TinkerPop3?
- Is there a way to define schema constraints on TinkerGraph?
- Best practice: How to specify a vertex's domain 'type' in a graph database
- How to connect to rexster server over rexpro within the java code?
- Tinkerpop Gremlin console not working
- Gremlin Big Pi operation (product of a sequence of terms) followed by id-based summation
- What is tinkerpop?
- How do I traverse the graph given a start point and without knowledge of the final one?
- Gremlin query to get in and out edges for a given Vertex
- TinkerPop Gremlin with Chinese
- java.io.IOException: Connexion reset by peer - Titan Gremlin request to get multiple vertices
Related Questions in TINKERPOP-BLUEPRINT
- Best practice: How to specify a vertex's domain 'type' in a graph database
- How to connect to rexster server over rexpro within the java code?
- Retrieving OrientVertex Objects from OrientDB
- Listing all Vertices of specific class in OrientDB
- Titan's IllegalArgumentException on Graph creation
- Not loading data from titan graph with cassandra backend using gremlin.
- How to retrieve vertexes by edges by Graph API (Tinkerpop Blueprints) in OrientDB?
- OrientDB query way too slow
- How to use "AND" condition in GremlinPipeLine
- How to connect Blueprints to a remote neo4j server
- Orientdb Match with OCommandSQL is returning null Vertices
- Convert GraphResultSet JSON using Graphson
- Representing a graph in java application
- Difference between traversal using gremlin and methods from Graph
- How to handle Options in orientdb blueprint
Related Questions in TINKERPOP-FRAMES
- How to parameterize the sort filter using tinkerpop gremlin / frames?
- How can I use Traversal of Tinkerpop v3 instead of Frames of v2?
- Listing all Vertices of specific class in OrientDB
- FramedGraph mapping between (Tinkerpop) DAO objects to model objects
- How to limit parsing depth using Tinkerpop Frames
- Why simple set and then get on Dynamic Proxy does not persist? (using TinkerPop Frames JavaHandler)
- How to bind a class to a Vertex and also have a property bound to an Edge property using Tinkerpop Frames?
- Tinkerpop frames: Cannot change the schema while a transaction is active
- OrientDB query for nodes connected to origin by multiple ways
- Frames Support with Titan DB 0.9.0-M2
- Add vertex to framed graph in OrientDB
- Gremlin: can't sort edges and return vertices
- How to Find Vertices of Specific class with Tinkerpop Frames
- Tinkerpop Frames: Query vertices based on interface type
- Tinkerpop frame: how to create new Vertex
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The latest versions of OrientDB natively implement the Blueprints API, so you are "using Blueprints" by virtue of using OrientDB. Pipes is a general dataflow framework and can be used with any Blueprints graph. Use Maven and add Pipes and OrientDB as dependencies in order to construct your project as maven will help manage all the dependencies for you.
With respect to TinkerPop2 or TinkerPop3, you might want to refer to this:
Learning Blueprints, should I move directly to Tinkerpop 3?
However, note that OrientDB does not yet implement TinkerPop3, so if you are only interested in that backend, you will have to work in TinkerPop2 for now.
UPDATE: There is a third-party maintained TinkerPop 3.x implementation for OrientDB which can be found here.