Questions tagged [titan]

Titan is a highly scalable graph database optimized for storing and querying massive-scale graphs containing billions of vertices and edges distributed across a multi-machine cluster

Titan is a highly scalable graph database optimized for storing and querying massive-scale graphs containing billions of vertices and edges distributed across a multi-machine cluster.

Titan is a transactional database that can support thousands of concurrent users.


Resources :


Related tags :

951 questions
0
votes
3 answers

Memory issue with graph databases

I am trying to benchmark three different graph database the Titan, the OrientDB and the Neo4j. I want to measure the execution time for the database creation. As a test case I use this dataset http://snap.stanford.edu/data/web-flickr.html . Although…
salvador
  • 1,079
  • 3
  • 14
  • 28
0
votes
1 answer

Right way to cleanup neo4jgraph and neo4jhagraph

Like TitanCleanup.clear(TitanGraph g) is there a way to cleanup Neo4jGraph and Neo4jHaGraph.
Amit
  • 435
  • 3
  • 13
0
votes
1 answer

Adding Edge Label Titan-Rexster

I am imlpementing the Titan graph database with Rexster and Cassandra. I try to add an edge like this in Ruby with Gremlin: query = 'a = g.addVertex(null,[name:\'' + someName + '\']); g.addEdge(null, g.getVertex(' + someVertexId + '), a,…
Automatico
  • 12,420
  • 9
  • 82
  • 110
0
votes
1 answer

Titan - Cassandra and Push notificationss

I plan to use Titan for a graph datamodel along with Fanus. Choice of Data Store - I am yet to decide on the Data store though Cassandra seems to be the obvious choice. Has anyone benchmarked Titan with other Data Stores? Push Notifications : Need…
0
votes
1 answer

Using Rexter API to interact with Neo4j

Is there a way to interact with a neo4j graph db (running externally HA mode) via Rexter API. Neo4j's REST api is great but using Rexter makes my application completely agnostic of the remote graph db implementation stack. This will enable me to…
Amit
  • 435
  • 3
  • 13
0
votes
1 answer

Unable to start titan-server (Titan with Cassandra and Rexster)

I am trying to implement titan graph database on cassandra for one of my applications. As per documentation, I have downloaded and extracted titan-cassandra-0.3.2 and when it trying to run titan.sh with titan-server-rexster.xml…
user2611221
  • 99
  • 3
  • 11
0
votes
1 answer

Create\Add a graph Titan server using default rexster

when i run rexster.getGraphNames() my only result is graph, when i ran a gremlin instance directly over titan i had tmp and created a graph called mygraph i have been loooking around and havent found anything
Billybonks
  • 1,568
  • 3
  • 15
  • 32
0
votes
1 answer

Gremlin: T.in operator error with has() filter in Titan 0.3.2

I'm having trouble using the T.in operator with has() filter in Titan 0.3.2 The following Gremlin query...: g.V("type", "articles").out("has_tag").has("name", T.in, ["foobar"]) ... yields the following error in Titan console: No such property: in…
jbmusso
  • 3,436
  • 1
  • 25
  • 36
0
votes
1 answer

Modelling Rules on Graph in Titan DB

Vertices and edges are one aspect in graph modelling. There are others like rules. for e.g. if someone is buying apples but also bought apples in previous 1 week but not bought in competitive stores and is a customer for more than 1 year offer a 10%…
ubreddy
  • 815
  • 2
  • 8
  • 19
0
votes
1 answer

Querying Titan ElasticSearch backend via Rexster

I have Titan 0.3.2 running in embedded mode, and have been able to create and query ElasticSearch indexes via the Gremlin shell (see previous question). I am using the default configuration, which calls the ES index "search". These searches return…
bcm360
  • 1,437
  • 2
  • 17
  • 25
0
votes
2 answers

How to replace an edge with Gremlin script

I want to look for a vertex, get an edge 'views', remove it, and replace with a new edge between the same vertices. g.V('uuid','bf4dcbd24e9944319954dec5ad60c658') …
joaoricardo000
  • 4,764
  • 4
  • 25
  • 36
0
votes
1 answer

Could not instantiate implementation: AstyanaxStoreManager

I try to access the Titan graph database with Cassandra backend and everything works fine with the following code: package ch.uzh.ifi.ddis.dm.twhc.clusterhierarchy; import…
Faber
  • 1,504
  • 2
  • 13
  • 21
0
votes
2 answers

Cassandra keyspace in Titan graph data base

I used Cassandra as my back end and created a key space in gremlin using the following properties conf=new…
Subbu
  • 109
  • 7
0
votes
1 answer

Titan graph leaf nodes

I've a graph like " A-->B-->C " now i removed vertex "B". Now my graph contains vertices A and C and no edges, here C is the leaf node it doesn't linked with any other nodes. Now my doubt is what is advantage of leaf nodes…
Subbu
  • 109
  • 7
0
votes
1 answer

Pagination for Reading Titan Vertex from HBase

I am currently working on creating a Java code that can read Titan Vertex From from Hadoop HBase backend. I know blueprint api provides a getVertices() method on every TransactionalGraph, but still I am trying implement my own method. Now for usual…
Pradatta
  • 3,000
  • 1
  • 18
  • 22