skip to Main Content

Amazon web services – Gremlin Console – Connecting to Amazon Neptune with Sig4 signing

I need to connect to Amazon Neptune using Gremlim console. Tried all steps for setup and signing configuration but following error occurs when connecting to Neptune. Steps performed: Install JDK sudo amazon-linux-extras install java-openjdk11 Install Gremlin Console wget https://archive.apache.org/dist/tinkerpop/3.4.10/apache-tinkerpop-gremlin-console-3.4.10-bin.zip unzip…

VIEW QUESTION

Amazon web services – Optimize neptune query while using repeat & times

I have the following neptune query g.V().hasLabel('User') .has('user_id', 1004) .repeat(both('USES_UPI','USES_ACCOUNT','USES_HARDWARE_ID','USES_GAID','HAS_COOKIES').simplePath().dedup()) .times(3) .hasLabel('Gaid') .dedup() .count() and it's taking too much time. I tried profiling the query Original Traversal ================== [GraphStep(vertex,[]), HasStep([~label.eq(User), user_id.eq(159017810)]), RepeatStep([VertexStep(BOTH,[USES_UPI, USES_ACCOUNT, USES_HARDWARE_ID, USES_GAID, HAS_COOKIES],vertex), PathFilterStep(simple,null,null), DedupGlobalStep(null,null), RepeatEndStep],until(loops(3)),emit(false)), HasStep([~label.eq(Gaid)]),…

VIEW QUESTION

Gremlin.net.dll not found – Asp.net

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<GremlinClient>(s => { GremlinServer server = new GremlinServer(hostname: "host", port: 443, enableSsl: true, username: $"collection",…

VIEW QUESTION
Back To Top
Search