Questions tagged [tinkerpop]

Apache TinkerPop™ is a graph computing framework for both graph databases (OLTP) and graph analytic systems (OLAP).

Apache TinkerPop™ is a graph computing framework for both graph databases (OLTP) and graph analytic systems (OLAP). Graph systems that are TinkerPop-enabled, allow users to the ability to utilize the various aspects of the TinkerPop stack in development of vendor-agnostic graph applications. The key component to the TinkerPop stack is the Gremlin, a graph traversal language, which allows users to query and manage a graph.

974 questions
-1
votes
1 answer

How can use a centrality metrics in Gremlin on the text file?

Please someone send me the correct code in (apache-tinkerpop(Gremlin) for both(closeness centrality, betweenness centrality, PageRank, and EiegenValue ) metrics without any error during the execution step on the list file dataset that like…
bahzad
  • 19
  • 3
-1
votes
1 answer

Exception using client and trying to add vertices

Steps in the code: 1.Declared Azure Cosmos DB Configuration variables(Host , PrimaryKey , Database ,Container) 2.Connection Pool 3.WebSocketConfiguration 4.GremlinServer After all above steps, when I was using gremlin client and trying to add…
-1
votes
1 answer

Select multiple edges and vertexes in a gremlin query

I am creating a vertex with multiple edges but need a bit of help writing a query to retrieve the data. Creation query g.addV("referral") .as("r") .property("createdAt", Date.now()) …
xeroshogun
  • 1,062
  • 1
  • 18
  • 31
-1
votes
1 answer

Hyperloglog for Tinkerpop, .count() approximation

Is there a solution similar to Hyperloglog for graph databases like Tinkerpop. .count() step takes forever on large dataset, however approximation would be sufficient
-1
votes
1 answer

How to solve java.lang.ClassNotFoundException: org.apache.tinkerpop.gremlin.spark.structure.io.gryo.GryoSerializer

I am using tinkerpop + Janus Graph + Spark build.gradle compile group: 'org.apache.tinkerpop', name: 'spark-gremlin', version: '3.1.0-incubating' below is some critical configuration that we have spark.serializer:…
Bravo
  • 8,589
  • 14
  • 48
  • 85
-1
votes
1 answer

Amazon Neptune compatible with Tinkerpop? Why and how?

I'm trying to learn a bit about graph languages and the query language Gremlin. This is from the docs: Amazon Neptune is compatible with Apache TinkerPop3 and Gremlin 3.4.1. This means that you can connect to a Neptune DB instance and use the…
Jwan622
  • 11,015
  • 21
  • 88
  • 181
-1
votes
1 answer

Should I declare GryoMapper as a static field?

Looked at the following code, it appears to be thread-safe. https://github.com/apache/tinkerpop/blob/master/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/gryo/GryoMapper.java Hoping to use it like class Foo { private…
u07103
  • 287
  • 1
  • 4
  • 14
-1
votes
1 answer

Getting vertices that are connected to ALL current vertices

I might be asking an obvious question, but new to the graphs and gremlin language and got a bit stuck. I have a graph setup where I can find N vertices of a particular type. Let's say I find 2 vertices of type X. These vertices have edges to K…
Stanley Kirdey
  • 602
  • 5
  • 20
-1
votes
1 answer

Graphloader for JanusGraph

I am building a small graph DB by hand, which will undergo many changes as the graph grows. To maintain the graph in edge and vertex CSV files. I currently have a python script which reads the edge and vertex files and loads the data one element at…
Akarsh
  • 386
  • 1
  • 3
-1
votes
1 answer

Meta-property of a graph in Neo4j

While traversing a Neo4j graph, I want to set some key-val pair against every property of the graph. It is easy to do using meta-properties, but in Neo4j graph feature, "Meta-property" feature is false(not there).Is there any other way possible to…
sumit
  • 133
  • 2
  • 10
-1
votes
1 answer

Is there a way to build a graph in Gephi and export it to TitanDb?

Is there a way to build a graph using Gephi with the Data Laboratory and export it to titan db? I tried the following without success: Built a simple graph in Gephi with the Data Laboratory Saved the graph as GraphML format Used the titanDb's…
Breach
  • 1,288
  • 1
  • 11
  • 25
-1
votes
1 answer

Working graph server setup for use with Python3

I'm solving a problem that seems most appropriately handled by a graph database, so I wanted to get a graph database server up and running, and go from there. I'm a Python developer, so I was trying to get something running with the bulbs library,…
Mud Bungie
  • 19
  • 1
-1
votes
1 answer

Issue while ingesting a Titan graph into Faunus

I have installed both Titan and Faunus and each seems to be working properly (titan-0.4.4 & faunus-0.4.4) However, after ingesting a sizable graph in Titan and trying to import it in Faunus via FaunusFactory.open( ) I am experiencing issues. To…
-4
votes
1 answer

How can I get all the file names under one folder using gremlin?

How can I get all the file names under one file folder? and foreach all the file names? using gremlin command
Jeff
  • 117
  • 10
1 2 3
64
65