mirror of
https://github.com/OpenSPG/openspg.git
synced 2025-06-27 03:20:10 +00:00
add rdg test log
This commit is contained in:
parent
365dfd043f
commit
36464f6c48
@ -14,7 +14,6 @@
|
||||
package com.antgroup.openspg.reasoner.runner.local.rdg;
|
||||
|
||||
import com.alibaba.fastjson.JSON;
|
||||
|
||||
import com.antgroup.openspg.common.util.StringUtils;
|
||||
import com.antgroup.openspg.reasoner.common.Utils;
|
||||
import com.antgroup.openspg.reasoner.common.constants.Constants;
|
||||
|
@ -30,7 +30,6 @@ import com.antgroup.openspg.reasoner.lube.common.pattern.PatternElement;
|
||||
import com.antgroup.openspg.reasoner.lube.common.rule.Rule;
|
||||
import com.antgroup.openspg.reasoner.udf.rule.RuleRunner;
|
||||
import com.antgroup.openspg.reasoner.utils.RunnerUtil;
|
||||
import com.antgroup.openspg.reasoner.warehouse.utils.DebugVertexIdSet;
|
||||
import com.google.common.collect.Sets;
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
@ -92,6 +91,7 @@ public class PatternMatcher implements Serializable {
|
||||
}
|
||||
IVertex<IVertexId, IProperty> vertex = graphState.getVertex(id, endVersion, vertexRule);
|
||||
if (null == vertex) {
|
||||
log.warn("PatternMatcher patternMatch not found in graph state id=" + id.toString());
|
||||
return null;
|
||||
}
|
||||
|
||||
@ -101,6 +101,13 @@ public class PatternMatcher implements Serializable {
|
||||
// check root types
|
||||
PatternElement patternElement = pattern.root();
|
||||
if (!patternElement.typeNames().contains(RunnerUtil.getVertexType(vertex))) {
|
||||
log.warn(
|
||||
"PatternMatcher patternMatch typeNames not contains id="
|
||||
+ id.toString()
|
||||
+ " type: "
|
||||
+ RunnerUtil.getVertexType(vertex)
|
||||
+ " types:"
|
||||
+ patternElement.typeNames());
|
||||
return null;
|
||||
}
|
||||
|
||||
@ -108,13 +115,13 @@ public class PatternMatcher implements Serializable {
|
||||
Map<String, Object> vertexContext = RunnerUtil.vertexContext(vertex, pattern.root().alias());
|
||||
if (!rootVertexRuleList.isEmpty()
|
||||
&& !RuleRunner.getInstance().check(vertexContext, rootVertexRuleList, this.taskId)) {
|
||||
if (DebugVertexIdSet.DEBUG_VERTEX_ID_SET.contains(vertex.getId())) {
|
||||
log.info(
|
||||
"PatternMatch check vertex rule false, vertexContext="
|
||||
+ JSON.toJSONString(vertexContext)
|
||||
+ "rules = "
|
||||
+ JSON.toJSONString(rootVertexRuleList));
|
||||
}
|
||||
// if (DebugVertexIdSet.DEBUG_VERTEX_ID_SET.contains(vertex.getId())) {
|
||||
log.info(
|
||||
"PatternMatch check vertex rule false, vertexContext="
|
||||
+ JSON.toJSONString(vertexContext)
|
||||
+ "rules = "
|
||||
+ JSON.toJSONString(rootVertexRuleList));
|
||||
// }
|
||||
return null;
|
||||
}
|
||||
|
||||
@ -144,6 +151,7 @@ public class PatternMatcher implements Serializable {
|
||||
}
|
||||
}
|
||||
}
|
||||
log.info("PatternMatch before directionArrayListMap:" + JSON.toJSONString(edgeTypeDirectionMap) + " patternConnections:" + patternConnections);
|
||||
|
||||
// query edges from graph state
|
||||
for (String edgeType : edgeTypeDirectionMap.keySet()) {
|
||||
@ -163,6 +171,9 @@ public class PatternMatcher implements Serializable {
|
||||
}
|
||||
}
|
||||
|
||||
log.info("PatternMatch after directionArrayListMap:" + JSON.toJSONString(edgeTypeDirectionMap));
|
||||
|
||||
|
||||
// do edge match
|
||||
for (Connection patternConnection : patternConnections) {
|
||||
String edgeAlias = patternConnection.alias();
|
||||
@ -209,21 +220,21 @@ public class PatternMatcher implements Serializable {
|
||||
vertexContext, willMatchEdgeList, patternConnection, pattern, edgeRuleMap, limit);
|
||||
if (CollectionUtils.isEmpty(validEdges)) {
|
||||
// one edge pattern connection no match
|
||||
if (DebugVertexIdSet.DEBUG_VERTEX_ID_SET.contains(vertex.getId())) {
|
||||
log.info(
|
||||
"PatternMatch edge not match, vertexContext="
|
||||
+ JSON.toJSONString(vertexContext)
|
||||
+ ", willMatchEdgeList="
|
||||
+ JSON.toJSONString(willMatchEdgeList)
|
||||
+ ", patternConnection="
|
||||
+ patternConnections
|
||||
+ ", pattern="
|
||||
+ pattern
|
||||
+ ", edgeRuleMap="
|
||||
+ JSON.toJSONString(edgeRuleMap)
|
||||
+ ", limit="
|
||||
+ limit);
|
||||
}
|
||||
// if (DebugVertexIdSet.DEBUG_VERTEX_ID_SET.contains(vertex.getId())) {
|
||||
log.info(
|
||||
"PatternMatch edge not match, vertexContext="
|
||||
+ JSON.toJSONString(vertexContext)
|
||||
+ ", willMatchEdgeList="
|
||||
+ JSON.toJSONString(willMatchEdgeList)
|
||||
+ ", patternConnection="
|
||||
+ patternConnections
|
||||
+ ", pattern="
|
||||
+ pattern
|
||||
+ ", edgeRuleMap="
|
||||
+ JSON.toJSONString(edgeRuleMap)
|
||||
+ ", limit="
|
||||
+ limit);
|
||||
// }
|
||||
return null;
|
||||
}
|
||||
adjEdges.put(edgeAlias, validEdges);
|
||||
|
@ -101,7 +101,7 @@ public class ExtractRelationImpl implements Serializable {
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (!this.propertyRuleMap.containsKey(Constants.EDGE_TO_ID_KEY)) {
|
||||
if (!this.propertyRuleMap.containsKey(Constants.EDGE_TO_ID_KEY) && edgeAlias != null) {
|
||||
this.propertyRuleMap.put(
|
||||
Constants.EDGE_TO_ID_KEY,
|
||||
Lists.newArrayList(
|
||||
|
Loading…
x
Reference in New Issue
Block a user