gaeduf opened a new issue, #1997: URL: https://github.com/apache/incubator-hugegraph/issues/1997
### Bug Type (问题类型) gremlin (结果不合预期) ### Before submit - [X] 我已经确认现有的 [Issues](https://github.com/hugegraph/hugegraph/issues) 与 [FAQ](https://hugegraph.github.io/hugegraph-doc/guides/faq.html) 中没有相同 / 重复问题 ### Environment (环境信息) - Server Version: v0.12.0 - Backend: RocksDB 单节点 - OS: 64 CPUs, 200 G RAM, Centos 7. - Data Size: (顶点A) 2.6亿 vertices,(顶点A-B 关系) 1.9亿 edges (顶点B)0.33亿vertices ### Expected & Actual behavior (期望与实际表现) 如图所示:  这是顶点B的查询语句和结果 是正常的, 但是下图通过顶点A查询,却没有结果。  https://user-images.githubusercontent.com/113410236/198877308-c5490861-4660-4550-9fe8-f1b4062a3e2a.mp4 这是实操录像。 ### Vertex/Edge example (问题点 / 边数据举例) ```javascript 这是查询语句,初步估计与数据无关 g.V('300007_9e47db0076d352672483d667751b88fa').bothE().otherV().path() g.V('200209_7cee085c31b5b2fcc06427c5d3725ed6').bothE().otherV().path() ``` ### Schema [VertexLabel, EdgeLabel, IndexLabel] (元数据结构) ```javascript { "vertices": [{ "label": "公司", "input": { "type": "file", "path": "/sdb1/data/iflytek/hugegraph/hugegraph-loader-0.12.0/example/file/njaq/tb_mid_company_all_huge_day.txt", "format": "TEXT", "delimiter":"|++|", "list_format":{ "start_symbol":"", "elem_delimiter":"|", "end_symbol":"" }, "header": ["id", "company", "day_id"], "charset": "UTF-8", "skipped_line": { "regex": "(^#|^//).*" } }, "field_mapping":{ "id": "公司_id", "company": "公司_公司", "day_id": "公司_日期" }, "id": "id", "null_values": ["NULL", "null", ""] }] } { "vertices": [{ "label": "职业经历", "input": { "type": "file", "path": "/sdb1/data/iflytek/hugegraph/hugegraph-loader-0.12.0/example/file/njaq/tb_mid_m_person_org_huge_day.txt", "format": "TEXT", "delimiter":"|++|", "list_format":{ "start_symbol":"", "elem_delimiter":"|", "end_symbol":"" }, "header": ["entity_id","company","occupation_type","department","sub_department","title","begintime","endtime","name","dob","yob","sex","workphone","mobilephone","homephone","email","email_aft","address","username","password","graduation_school","abstract_flag","other","source"], "charset": "UTF-8", "skipped_line": { "regex": "(^#|^//).*" } }, "field_mapping":{ "entity_id": "职业经历_id", "company": "职业经历_公司", "occupation_type": "职业经历_职业类型", "department": "职业经历_部门", "sub_department": "职业经历_子部门", "title": "职业经历_职位", "begintime": "职业经历_入职时间", "endtime": "职业经历_离职时间", "name": "职业经历_姓名", "dob": "职业经历_生日", "sex": "职业经历_性别", "workphone": "职业经历_工作电话", "mobilephone": "职业经历_移动电话", "homephone": "职业经历_家庭电话", "email": "职业经历_邮箱", "email_aft": "职业经历_邮箱后缀", "address": "职业经历_地址", "username": "职业经历_用户名", "password": "职业经历_明文密码", "graduation_school": "职业经历_毕业学校", "source": "职业经历_数据来源" }, "id": "entity_id", "ignored": ["yob","abstract_flag","other"] }] } { "edges": [ { "label": "person_org_company_relation", "source": ["entity_id"], "target": ["company_id"], "input": { "type": "file", "path": "/sdb1/data/iflytek/hugegraph/hugegraph-loader-0.12.0/example/file/njaq/tb_mid_rel_entity_company_huge_day.txt", "format": "TEXT", "delimiter":"|++|", "list_format":{ "start_symbol":"", "elem_delimiter":"|", "end_symbol":"" }, "header": ["company_id","entity_id","company","occupation_type","department","sub_department","title","begintime","endtime","source"], "charset": "UTF-8", "skipped_line": { "regex": "(^#|^//).*" }, "date_format": "yyyyMMdd" }, "field_mapping": { "entity_id": "职业经历_id", "company_id": "公司_id", "company": "职业经历_公司", "occupation_type": "职业经历_职业类型", "department": "职业经历_部门", "sub_department": "职业经历_子部门", "title": "职业经历_职位", "begintime": "职业经历_入职时间", "endtime": "职业经历_离职时间", "source": "relation_source" } }] } ``` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
