Questions tagged [gremlinnet]
37 questions
3
votes
2 answers
Gremlin.net.dll not found
when moving from Gremlin.net 3.6.1, to 3.6.2 I get a FileNotFound Exception pointing to "rootOfProject"/Gremlin.net.dll
This is happening in my startup.cs when instantiating the GremlinClient
services.AddSingleton(s =>
{
…

Andreas Herigstad
- 41
- 2
3
votes
2 answers
Connecting to AWS Neptune with Gremlin.net from a local windows machine
I'm following Amazon's documentation at access-graph-gremlin-dotnet
and trying to run it on a local windows machine that is connected to Neptune with an SSH tunnel through an EC2 instance.
I've tested the SSH tunnel with gremlin console and it works…

Avner Levy
- 6,601
- 9
- 53
- 92
2
votes
1 answer
How to filter related objects using Gremlin Cosmos DB?
I want to get a ResultSet of Objects that consist of a user and a list of all users that are not yet related to this user.
The result should look like this:
[[user: [USEROBJECT], usersThatAreNotFriends: [[USEROBJECT]...]]...]
I am using the Cosmos…

Manuel Hummler
- 45
- 5
2
votes
1 answer
Extract subgraph from a graph using Gremlin.net byte code gives error deserializer for \"tinker:graph\" not found
I am trying to get subgraph from a graph using Gremlin.net bytecode syntax and getting error when extracting/Cap from a subgraph. I am able to get the results if I query directly using the query string however not with the fluent API byte code…

Jitendra Mishra
- 41
- 7
1
vote
1 answer
Encountered an error when making Gremlin.Net communicate with JanusGraph in the JanusGraph official website.net introductory tutorial
I tried to operate JanusGraph with .net using JanusGraph official tutorial, but got an error, the following is my code and .net\JanusGraph Error displayed by the server
I use vscode, the command to create a project is dotnet new console -o…

isnf-uZ4
- 53
- 6
1
vote
0 answers
BulkExecution in Azure CosmosDB for ASP.Net MVC 4.7.2 version
Description:
What's my goal : want to do bulk execution for Vertices and edges to create graph in azure cosmosDB with c# code as below
BulkOperationResponse bulkOperationResponse1 =await graphBulkExecutor.BulkImportAsync( gremlinElements:…

place holder
- 13
- 1
1
vote
1 answer
Need a query to retrieve complete graph
I am trying to retrieve all the node and properties details in parent-child hierarchy.
Nested within each other.
Since I am new with gremlin, graphDB I am having really tough time to get it done.
Please suggest a solution and if you could walk me…

Rahul Anand
- 33
- 3
1
vote
3 answers
Gremlin.Net.Driver.Exceptions.ConnectionClosedException
Created object for gremlinServer , connectionPoolSettings
var gremlinClient = new GremlinClient(gremlinServer,connectionPoolSettings:connectionPoolSettings);
using (gremlinClient)
{
var v1 = graph.AddV("person").Property("name",…

place holder
- 13
- 1
1
vote
1 answer
Why CommitAsync does not complete in Gremlin .NET Transactions
I am having trouble with gremlin .NET
Gremlin server: 3.6.0
Gremlin .NET: 3.6.0
Code:
var gremlinServer = new GremlinServer("localhost", 8182);
ConnectionPoolSettings connectionPoolSettings = new ConnectionPoolSettings()
{
…

Moin Faisal
- 98
- 3
1
vote
2 answers
Why is my gremlin.net gremlin client not working with azure cosmos graph db
I've set up a serverless azure cosmos graph db account and now I'm trying to connect to it using the following code:
.AddSingleton(s =>
{
var connectionPool = new ConnectionPoolSettings
{
MaxInProcessPerConnection =…

user3713080
- 399
- 4
- 17
1
vote
1 answer
Does partition strategy helps on Gremlin traversal performance
I tried to play around with the partition strategy as what was mentioned here https://tinkerpop.apache.org/docs/current/reference/ .Initially, I expect that when I define a specific partition key for a zone and write some vertices on it, it would…

santi
- 651
- 1
- 6
- 6
1
vote
2 answers
Gremlin.NET deserialize number property
I have a query that creates a vertex and an edge "Created". The edge has a property "on" which is unix datetime long. When I execute a query with the following segment in the Azure Cosmos DB terminal, it works as expected - an object is returned…

Jonathan Eckman
- 2,071
- 3
- 23
- 49
1
vote
0 answers
Cosmos Graph DB: How to resolve ConnectionPoolBusyException
I am using .Net Gremlin SDK(Gremlin.Net 3.4.8) to query Cosmos DB. Very often I am getting error ConnectionPoolBusyException: All 1 connections have reached their MaxInProcessPerConnection limit of 1. Consider increasing either the PoolSize or the…

user2167322
- 139
- 1
- 1
- 8
1
vote
1 answer
Update a property in all Vertices in Gremlin
I want to update the value of a property in all vertices of one…

Venkata Dorisala
- 4,783
- 7
- 49
- 90
1
vote
1 answer
Map Gremlin result containing string arrays to C# class containing simple string properties
I am facing a problem while mapping a Gremlin result set to a class in C#. I am trying to get vertices along with properties. Here is the code:
public IList All() where T : class, new()
{
Type type = typeof(T);
string query =…

azhar rahi
- 331
- 4
- 16