Duplicate vertex issue with Uniqueness constraints | Janusgraph CQL
Pawan Shriwas
Hi Everyone, I am facing a duplicate vertex creation issue even though the unique index is present in that property and when i retrive the data with the same index it returns only 1 record. Please see below information for the same. Storage Backend - Cassandra CQL Janusgraph version - 0.5.2 index - Composite Uniqueness - True Consistency - yes Index Status - ENABLED Below are the code snippet - Index Status : Thanks, Pawan |
|
hadoopmarc@...
Hi Pawan,
Your code mirrors the example at https://docs.janusgraph.org/advanced-topics/eventual-consistency/#data-consistency for the greatest part. Are you sure the changes on graphMgmt get committed? Also, how do you know about "duplicate vertex creation" when "it returns only 1 record"? Best wishes, Marc PS. Most of the software community reserves names starting with a verb to functions and class methods. Violating this convention (e.g. PropertyKey makePropertyKey) makes your code almost unreadable to others. |
|
Pawan Shriwas
Hi Marc; Yes, We are committing the transaction after each operation. how do you know about "duplicate vertex creation" when "it returns only 1 record"? Vertex is being ingested with the same data and graph generate different id for the same. When we query the graph with these different ids, list object return having same name multiple time but when we retrieve the data with name parameter(having unique index with lock consistency) graph returns only one record. Hope this helps. Thanks, Pawan On Sun, Nov 21, 2021 at 4:01 PM <hadoopmarc@...> wrote: Hi Pawan, --
Thanks & Regard PAWAN SHRIWAS |
|
Pawan Shriwas
Hi Marc, Checking duplicate data with uniqueness constraints on name_cons field - gremlin> g.V().has('gId',P.within('da209078-4a2f-4db2-b489-27da028df983','ba81f5d3-a29b-4a2c-88c3-c265ce3f68a5','9804b32d-31d9-409a-a441-a38fdbf998f7')).valueMap() ==>[gId:[da209078-4a2f-4db2-b489-27da028df983],entityGId:[9e51c70d-f148-401f-8eea-53b767d9bbb6],name_cons:[CGNAT_NS2]] ==>[gId:[ba81f5d3-a29b-4a2c-88c3-c265ce3f68a5],entityGId:[7e763ebc-b2e0-4d04-baaa-4463d04ca436],name_cons:[CGNAT_NS2]] ==>[gId:[9804b32d-31d9-409a-a441-a38fdbf998f7],entityGId:[23fd7efd-3688-4b58-aab6-173d25a8dd63],name_cons:[CGNAT_NS2]] gremlin> Reading of data with unique index property with Consistency lock and get only one record - gremlin> g.V().has('name_cons','CGNAT_NS2').valueMap() ==>[gId:[290cc878-19e1-44f6-9f6c-62b7471e21bc],entityGId:[0b59889d-e725-46e5-9f42-d96daaeaa21d],name_cons:[CGNAT_NS2]] gremlin> gremlin> Hope this clarifies!!!! On Mon, Nov 22, 2021 at 12:39 PM Pawan Shriwas via lists.lfaidata.foundation <shriwas.pawan=gmail.com@...> wrote:
--
Thanks & Regard PAWAN SHRIWAS |
|