-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gremlin driver throwing GraphMalformedException after updating gremlin driver to 3.4.0 #26201
Comments
GraphSON v3 is not supported in Azure Gremlin Api, we had that issue as well and we changed gremlin client serializer to GRAPHSON_V2D0
hope this helps. |
@backwind1233 could you please help route this issue from @boltmillee? |
@omerkisoss Thanks for the help. This seems to be working fine with custom queries. However, I have a few GremlinRepositories where the default findById() and findAll() methods are giving this issue. Is there any solution for that also? |
@omerkisoss I tried with above code with gremlin driver version 3.4.0 but I am getting the same timeout exception I was getting with version 3.2.4: java.lang.RuntimeException: java.util.concurrent.TimeoutException: Timed out while waiting for an available host - check the client configuration and connectivity to the server if this message persists |
@msingal003
hope this helps, let me know if you still having issues. |
@boltmillee @msingal003 @omerkisoss |
Please use .NET Gremlin SDK v 3.4.13, refer the compatible version list here https://learn.microsoft.com/en-us/azure/cosmos-db/gremlin/support#compatible-client-libraries |
#please-close |
This is in reference to microsoft/spring-data-gremlin#196 . I followed the steps and updated the gremlin driver but I am getting a different issue because of that. Exception message attached
Caused by: org.apache.tinkerpop.gremlin.driver.exception.ResponseException:
ActivityId : ac404cc5-b895-4253-bab8-a0e4710e9eec
ExceptionType : GraphMalformedException
ExceptionMessage :
Gremlin Malformed Request: GraphSON v3 IO is not supported.
GremlinRequestId : eadcb143-ad25-44ae-adee-522d19eef257
Context : global
GraphInterOpStatusCode : MalformedRequest
HResult : 0x80131500
OS: MacOS
IDE: IntelliJ
Library/Libraries: PFB
Query - g.V().hasLabel("Trade").has("name","FM - PLUMBING").outE().inV().hasLabel("CheckList").has("division",within('WM')).as("checklist").and(inE().outV().hasLabel("Category").has("name","INTERNAL TECH"),inE().outV().hasLabel("Location").has("id","2005850749")).select("checklist")
The text was updated successfully, but these errors were encountered: