Activity log for bug #1363947

Date Who What changed Old value New value Message
2014-09-01 10:46:15 Patrick Stevens bug added bug
2014-09-02 15:06:37 Patrick Stevens branch linked lp:~patrickas/ensoft-sextant/perf
2014-09-03 14:22:20 Patrick Stevens description We currently batch up the Neo4j requests into two parts as follows: create a program node, then create all nodes and relationships in a single pass. This is marginally faster than the original without batching (which took a long time because the Neo4j REST client made one new request for each node and relationship), but has a lot of overhead involved in adding a connection, since we no longer know in Sextant the ID of each database-node corresponding to each function. This means each relationship-adding query must start with a SELECT clause, to find the appropriate start and end nodes. This might be fixed by having three passes: create a program node, create all function nodes in a batch (and store the IDs in Sextant), and finally create the relationships (which is faster because we can get rid of the SELECT clauses, because Sextant now knows the node ID of each function directly). Vim takes nearly a minute to upload on my testing machine, after implementing the blueprint "Procedure to upload a program to Sextant".
2014-11-21 16:16:01 Ben Hutchings ensoft-sextant: assignee Ben Hutchings (ben-hutchings)
2014-11-21 16:16:34 Ben Hutchings branch linked lp:~ben-hutchings/ensoft-sextant/csv-upload
2014-11-21 16:16:39 Ben Hutchings ensoft-sextant: status New Fix Committed
2014-11-21 16:16:59 Ben Hutchings ensoft-sextant: status Fix Committed Won't Fix
2014-11-21 16:17:10 Ben Hutchings ensoft-sextant: status Won't Fix Fix Committed
2014-12-11 14:34:01 ChrisD ensoft-sextant: importance Undecided High