8000 Feature/abort traversals by hkernbach · Pull Request #21765 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Feature/abort traversals #21765

8000
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 34 commits into
base: devel
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
532d00b
arangodb release 3.12.4
KVS85 Jan 23, 2025
af6afa9
first draft, added cancel of traversal in one sided enumerator, and t…
hkernbach Apr 28, 2025
4cfc171
added bidirectionalCircle as new graph in graph test suite
hkernbach May 6, 2025
db7f093
added hugeCompleteGraph
hkernbach May 6, 2025
a03dc03
added query cancel observer to twosided enumerator as well, so kpaths…
hkernbach May 13, 2025
a250d68
merge main into feature branch
hkernbach May 14, 2025
7692de9
only print debug creation info if set manually in constructor
hkernbach May 14, 2025
7ef978f
revert changelog merge issue
hkernbach May 14, 2025
67f8176
added additional check for cancelation of query in the twosidedenumer…
hkernbach 8000 May 14, 2025
8e05284
Merge remote-tracking branch 'origin/devel' into feature/abort-traver…
hkernbach May 14, 2025
2de1512
eslint
hkernbach May 14, 2025
aa29f4e
eslint
hkernbach May 16, 2025
6f21c2f
clang format
hkernbach May 16, 2025
af166b8
clang format
hkernbach May 16, 2025
f35a566
Merge remote-tracking branch 'origin/devel' into feature/abort-traver…
hkernbach May 16, 2025
e22c7c3
batchwise verted and edge insertion during fillGraph (integration tests)
hkernbach May 19, 2025
48c95dc
Merge remote-tracking branch 'origin/devel' into feature/abort-traver…
hkernbach May 19, 2025
033326a
try to help garbage collection v8
hkernbach May 19, 2025
2b79028
slightly increased timeout to 10s in clsuter, 5s in single server
hkernbach May 19, 2025
7a04512
added early exit to weighted two sided enumerator, yens still missing
hkernbach May 19, 2025
cc7991d
debug flag on
hkernbach May 19, 2025
5c4cb55
no need to call clear manually. will be called in destructor automat…
hkernbach May 20, 2025
7ff7f4f
format
hkernbach May 20, 2025
75804b8
improved wait & kill mechanism - should now be way more stable
hkernbach Jul 10, 2025
0c94492
Merge remote-tracking branch 'origin/devel' into feature/abort-traver…
hkernbach Jul 10, 2025
83aae9d
adaptive kill query
hkernbach Jul 10, 2025
e7a1026
increase debug logging. Some are optional, some are mandatory. If our…
hkernbach Jul 10, 2025
31b64e0
eslint
hkernbach Jul 10, 2025
c36118d
more test output
hkernbach Jul 11, 2025
a192771
Change test suite params
jbajic Jul 11, 2025
3ebbdee
Merge remote-tracking branch 'origin/devel' into feature/abort-traver…
hkernbach Jul 14, 2025
030d3d4
refactored generic graph tests based on Jures suggestion
hkernbach Jul 14, 2025
45d34de
incr. completegraph to consist out of 1k nodes to make computation mo…
hkernbach Jul 14, 2025
4ec116f
Merge remote-tracking branch 'origin/devel' into feature/abort-traver…
hkernbach Jul 23, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
debug flag on
  • Loading branch information
hkernbach committed May 19, 2025
commit cc7991d6d858705f47d338ca2369e3457bd70b18
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ function testBidirectionalCircleDfsLongRunning(testGraph) {
RETURN v.key
`;

localHelper.testKillLongRunningQuery(queryString);
localHelper.testKillLongRunningQuery(queryString, true);
}

function testBidirectionalCircleBfsLongRunning(testGraph) {
Expand All @@ -211,7 +211,7 @@ function testBidirectionalCircleBfsLongRunning(testGraph) {
RETURN v.key
`;

localHelper.testKillLongRunningQuery(queryString);
localHelper.testKillLongRunningQuery(queryString, true);
}

function testBidirectionalCircleWeightedPathLongRunning(testGraph) {
Expand All @@ -224,7 +224,7 @@ function testBidirectionalCircleWeightedPathLongRunning(testGraph) {
RETURN v.key
`;

localHelper.testKillLongRunningQuery(queryString);
localHelper.testKillLongRunningQuery(queryString, true);
}

/*
Expand All @@ -242,7 +242,7 @@ function testHugeCompleteGraphKPathsLongRunning(testGraph) {
RETURN path
`;

localHelper.testKillLongRunningQuery(queryString);
localHelper.testKillLongRunningQuery(queryString, true);
}

/*
Expand All @@ -261,8 +261,7 @@ function testHugeGridGraphShortestPathLongRunning(testGraph) {
RETURN v.key
`;

const debug = false;
localHelper.testKillLongRunningQuery(queryString, debug, debug);
localHelper.testKillLongRunningQuery(queryString, true);
}

function testHugeGridGraphAllShortestPathsLongRunning(testGraph) {
Expand All @@ -275,7 +274,7 @@ function testHugeGridGraphAllShortestPathsLongRunning(testGraph) {
RETURN path
`;

localHelper.testKillLongRunningQuery(queryString);
localHelper.testKillLongRunningQuery(queryString, true);
}

// DFS, BFS, Weighted Path
Expand Down
0