-
Notifications
You must be signed in to change notification settings - Fork 21
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
Unexpected results when updating property #99
Comments
I expect this is due to the lack of meta/multi-card props in Neptune and/or the version of Goblin you are using. I am pretty sure this behaves as expected with TinkerGraph and JanusGraph with the newest Goblin. I haven't had much time to work on these libraries lately and I don't have access to Neptune. I would love to get Goblin integration going for this provider but I may need some community support here... |
Sure. I will see if I can make any progress on it, and report back if I do. Was just confirming the desired behavior here before I started to mess with things. The goal of that function is to |
This does not seem Neptune-specific as I've started getting this incorrect behavior after a DSE upgrade as well. I'm guessing it involves a bug in TinkerPop though, because the gremlin bytecode that is created by goblin/gremlinpython looks good, e.g. when updating properties of an existing vertex:
This should let the The result however is "concat" behavior, rather than overwrite:
The DSE update I did leads me to believe that the @mbbfyb which version of TinkerPop is used by the Neptune version you are using for these tests? |
I will look into this with more detail when I get a spare moment. |
I am receiving some unexpected results updating a property on a vertex, and wanted to make sure it was not user error.
Here is the output of my python shell
Notice that instead of overwriting the element, it is appended like an array. I see this behavior using both the regular
Property
class andVertexProperty
class, in which I would expect the behavior to just overwrite the field value. In the gremlin console the particular vertex ends up having 2 fields namedcar
.Is this to be expected? I am using Amazon Neptune with the following packages
My suspicion is that somewhere within this function there is something going wrong when doing either the drop iterator or the add iterator that is causing the issue.
The text was updated successfully, but these errors were encountered: