We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
core dump:
F10:16:40.459 (1480990600459595051 156a) replica.io-thrd.05482: assertion expression: size >= this_size F10:16:40.459 (1480990600459612035 156a) replica.io-thrd.05482: written buffer size does not equal to input buffer's size: 5256 vs 11448
source code:
aio_task* disk_file::on_write_completed(aio_task* wk, void* ctx, error_code err, size_t size) { auto ret = _write_queue.on_work_completed(wk, ctx); while (wk) { aio_task* next = (aio_task*)wk->next; wk->next = nullptr; if (err == ERR_OK) { size_t this_size = (size_t)wk->aio()->buffer_size; dassert(size >= this_size, "written buffer size does not equal to input buffer's size: %d vs %d", (int)size, (int)this_size ); wk->enqueue(err, this_size); size -= this_size; }
The text was updated successfully, but these errors were encountered:
Thanks, Zuoyan. This is a serious bug. I'll look into it to see any clues.
Sorry, something went wrong.
@imzhenyu , the core reason is that the SSD is full....
then why err == ERR_OK? If SSD is full, should not we have errors returned?
No branches or pull requests
core dump:
source code:
The text was updated successfully, but these errors were encountered: