Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
10-31-2019 02:01 AM
Hi. I am developing an ontology in Neo4j Desktop. I have a few quetions:
Thank you!
10-31-2019 04:28 AM
Though you do not indicate with what version of Neo4j this has been experienced on
:sysinfo
and 'Logical Log:' size in 'Store Sizes' represents the size of the logical log currently being written to. So if you have set up your transaction log retention/rotation https://neo4j.com/docs/operations-manual/3.5/configuration/transaction-logs/ to be rotate at 250mb and keep 10 transaction logs, then the 'Logical log:' size will report a number less than 250mb, even though you may have 9 other 250mb transaction logs.
the doubling in size is as a result of how deletes and reuse works. For example if you add 1m nodes this will consume data in data/databases/graph.db/neostore.nodestore.db. If you then delete those 1m nodes we update those 1m nodes in neostore.nodestore.db and set each with a IN-USE
flag of false, thus no real net change to size difference, AND then copy each of the internal ids for these 1m nodes to neostore.nodestore.db.id
, which thus has a increase in size. This .id
file effectively serves as a recycle bin such that if you were then to add back 1m nodes we would drain the neostore.nodestore.db.id
of 1m ids, thus reducing its size to near 0, and re-use those ids.
All the sessions of the conference are now available online