vvvice opened a new issue, #2835: URL: https://github.com/apache/incubator-hugegraph/issues/2835
### Problem Type (问题类型) None ### Before submit - [x] 我已经确认现有的 [Issues](https://github.com/apache/hugegraph/issues) 与 [FAQ](https://hugegraph.apache.org/docs/guides/faq/) 中没有相同 / 重复问题 (I have confirmed and searched that there are no similar problems in the historical issue and documents) ### Environment (环境信息) - Server Version: 1.5.0 (Apache Release Version) - Backend: cassandra 3 nodes, HDD - OS:8 CPUs, 16G RAM CentOS 7.x - Data Size: 100W vertices,100W edges ### Your Question (问题描述) 在做模拟高并发插入点边的时候,利用nginx做负载均衡三个hugegraph-server,插入边时始终有两条边报错,其他的操作不报错 Undefined link of edge label 'trueIdentity_2': 'accessBehavior' -> 'technicalSystemIdentity' Undefined link of edge label 'trueIdentity_1': 'accessBehavior' -> 'userIdentity' 但是我并没有这样定义和插入这两条边 ### Vertex/Edge example (问题点 / 边数据举例) ```javascript Vertex vertexAccessBehavior = graph.addVertex(T.LABEL, "accessBehavior", "behaviorTrackingID", behaviorTrackingID + taskId, "time", dateStr); Vertex vertexTechnicalSystemIdentity = graph.addVertex(T.LABEL, "technicalSystemIdentity", "verificationResult", verificationResult + taskId, "type", type + taskId, "codeAssignmentIdentification", codeAssignmentIdentification + taskId,"clientID",clientID+taskId); Vertex vertexUserIdentity = graph.addVertex(T.LABEL, "userIdentity", "verificationResult", verificationResult + taskId, "userName", userName + taskId); graph.addEdge(vertexAccessBehavior,"trueIdentity_2",vertexUserIdentity); graph.addEdge(vertexAccessBehavior,"trueIdentity_1",vertexTechnicalSystemIdentity); 这是插入点边的java代码 ``` ### Schema [VertexLabel, EdgeLabel, IndexLabel] (元数据结构) ```javascript schema.vertexLabel("accessBehavior") .properties("behaviorTrackingID", "time") .primaryKeys("behaviorTrackingID") .ifNotExist() .create(); schema.vertexLabel("technicalSystemIdentity") .properties("verificationResult", "type", "codeAssignmentIdentification", "clientID") .ifNotExist() .create(); schema.vertexLabel("userIdentity") .properties("verificationResult", "userName") .ifNotExist() .create(); schema.edgeLabel("trueIdentity_1") .sourceLabel("accessBehavior") .targetLabel("technicalSystemIdentity") .ifNotExist() .create(); schema.edgeLabel("trueIdentity_2") .sourceLabel("accessBehavior") .targetLabel("userIdentity") .ifNotExist() .create(); 这是点边的定义 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@hugegraph.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org