Skip to content

Conversation

@Josipmrden
Copy link
Contributor

@Josipmrden Josipmrden commented Oct 3, 2025

Description

This example fails with SIGSEGV on parallelization, not sure why

storage mode IN_MEMORY_ANALYTICAL;
CREATE INDEX ON :Node;
CREATE INDEX ON :Node(id);
unwind range(1, 100000) as x create (:Node {id: x, embedding: [i in range(1, 1000) | i * 0.001]});

create snapshot;

match (n)
with collect(n) as nds
with project(nds, []) as graph
call knn.get(graph, {nodeProperties: "embedding", topK: 5, randomSeed: 42, concurrency: 10})
yield node, neighbour, similarity
return count(*);

Pull request type

  • Bugfix
  • Algorithm/Module
  • Feature
  • Code style update (formatting, renaming)
  • Refactoring (no functional changes, no api changes)
  • Build related changes
  • Documentation content changes
  • Other (please describe):

Related issues

Delete if this PR doesn't resolve any issues. Link the issue if it does.

######################################

Reviewer checklist (the reviewer checks this part)

Module/Algorithm

  • Core algorithm/module implementation
  • Query module implementation
  • Tests provided (unit / e2e)
  • Code documentation
  • README short description

Documentation checklist

  • Add the documentation label tag
  • Add the bug / feature label tag
  • Add the milestone for which this feature is intended
    • If not known, set for a later milestone
  • Write a release note, including added/changed clauses
    • [Release note text]
  • Link the documentation PR here
    • [Documentation PR link]

@Josipmrden Josipmrden marked this pull request as draft October 3, 2025 11:33
@Josipmrden Josipmrden self-assigned this Oct 3, 2025
@sonarqubecloud
Copy link

sonarqubecloud bot commented Oct 3, 2025

Quality Gate Failed Quality Gate failed

Failed conditions
4 Security Hotspots

See analysis details on SonarQube Cloud

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants