mempool: Log added for dumping mempool transactions to disk#29402
mempool: Log added for dumping mempool transactions to disk#29402glozow merged 2 commits intobitcoin:masterfrom
Conversation
|
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers. Code CoverageFor detailed information about the code coverage, see the test coverage report. ReviewsSee the guideline for information on the review process.
If your review is incorrectly listed, please react with 👎 to this comment and the bot will ignore it on the next update. ConflictsReviewers, this pull request conflicts with the following ones:
If you consider this pull request important, please also help to review the conflicting pull requests. Ideally, start with the one that should be merged first. |
|
Why is this needed? A progress log for something that takes less than a second does not sound useful |
This is in response to this comment #29227 (review) |
7b2092f to
9534383
Compare
|
The delay is probably from leveldb, but it would be good to first check |
I agree that logging the detailed progress in % is a bit overkill, but IMHO a single line "Dumping xyz mempool transactions to disk..." would still make sense. The "less than a second" data point seems to be closer to best-case, I have one machine here where dumping a full default-sized mempool takes more than 10 seconds. |
Sure, it may take longer than one second, depending on the hardware and its size. However,
Shutdown should be single-threaded, so the debug log should contain the last timestamp, which is enough to derive how long it took to dump the mempool, or whether it is still ongoing. I don't expect anyone to poll the debug log every second to see an update on the progress.
Agree, if there isn't such a log line right now, it could make sense to add it. |
+1 to @theStack's comment. Logging the start and end would be sufficient, no need for the 10% increments. |
9534383 to
33153b0
Compare
|
force pushed 33153b0 This removes the 10% increments and now logs a single line with the amount of mempool transactions being written to the disk |
c23f5be to
6312513
Compare
|
utACK 6312513b5074f160971ffec0b093b58b9d3cdaae. Planning to test as well. |
|
I'm seeing an issue during testing. The debug log incorrectly reports 0 MB. Are others able to reproduce my result? |
src/kernel/mempool_persist.cpp
Outdated
There was a problem hiding this comment.
very minor nit - To make the log more readable, can you please add a comma after 'file'?
So it displays as:
Writing xx mempool transactions to file, xx MB...
It looks like DynamicMemoryUsage computes like this which includes I think it might make more sense to not have a MB amount on |
Approach ACK. |
616f798 to
4218460
Compare
d161129 to
dbdb732
Compare
|
lgtm ACK dbdb7320252fd68415e8b76bad5a2169bd7da241 Seems fine to log when starting to dump the mempool. |
ajtowns
left a comment
There was a problem hiding this comment.
utACK dbdb7320252fd68415e8b76bad5a2169bd7da241
src/kernel/mempool_persist.cpp
Outdated
There was a problem hiding this comment.
Remove "from disk" here, if dropping "disk" mentions elsewhere?
There was a problem hiding this comment.
I didn't modify this line because opening the file from disk is accurate but I can change this to Failed to open mempool file. Continuing anyway
There was a problem hiding this comment.
updated in 34b6a8dadfb9a279f38fc828d6dff73209928f5d
dbdb732 to
34b6a8d
Compare
|
ACK 34b6a8dadfb9a279f38fc828d6dff73209928f5d |
glozow
left a comment
There was a problem hiding this comment.
utACK 34b6a8dadfb9a279f38fc828d6dff73209928f5d
34b6a8d to
4d5b557
Compare
|
cr-ACK 4d5b557 |
|
Tested from master after merge. lgtm. |
Sometimes when shutting off bitcoind it can take a while to dump the mempool transaction onto the disk so
this change adds additional logging to the
DumpMempoolmethod inkernel/mempool_persist.cppMotivated by #29227 this change
This is in response to #29227 (comment)
The logs will now look like this