Questions tagged [datastax-enterprise-graph]

DataStax Enterprise Graph is a scalable, enterprise-ready graph database.

DataStax Enterprise Graph is a scalable, enterprise-ready graph database capable of storing and querying graphs with billions of elements while providing enterprise features such as security, monitoring, advanced management, encryption and 24/7 support.

213 questions
2
votes
1 answer

Can't initialize graph on Datastax using Spark

I'm trying to initialize my Datastax graph using Spark as follow : val graphBuilder = spark.dseGraph("GRAPH_NAME") but I have the following exception : Exception in thread "main" java.lang.NoClassDefFoundError:…
2
votes
1 answer

dse graph - cassandra keyspace _pvt not created

$ bin/dse gremlin-console \,,,/ (o o) -----oOOo-(3)-oOOo----- plugin activated: tinkerpop.tinkergraph plugin activated: tinkerpop.server plugin activated: tinkerpop.utilities gremlin> system.graphs() ==>idg gremlin> $…
2
votes
2 answers

Gremlin count() query in Datastax is too slow

I have 3 node in datastax enterprise and loaded 65 million vertices and edges on these. when i use dse studio or gremlin console and run gremlin query on my graph the query is too slow. I defined any kind of index and test again but Had no…
ahmad
  • 73
  • 1
  • 6
2
votes
1 answer

Removing Seed node from Datastax datacenter

I have 6 nodes in our data center of which 3 node also act as seed nodes.I was planning to remove 3 nodes from rack2 and also reduce seed node count to two. With "nodetool decommission" we can remove nodes but is there any extra steps involve in…
2
votes
1 answer

Transactions in Tinkerpop3 DSE

This is a question to understand the transaction semantics in DSE graph via TinkerPop3 Java API As I understand, when you have DseSession.executeGraph(String query) is executed in a single transaction. But what is the mechanism to achieve the same…
Sathyakumar Seshachalam
  • 2,013
  • 3
  • 20
  • 32
2
votes
1 answer

How to calculate the Date difference in CQL3/Cassandra

I'm Trying in the cassandra query language tool DevCenter 1.6.0 to get the date difference from existing table.
2
votes
1 answer

Iterating a GraphTraversal with GraphFrame causes UnsupportedOperationException Row to Vertex conversion

The following GraphTraversal traversal = gf().E().hasLabel("foo").limit(5); while (traversal.hasNext()) {} causes the following Exception: java.lang.UnsupportedOperationException: Row to Vertex conversion is not supported: Use…
2
votes
1 answer

How to handle supernodes with DSE Graph

I’ve a simple Vertex „url“: schema.vertexLabel('url').partitionKey('url_fingerprint', 'prop1').properties("url_complete").ifNotExists().create() And a edgeLabel called „links“ which connects one url to…
2
votes
1 answer

Gremlin Python project By clause

Have a graph running on Datastax Enterprise Graph (5.1 Version), running on Cassandra storage. Trying to run a query to get both the ID and the property. In Gremlin Console I can do this: gremlin> g.V(1).project("v",…
2
votes
1 answer

DataStax Enterprise Graph adding Edge using Fluent API

i was able to add an edge in DSE graph using the native api from java. but when i try to add the edge using the fluent api in java, it doesnt work. i went through the documentation for fluent api and there was nothing to show how to add an edge.…
2
votes
1 answer

Gremlin: adding edges between nodes having the same property

I am very new to Gremlin. I am trying to build a graph on DSE graph using Gremlin. I am able to create the vertices: a = graph.addVertex(label, 'label1', 'key', 1) b = graph.addVertex(label, 'label1', 'key', 2) c = graph.addVertex(label, 'label2',…
2
votes
1 answer

Explain plan in gremlin Tinkerpop3 (DSE graph)

I have written one query which is taking longer than expected…
2
votes
1 answer

Intersect query for tinkerpop3 gremlin

I am using DSE-5.0.5 and DSE-studio and want to write a query in gremlin inside notebook graph. Is there a intersect query that could give me common elements between two sets returned via traversal in tinkerpop3 . I have written this…
2
votes
0 answers

datastax node.js driver for graph(using gremlin queries), How can I fetch large results set?

Im using datastax node.js driver for dse graph. According to http://docs.datastax.com/en/developer/nodejs-driver/latest/features/paging/ It works only for Cassandra and DSE, but I would like to do the same for DSE Graph using gremlin queries :…
2
votes
1 answer

Why AddEdgeStep doesn't work after DropStep of edges in the same traversal using Gremlin?

I have this code which essentially updates properties, removes all old IsOfType edges and adds new IsOfType edges (if I remove all the method/class abstraction and make it inline): traversal = g.V("Entity:633471488:519").as("entity"); //update…
Michail Michailidis
  • 11,792
  • 6
  • 63
  • 106
1
2
3
14 15