Questions tagged [gremlin-server]

Gremlin Server is a component of Apache TinkerPop that allows for the remote execution of Gremlin-based traversals.

516 questions
10
votes
1 answer

Max frame length of 65536 has been exceeded

I have a set up where I am using the gremlin-core library to query a remote Janusgraph server. The data size is moderate for now but will increase in the future. A few days ago, I saw the "Max frame length of 65536 has been exceeded" error on my…
Anya
  • 137
  • 1
  • 5
9
votes
1 answer

gremlin python - add multiple but an unknown number of properties to a vertex

I want to add more than one property to a vertex, but from the outset do not explicitly know what those properties might be. For example, say for one person to be added as vertex to the graph, we have the following property dictionary: Person 1 { …
Ian
  • 3,605
  • 4
  • 31
  • 66
9
votes
1 answer

how to commit changes on gremlin server using gremlin python

I am writing a script to create a graph on gremlin-server using the gremlin-python library. I could not find any good documentation for the library. This is the code structure with which I am experimenting: from gremlin_python …
Tushar Aggarwal
  • 827
  • 1
  • 10
  • 26
8
votes
0 answers

What is the minimum System requirement to launch janusgraph

I just started JanusGraph and my total RAM usage is more than 5GB without firing any queries. I have the following dependent services running JanusGraph GremlinServer (via JanusGraph) Cassandra (via JanusGraph) Elasticsearch (via…
Akshay
  • 359
  • 1
  • 3
  • 14
8
votes
1 answer

Does JanusGraph run on Windows 10

I'm running on Windows 10 with janusgraph-0.2.0-hadoop2. I have put the winutils.exe in the bin folder. P:\Software\DB\NoSQL\janusgraph-0.2.0-hadoop2\bin>gremlin-server.bat Error: Could not find or load main class Files I had a quick look…
7
votes
1 answer

Gremlin Console for Windows error "The most significant bit.."

Seems like Gremlin Console not working for Windows: I downloaded the latest Gremlin console and run the bin\gremlin.bat file. seems like after connecting (as in the below commands) and running a simple remote command (g.V(123).count()) I'm getting…
toto
  • 1,197
  • 2
  • 15
  • 26
7
votes
1 answer

What are the Pros and Cons when using remote janusgraph connection over embedded?

I am using embedded janusgraph in my java backend my code depends on janusgraph instanciated from graph = JanusGraphFactory.open(conf) AFAIK this connects to Cassandra and elastic search directly and run the janusgraph processor in my backend…
Ali Aboud
  • 329
  • 3
  • 11
7
votes
1 answer

Connecting gremlin CLI to a remote tinkerpop gremlin-server

Using gremlin-javascript, I'm connecting to a remote server using: const gremlin = require('gremlin') const Graph = gremlin.structure.Graph const DriverRemoteConnection = gremlin.driver.DriverRemoteConnection const graph = new Graph() const g =…
user479947
7
votes
1 answer

Why can't I connect to Gremlin-Server?

Abstract I'm trying to set up a Titan/Cassandra/Gremlin-Server stack in Docker (v1.13.0). The problem I'm facing is that applications trying to connect to Gremlin-Server on the default port 8182 are reporting errors (details below). First, here is…
Louis Thibault
  • 20,240
  • 25
  • 83
  • 152
7
votes
2 answers

How can I delete a Vertex in Gremlin Server Titan 1.0

I'm using Titan 1.0 Version and Gremlin Server with REST Api for creating and updating Vertex details. How can I delete the vertex using vertexId?
user6323650
7
votes
2 answers

How to Update the Value of Vertex in Gremlin Server ( Titan 1.0)

I'm having a vertex with following details: http://localhost:8182/?gremlin=g.V(4192) { "requestId": "6ce01f3b-f623-41f6-bb03-dd56014e0701", "status": { "message": "", "code": ​200, "attributes": { } }, "result": { "data": [ { "id":…
Sumit Chourasia
  • 2,394
  • 7
  • 30
  • 57
6
votes
2 answers

How to handle vertices with a large number of edges?

In our graph, there are a lot of vertices which have more than 100k of outgoing edges. I would like to know what are the approaches to handle all palettes of situation which come out of this. Let's say that we have a group_1 defined in our graph.…
Michał
  • 616
  • 1
  • 7
  • 22
6
votes
1 answer

Gremlin-Python Connecting to existing JanusGraph

I Have created a graph using gremlin console gremlin> ConfiguredGraphFactory.graphNames ==>MYGRAPH gremlin>…
Servesh Singh
  • 113
  • 1
  • 9
6
votes
1 answer

Not able to query using gremlinpython

I'm using gremlinpython to access the data in Janusgraph, but it is throwing an exception whereas the data is accessible from Gremlin shell. Here is the Python code which I'm running remotely: from gremlin_python import statics from…
Samarth
  • 627
  • 6
  • 13
6
votes
1 answer

JanusGraph : Please add a key named "ConfigurationManagementGraph" to the "graphs"

I get the this error in gremlin console cegprakash@cegprakash:~/workspace/janusgraph-0.2.1-hadoop2$ ./bin/gremlin.sh \,,,/ (o o) -----oOOo-(3)-oOOo----- plugin activated: janusgraph.imports plugin activated:…
cegprakash
  • 2,937
  • 33
  • 60
1
2 3
34 35