Closed Dtenwolde closed 2 months ago
Seems not to be a concern in release mode, debug mode is very slow (somewhat to be expected).
Likely due to a BLOCKWISE_NL_JOIN
is6-analyze.txt
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Query IS 6 from the LDBC SNB Interactive workload does not terminate due to the replyOf edge. This edge is supposed to find the original post of a comment, which can be 0 or more steps from any message.
The
Post
node in this case is inherited from theMessage
node. It could be that this table is too large for the number of shortest paths to calculate. The SQL:1999 way would be to traverse the ParentMessageId until this value isNULL
, in which case you have found the post. We do path-finding to all otherMessage
nodes, only one of which is notNULL
(the parentPost
).