Size: 6347
Comment:
|
Size: 12538
Comment: add status of tasks
|
Deletions are marked like this. | Additions are marked like this. |
Line 7: | Line 7: |
'''Status: need discussion''' | '''Status: In progress''' |
Line 15: | Line 15: |
== Status of tasks == Main tasks to make cache validation exact were finished, and changes were released as a part of 3.9 (mentioned in "[[Release3.9|overview of new features]]" page) Optional tasks are: * make scmutil.filecache use "new cachestat" {X} * make hg.cachedlocalrepo use "new cachestat" {X} * make util.atomictempfile ready for context manager (./) (by [[https://selenic.com/repo/hg/rev/6d96658a22b0|Martijn Pieters]], and released as a part of 3.9) |
|
Line 35: | Line 45: |
Root cause of this issue is that timestamp in second doesn't have enough resolution to detect multiple changes "at same second". Base idea of the solution for this issue is "advance mtime, if changed at same second", which was suggested by Matt in [[http://thread.gmane.org/gmane.comp.version-control.mercurial.devel/85394/focus=85437]] "S[N]" below means stat of a file at N-th change: * S[n-1].ctime < S[n].ctime: can detect change of a file * S[n-1].ctime == S[n].ctime * S[n-1].ctime < S[n].mtime: means natural advancing (*1) * S[n-1].ctime == S[n].mtime: is ambiguous (*2) * S[n-1].ctime > S[n].mtime: never occurs naturally (*3) * S[n-1].ctime > S[n].ctime: never occurs naturally Case (*2) above means that a file was changed twice or more at same second (= S[n-1].ctime), and comparison of timestamp is ambiguous. But advancing mtime only in case (*2) doesn't work as expected, because naturally advanced S[n].mtime in case (*1) might be equal to manually advanced S[n-1 or less].mtime. Therefore, all "S[n-1].ctime == S[n].ctime" cases should be treated as ambiguous regardless of mtime, to avoid overlooking by confliction between such mtime. Advancing mtime in such case ensures "S[n-1].mtime != S[n].mtime" always at change of a file. Even though meaning of "ctime" itself is different on each platforms ("change" time on POSIX, but "creation" time on Windows), this solution should work as expected, because it is fact that file stat is ambiguous if ctime isn't different between before and after change of a file. BTW, "rewind mtime 1 sec, if timestamp is ambiguous" also resolves this issue. If we rewind S[n].mtime 1 sec in (*2) case, we don't worry about confliction between naturally advanced S[n].mtime in case (*1) and manually advanced S[n-1 or less].mtime, because manually rewound mtime uses (*3) space: while a file is changed at same ctime, mtime should be naturally equal to or grater than ctime (= (*2) or (*1)). But: * it is a little complicated to explain, * it might confuse traditional tools by "mtime less than ctime", and * performance advantage of rewinding mtime is only that os.lstat() is avoided if "S[n-1].ctime < S[n].mtime" (if "S[n-1].ctime == S[n].ctime" occurs often, "S[n-1].ctime < S[n].mtime" is just a little part of such case) Therefore, advancing mtime seems better than rewinding mtime, for this issue. == Ambiguity check with other than ctime == If other than ctime of a file is used to examine ambiguity, it might cause overlooking changes. For example, if "ambiguous" means "ctime and mtime are same": 1. create FILE with (SIZE, CTIME, MTIME) 2. modify FILE with (SIZE, CTIME, MTIME) 3. change mtime of FILE into MTIME+1, and 4. stat of FILE is now (SIZE, CTIME, MTIME+1) 5. modify FILE with (SIZE, CTIME, MTIME) again, but 6. (SIZE, CTIME, MTIME) stat of FILE is kept, because it is different from stat at (4) 7. (2) - (6) might be repeated many times while same CTIME Then, this "fluttering" for mtime between MTIME and MTIME+1 causes overlooking changes. For another example, if "ambiguous" means "size and ctime are same": 1. crete FILE with (SIZE1, CTIME, MTIME) 2. modify FILE with (SIZE2, CTIME, MTIME) 3. mtime is kept, because of change of size 4. modify FILE again with (SIZE1, CTIME, MTIME) 5. mtime is kept, because of change of size 6. (2) - (5) might be repeated many times while same CTIME In this situation, mtime is never advanced, and this causes overlooking changes. Therefore, other than ctime of a file can't be used to examine ambiguity, even though it might cause advancing mtime often. |
|
Line 40: | Line 137: |
* bookmarks | |
Line 42: | Line 140: |
* obsstore * bookmarks |
|
Line 88: | Line 184: |
Base idea of this solution was suggested by Matt in [[http://thread.gmane.org/gmane.comp.version-control.mercurial.devel/85394/focus=85437]] |
|
Line 110: | Line 204: |
(self.stat.st_size == oldstat.stat.st_size and self.stat.st_ctime == oldstat.stat.st_ctime and # "self.st_mtime > oldstat.st_mtime" is included to avoid # fluttering between N and N + 1 second self.stat.st_mtime <= oldstat.stat.st_mtime) |
(self.stat.st_ctime == oldstat.stat.st_ctime) |
Line 117: | Line 207: |
This is used to examine whether stat of changed file has ambiguity against one of original file. "fluttering" above means the case like below: 1. create FILE with (SIZE, MTIME) 2. modify FILE with (SIZE, MTIME) 3. change mtime of FILE into MTIME+1, and 4. stat of FILE is now (SIZE, MTIME+1) 5. modify FILE with (SIZE, MTIME) again, but 6. (SIZE, MTIME) stat of FILE is kept , because it is different from stat at (4) 7. (2) - (6) might be repeated many times while MTIME So, {{{if NEW_MTIME < OLD_MTIME}}}, it should be treated as "ambiguous", too. |
This examines whether changes occur "at same second". If so, stat of changed file has "ambiguity" against one of original file, and we should advance mtime of changed file. |
Line 150: | Line 229: |
=== make classes, of which instance is cached from file, aware ambiguity === | === change file generation of transaction for ambiguity === Add "checkambig" optional argument to {{{transaction.addfilegenerator()}}}, and it will be used at opening file to write data out. This is needed, because below files are written out also via file generation of transaction. * .hg/bookmarks * .hg/dirstate * .hg/phaseroots Fortunately or unfortunately, {{{transaction.addfilegenerator()}}} is currently used only by classes related to files above. For simplicity, should we make transaction generate files with {{{vfs.open(FILENAME, "w", checkambig=True)}}} always ? === make classes, of which instance is cached from file, aware of ambiguity === |
Line 153: | Line 250: |
be ambiguous at change, use {{{vfs.__call__()}}} with {{{checkambig=True}}} * dirstate.dirstate * bookmarks.bmstore |
be ambiguous at change, should be aware of ambiguity. * bookmarks.bmstore (also for .hg/bookmarks.current) * dirstate.dirstate (also for .hg/branch) |
Line 159: | Line 255: |
* obsolete.obsstore | We should make them use: * {{{vfs.__call__()}}} with {{{checkambig=True}}} * {{{transaction.addfilegenerator()}}} with {{{checkambig=True}}} === make restoring from backup file aware of ambiguity === Renaming from backup of cached file overwrites original file in cases below, and this renaming might cause ambiguity, too. * restoring from dirstate backup file at failure in scopes below * transaction scope * dirstateguard scope * restoring from "undo." files at transaction rollback * bookmarks * dirstate * phaseroots Therefore, we should: * add (optional) ambiguity check logic to {{{vfs.rename()}}} * make restoring from backup file aware of ambiguity * restoring dirstate at failure (transaction or dirstateguard scope) * restoring files at {{{localrepository._rollback()}}} In addition to it, {{{transaction}}} restores contents of files, which are registered via {{{addfilegenerator()}}}, from backup ({{{journal.backup.*}}} at failure, {{{undo.backup.*}}} at rollback) by {{{util.copyfile()}}}. Therefore, we should also: * add (optional) ambiguity check logic to {{{util.copyfile()}}} * make {{{transaction._playback()}}} aware of ambiguity |
Line 171: | Line 301: |
BTW, validity of ctime/mtime fields depends on underlying filesystem. For example, on Windows, os.lstat() of Python fills st_ctime/st_mtime information by ftCreationTime/ftLastWriteTime of [[https://msdn.microsoft.com/en-us//library/windows/desktop/aa363788(v=vs.85).aspx|BY_HANDLE_FILE_INFORMATION structure]] as a result of {{{GetFileInformationByHandle()}}} API, and these fields are zero, if underlying filesystem doesn't support Ambiguity detection described in this page depends on validity of ctime/mtime fields of file stat. Therefore, cachability at runtime should be examined by "{{{stat.st_ctime != 0 and stat.st_mtime != 0}}}". This examination might cause false negative, if "filesystem time" is accidentally 0 at that time. But such situation should be very rare (or intentional for specific purpose), and should disappear after 1 second or so on ordinary environment. |
Note:
This page is primarily intended for developers of Mercurial.
Exact Cache Validation Plan
Status: In progress
Main proponents: KatsunoriFujiwara
Contents
This page mainly focuses on the way to validate cache exactly even if stat information of file isn't changed as expected at changing file itself.
1. Status of tasks
Main tasks to make cache validation exact were finished, and changes were released as a part of 3.9 (mentioned in "overview of new features" page)
Optional tasks are:
make scmutil.filecache use "new cachestat"
make hg.cachedlocalrepo use "new cachestat"
make util.atomictempfile ready for context manager
(by Martijn Pieters, and released as a part of 3.9)
2. Outline of issue
This comes from issue4368 https://bz.mercurial-scm.org/show_bug.cgi?id=4368#c10 , and was once RFC-ed in http://thread.gmane.org/gmane.comp.version-control.mercurial.devel/85394
On POSIX, comparing i-node number for file cache validation causes unexpected overlooking changes of file, because i-node number is reused rapidly in many cases. For example, it is assumed that steps below occur in same CTIME/MTIME:
- create FILE with (SIZE, INO1)
- modify FILE with (SIZE, INO2)
- modify FILE with (SIZE, reused INO1)
Then, file base property cached with stat at (1) overlooks changes at (3).
There are some files, of which size might be kept even at changing (for example, dirstate, bookmarks and so on). This causes inconsistent result.
Root cause of this issue is that timestamp in second doesn't have enough resolution to detect multiple changes "at same second".
Base idea of the solution for this issue is "advance mtime, if changed at same second", which was suggested by Matt in http://thread.gmane.org/gmane.comp.version-control.mercurial.devel/85394/focus=85437
"S[N]" below means stat of a file at N-th change:
S[n-1].ctime < S[n].ctime: can detect change of a file
- S[n-1].ctime == S[n].ctime
S[n-1].ctime < S[n].mtime: means natural advancing (*1)
- S[n-1].ctime == S[n].mtime: is ambiguous (*2)
S[n-1].ctime > S[n].mtime: never occurs naturally (*3)
S[n-1].ctime > S[n].ctime: never occurs naturally
Case (*2) above means that a file was changed twice or more at same second (= S[n-1].ctime), and comparison of timestamp is ambiguous.
But advancing mtime only in case (*2) doesn't work as expected, because naturally advanced S[n].mtime in case (*1) might be equal to manually advanced S[n-1 or less].mtime.
Therefore, all "S[n-1].ctime == S[n].ctime" cases should be treated as ambiguous regardless of mtime, to avoid overlooking by confliction between such mtime.
Advancing mtime in such case ensures "S[n-1].mtime != S[n].mtime" always at change of a file.
Even though meaning of "ctime" itself is different on each platforms ("change" time on POSIX, but "creation" time on Windows), this solution should work as expected, because it is fact that file stat is ambiguous if ctime isn't different between before and after change of a file.
BTW, "rewind mtime 1 sec, if timestamp is ambiguous" also resolves this issue.
If we rewind S[n].mtime 1 sec in (*2) case, we don't worry about confliction between naturally advanced S[n].mtime in case (*1) and manually advanced S[n-1 or less].mtime, because manually rewound mtime uses (*3) space: while a file is changed at same ctime, mtime should be naturally equal to or grater than ctime (= (*2) or (*1)).
But:
- it is a little complicated to explain,
- it might confuse traditional tools by "mtime less than ctime", and
performance advantage of rewinding mtime is only that os.lstat() is avoided if "S[n-1].ctime < S[n].mtime" (if "S[n-1].ctime == S[n].ctime" occurs often, "S[n-1].ctime < S[n].mtime" is just a little part of such case)
Therefore, advancing mtime seems better than rewinding mtime, for this issue.
3. Ambiguity check with other than ctime
If other than ctime of a file is used to examine ambiguity, it might cause overlooking changes.
For example, if "ambiguous" means "ctime and mtime are same":
- create FILE with (SIZE, CTIME, MTIME)
- modify FILE with (SIZE, CTIME, MTIME)
- change mtime of FILE into MTIME+1, and
- stat of FILE is now (SIZE, CTIME, MTIME+1)
- modify FILE with (SIZE, CTIME, MTIME) again, but
- (SIZE, CTIME, MTIME) stat of FILE is kept, because it is different from stat at (4)
- (2) - (6) might be repeated many times while same CTIME
Then, this "fluttering" for mtime between MTIME and MTIME+1 causes overlooking changes.
For another example, if "ambiguous" means "size and ctime are same":
- crete FILE with (SIZE1, CTIME, MTIME)
- modify FILE with (SIZE2, CTIME, MTIME)
- mtime is kept, because of change of size
- modify FILE again with (SIZE1, CTIME, MTIME)
- mtime is kept, because of change of size
- (2) - (5) might be repeated many times while same CTIME
In this situation, mtime is never advanced, and this causes overlooking changes.
Therefore, other than ctime of a file can't be used to examine ambiguity, even though it might cause advancing mtime often.
4. Caching for web UI
hg.cachedlocalrepo uses st_mtime and st_size of stat of files below to validate repo object on ALL platforms.
- bookmarks
- changelog
- phaseroots
There is no trigger to invoke repo.invalidate() explicitly at just referring, for hgweb. Therefore, changes might be shadowed by ambiguity of files above (other than changelog), if repo object is reused.
5. Performance problem
If we simply make changing file "aware of ambiguity" always for atomictemp=True, it might cause performance problem.
For example, revlog code opens file in write mode with atomictemp=True. This means that all files derived from revlog is "aware of ambiguity".
But such files aren't ambiguous, because of "append only" revlog policy. In addition to it, a repository might write many filelog files at once (= require cost to get stat of them), but it doesn't cache them (= check of ambiguity isn't needed).
In conclusion, we should make util.atomictempfile aware of ambiguity, only if such awareness is required.
6. Cachability of files on Windows
On Windows, file isn't cachable since 2.0 (or 2aa3e07b2f07).
But on the other hand, hg.cachedlocalrepo uses st_mtime and st_size of stat to validate repo object on ALL platforms, as described above.
According to 2aa3e07b2f07:
- For now on Windows we always assume the path is uncacheable. This can be improved on NTFS due to file IDs:
http://msdn.microsoft.com/en-us/library/aa363788(v=vs.85).aspx
"the path is uncacheable" above seems to mean "there is no reliable file ID on Windows".
Therefore, "using st_mtime, st_size and so on for cache validation" itself seems not problematic also on Windows.
7. Steps to make cache validation exact
7.1. introduce "new cachestat" class
Introduce portable "new cachestat" class.
It mainly provides methods below.
__eq__(self, oldstat) returns:
(self.stat.st_size == oldstat.stat.st_size and self.stat.st_ctime == oldstat.stat.st_ctime and self.stat.st_mtime == oldstat.stat.st_mtime)
This is used to examine whether file is changed or not.
On the other hand, isambig(self, oldstat) returns:
(self.stat.st_ctime == oldstat.stat.st_ctime)
This examines whether changes occur "at same second". If so, stat of changed file has "ambiguity" against one of original file, and we should advance mtime of changed file.
7.2. make util.atomictempfile aware of ambiguity
Make close() of util.atomictempfile examine whether stat of changed file is ambiguous or not in steps below.
invoke original close() of file object for temporary file
- get "new cachestat" of original file ("oldstat")
- get "new cachestat" of changed file ("newstat")
change mtime of changed file into "mtime of oldstat + 1", if newstat.isambig(oldstat)
For performance reason described above, close() of util.atomictempfile examines ambiguity, only if "checkambig" optional argument is True at contruction time.
7.3. change vfs.__call__() for ambiguity
Add "checkambig" optional argument to vfs.__call__(), and it will be passed to util.atomictempfile.
7.4. change file generation of transaction for ambiguity
Add "checkambig" optional argument to transaction.addfilegenerator(), and it will be used at opening file to write data out.
This is needed, because below files are written out also via file generation of transaction.
- .hg/bookmarks
- .hg/dirstate
- .hg/phaseroots
Fortunately or unfortunately, transaction.addfilegenerator() is currently used only by classes related to files above.
For simplicity, should we make transaction generate files with vfs.open(FILENAME, "w", checkambig=True) always ?
7.5. make classes, of which instance is cached from file, aware of ambiguity
Classes below, which is cached via scmutil.filecache and might be ambiguous at change, should be aware of ambiguity.
- bookmarks.bmstore (also for .hg/bookmarks.current)
- dirstate.dirstate (also for .hg/branch)
- phases.phasecache
We should make them use:
vfs.__call__() with checkambig=True
transaction.addfilegenerator() with checkambig=True
7.6. make restoring from backup file aware of ambiguity
Renaming from backup of cached file overwrites original file in cases below, and this renaming might cause ambiguity, too.
- restoring from dirstate backup file at failure in scopes below
- transaction scope
- dirstateguard scope
- restoring from "undo." files at transaction rollback
- bookmarks
- dirstate
- phaseroots
Therefore, we should:
add (optional) ambiguity check logic to vfs.rename()
- make restoring from backup file aware of ambiguity
- restoring dirstate at failure (transaction or dirstateguard scope)
restoring files at localrepository._rollback()
In addition to it, transaction restores contents of files, which are registered via addfilegenerator(), from backup (journal.backup.* at failure, undo.backup.* at rollback) by util.copyfile().
Therefore, we should also:
add (optional) ambiguity check logic to util.copyfile()
make transaction._playback() aware of ambiguity
8. Optional tasks
8.1. make scmutil.filecache use "new cachestat"
To invalidate changed cache certainly, make scmutil.filecache use "new cachestat".
This also improves performance on Windows, because of reusing cached information
BTW, validity of ctime/mtime fields depends on underlying filesystem. For example, on Windows, os.lstat() of Python fills st_ctime/st_mtime information by ftCreationTime/ftLastWriteTime of BY_HANDLE_FILE_INFORMATION structure as a result of GetFileInformationByHandle() API, and these fields are zero, if underlying filesystem doesn't support
Ambiguity detection described in this page depends on validity of ctime/mtime fields of file stat. Therefore, cachability at runtime should be examined by "stat.st_ctime != 0 and stat.st_mtime != 0".
This examination might cause false negative, if "filesystem time" is accidentally 0 at that time. But such situation should be very rare (or intentional for specific purpose), and should disappear after 1 second or so on ordinary environment.
8.2. make hg.cachedlocalrepo use "new cachestat"
BTW, after "make cache validation exact", files are cached on all platforms, and cache validity is examined exactly (I hope so :-)).
Then, can repo.invalidate() replace recreation of out-of-date repo object ?
8.3. make util.atomictempfile ready for context manager
Now, file opened with atomictemp=True can't be used for with Python statement.