8000 Bug fix/improve visualizer performance by mchacki · Pull Request #21819 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Bug fix/improve visualizer performance #21819

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

Merged
merged 22 commits into from
Jul 8, 2025
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
5026212
Added a test stuie for the graph visualizer backend
mchacki Jun 23, 2025
0e7a6ce
Refactored graphs-v2
mchacki Jun 23, 2025
28a533f
Added a performance test, and started refactoring the backend code fo…
mchacki Jun 23, 2025
b0b924d
Further optimization by using 'KEEP' on required attributes only
mchacki Jun 23, 2025
f331f1a
Applied more complex optimization to make use of projections
mchacki Jun 24, 2025
d06b6d7
Allowed for edge Projections
mchacki Jun 24, 2025
c77b6c8
Removed debug output
mchacki Jun 24, 2025
6d79542
Added CHANGELOG entry
mchacki Jun 24, 2025
dd78cd4
Fixed behaviour for multi-labels
mchacki Jun 24, 2025
44cc13d
disable test, its not working for coverage on all of its parts (#21805)
dothebart Jun 23, 2025
0ab78de
Add inner product metric to vector index (#21814)
mchacki Jun 25, 2025
3279c21
Stop using a streaming transaction after an operation timeouts (#21796)
goedderz Jun 24, 2025
3df4b42
Update README.md for v3.12.5+ (#21804)
Simran-B Jun 24, 2025
0f46ad5
Docs: Reword arangimport startup option description for collection na…
Simran-B Jun 24, 2025
29d1f6b
properly handle connection and make sure we don't forget it (#21822)
dothebart Jun 24, 2025
a67be6c
Fix load memory order (#21818)
jvolmer Jun 25, 2025
5021b04
FE-611 | Add Vector Index Feature (#21793)
bluepal-nadeem-abdun Jun 25, 2025
ed243d0
Added CHANGELOG entry
mchacki Jun 24, 2025
70777db
Merge remote-tracking branch 'origin' into bug-fix/improve-visualizer…
mchacki Jun 25, 2025
6b2e822
Added tests and bugfix for attribute not found behaviour
mchacki Jul 2, 2025
b2213df
Merge remote-tracking branch 'origin' into bug-fix/improve-visualizer…
mchacki Jul 8, 2025
072e309
Merge remote-tracking branch 'origin' into bug-fix/improve-visualizer…
mchacki Jul 8, 2025
8000
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
Added CHANGELOG entry
  • Loading branch information
mchacki committed Jun 24, 2025
commit 6d7954245cc46206438b0f2cc252ce90f8cdbb28
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
devel
-----

* Improved the endpoint used by the Graph visulaizer tool to run
a better performing query. This should help on larger graphs
having more, not displayed data.

* Fix BTS-2151: Fix cosine similarity score in vector index returns score
bigger then one due to not being normalized. It is recommended to drop
all vector indexes that use cosine metric and create them again.
Expand Down
0