New manifest code
The manifest had previously been a list for eveyr leevl of the manifest, and keys were found by folding over the list. By Level 4 the list will be 4096 items long, and so the fold would be expensive, and would be required many times. To make this less expensive an ETS table is to use. However, the ETS table needs to be shared between snapshots and so in order to use the ETS the entries to the table need to support multi-versioning - whereby each clone can see a version of the table at the Manifest SQN the clone is supporting.
This commit is contained in:
parent
b2bb4ce73e
commit
ed27a53452
2 changed files with 488 additions and 1 deletions
|
@ -125,7 +125,12 @@
|
|||
{info, "Completion of update to levelzero"}},
|
||||
{"P0032",
|
||||
{info, "Head timing for result ~w is sample ~w total ~w and max ~w"}},
|
||||
|
||||
{"P0033",
|
||||
{error, "Corrupted manifest file at path ~s to be ignored "
|
||||
++ "due to error ~w"}},
|
||||
{"P0034",
|
||||
{warn, "Snapshot with pid ~w timed out and so deletion will "
|
||||
++ "continue regardless"}},
|
||||
{"PC001",
|
||||
{info, "Penciller's clerk ~w started with owner ~w"}},
|
||||
{"PC002",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue