neo4j / graph-data-science

Source code for the Neo4j Graph Data Science library of graph algorithms.
https://neo4j.com/docs/graph-data-science/current/
Other
618 stars 161 forks source link

No log with gds.graph.project #328

Open Cobra5197 opened 1 week ago

Cobra5197 commented 1 week ago

Hi,

I am working on migrating GDS queries from the old way (gds.graph.project.cypher) to the new way (gds.graph.project) and I don't know why, I don't see anymore the progress of the projection in the debug.log file (but I can see the query in the query.log file). The query is working and the graph is well projected. We use Neo4j 4.4.37 and GDS 2.6.8.

GDS version: 4.4.37 Neo4j version: 2.6.8

Best regards, Cobra

soerenreichardt commented 1 week ago

Hello @Cobra5197, thanks for reporting this. I quickly checked and progress logging is in fact missing in the new gds.graph.project. I will create an internal card to add this feature. However due to the different way of executing the projection, in the new way we currently have no way of knowing how many nodes/relationships will be imported upfront. This means that there will not be any actual progress shown (like 42% etc.), but only that it is running. Cheers