From: Vladimir Davydov <vdavydov.dev@gmail.com> To: tarantool-patches@freelists.org Subject: [PATCH 08/10] vinyl: zap ERRINJ_VY_LOG_FLUSH_DELAY Date: Fri, 17 May 2019 17:52:42 +0300 [thread overview] Message-ID: <f813fa53f509cbab454aeb82ba11a3372d1290b7.1558103547.git.vdavydov.dev@gmail.com> (raw) In-Reply-To: <cover.1558103547.git.vdavydov.dev@gmail.com> In-Reply-To: <cover.1558103547.git.vdavydov.dev@gmail.com> To make it vy_log_tx_try_commit() non-yiedling, which is required for transactional DDL, we need to move ERRINJ_VY_LOG_FLUSH_DELAY out of this function. We can't move it to vylog thread, because the only test case that uses it tries to restart the server with this error injection enabled, while we don't exit until vylog thread completes. So let's just kill it - the problem it is checking will be gone once the vylog latch is removed, anyway. --- src/box/vy_log.c | 6 ------ src/lib/core/errinj.h | 1 - test/box/errinj.result | 44 +++++++++++++++++++++----------------------- test/vinyl/errinj.result | 22 ++-------------------- test/vinyl/errinj.test.lua | 11 ++--------- 5 files changed, 25 insertions(+), 59 deletions(-) diff --git a/src/box/vy_log.c b/src/box/vy_log.c index 31bc5c63..67b8a763 100644 --- a/src/box/vy_log.c +++ b/src/box/vy_log.c @@ -862,12 +862,6 @@ vy_log_flush(bool no_discard) if (stailq_empty(&vy_log.tx)) return 0; /* nothing to do */ - struct errinj *delay = errinj(ERRINJ_VY_LOG_FLUSH_DELAY, ERRINJ_BOOL); - if (delay != NULL && delay->bparam) { - while (delay->bparam) - fiber_sleep(0.001); - } - /* * Do actual disk writes on behalf of the vylog thread * so as not to block the tx thread. diff --git a/src/lib/core/errinj.h b/src/lib/core/errinj.h index 462c9846..a9748b1d 100644 --- a/src/lib/core/errinj.h +++ b/src/lib/core/errinj.h @@ -95,7 +95,6 @@ struct errinj { _(ERRINJ_VY_SCHED_TIMEOUT, ERRINJ_DOUBLE, {.dparam = 0}) \ _(ERRINJ_VY_GC, ERRINJ_BOOL, {.bparam = false}) \ _(ERRINJ_VY_LOG_FLUSH, ERRINJ_BOOL, {.bparam = false}) \ - _(ERRINJ_VY_LOG_FLUSH_DELAY, ERRINJ_BOOL, {.bparam = false}) \ _(ERRINJ_RELAY_SEND_DELAY, ERRINJ_BOOL, {.bparam = false}) \ _(ERRINJ_RELAY_TIMEOUT, ERRINJ_DOUBLE, {.dparam = 0}) \ _(ERRINJ_RELAY_REPORT_INTERVAL, ERRINJ_DOUBLE, {.dparam = 0}) \ diff --git a/test/box/errinj.result b/test/box/errinj.result index 061501c9..b2ba8bb2 100644 --- a/test/box/errinj.result +++ b/test/box/errinj.result @@ -40,26 +40,24 @@ errinj.info() state: false ERRINJ_COIO_SENDFILE_CHUNK: state: -1 - ERRINJ_VY_INDEX_FILE_RENAME: - state: false - ERRINJ_VY_POINT_ITER_WAIT: - state: false + ERRINJ_RELAY_BREAK_LSN: + state: -1 ERRINJ_VY_DELAY_PK_LOOKUP: state: false ERRINJ_VY_TASK_COMPLETE: state: false ERRINJ_PORT_DUMP: state: false - ERRINJ_WAL_BREAK_LSN: - state: -1 + ERRINJ_RELAY_EXIT_DELAY: + state: 0 ERRINJ_WAL_IO: state: false ERRINJ_WAL_FALLOCATE: state: 0 - ERRINJ_LOG_ROTATE: - state: false ERRINJ_VY_DUMP_DELAY: state: false + ERRINJ_SNAP_COMMIT_DELAY: + state: false ERRINJ_TUPLE_FORMAT_COUNT: state: -1 ERRINJ_TUPLE_ALLOC: @@ -70,7 +68,7 @@ errinj.info() state: false ERRINJ_RELAY_REPORT_INTERVAL: state: 0 - ERRINJ_RELAY_BREAK_LSN: + ERRINJ_WAL_BREAK_LSN: state: -1 ERRINJ_VY_READ_PAGE_TIMEOUT: state: 0 @@ -78,20 +76,20 @@ errinj.info() state: false ERRINJ_SIO_READ_MAX: state: -1 - ERRINJ_VY_RUN_FILE_RENAME: + ERRINJ_VY_INDEX_FILE_RENAME: state: false ERRINJ_WAL_WRITE_DISK: state: false + ERRINJ_VY_RUN_FILE_RENAME: + state: false ERRINJ_VY_LOG_FILE_RENAME: state: false - ERRINJ_HTTP_RESPONSE_ADD_WAIT: - state: false ERRINJ_VY_RUN_WRITE: state: false - ERRINJ_SNAP_COMMIT_DELAY: - state: false - ERRINJ_VY_LOG_FLUSH_DELAY: + ERRINJ_HTTP_RESPONSE_ADD_WAIT: state: false + ERRINJ_BUILD_INDEX: + state: -1 ERRINJ_RELAY_FINAL_JOIN: state: false ERRINJ_VY_COMPACTION_DELAY: @@ -102,10 +100,10 @@ errinj.info() state: false ERRINJ_WAL_ROTATE: state: false - ERRINJ_BUILD_INDEX: - state: -1 - ERRINJ_RELAY_EXIT_DELAY: - state: 0 + ERRINJ_LOG_ROTATE: + state: false + ERRINJ_VY_POINT_ITER_WAIT: + state: false ERRINJ_MEMTX_DELAY_GC: state: false ERRINJ_IPROTO_TX_DELAY: @@ -122,14 +120,14 @@ errinj.info() state: false ERRINJ_TESTING: state: false - ERRINJ_RELAY_TIMEOUT: - state: 0 + ERRINJ_RELAY_SEND_DELAY: + state: false ERRINJ_VY_SQUASH_TIMEOUT: state: 0 ERRINJ_VY_LOG_FLUSH: state: false - ERRINJ_RELAY_SEND_DELAY: - state: false + ERRINJ_RELAY_TIMEOUT: + state: 0 ... errinj.set("some-injection", true) --- diff --git a/test/vinyl/errinj.result b/test/vinyl/errinj.result index e05a616a..effb57a6 100644 --- a/test/vinyl/errinj.result +++ b/test/vinyl/errinj.result @@ -880,9 +880,8 @@ s:drop() --- ... -- --- gh-3412 - assertion failure at exit in case: --- * there is a fiber waiting for quota --- * there is a pending vylog write +-- gh-3412 - assertion failure at exit in case there is a fiber +-- waiting for quota. -- test_run:cmd("create server low_quota with script='vinyl/low_quota.lua'") --- @@ -918,23 +917,6 @@ _ = fiber.create(function() for i = 1, 11 do box.space.test:replace{i, pad} end repeat fiber.sleep(0.001) until box.cfg.vinyl_memory - box.stat.vinyl().memory.level0 < pad:len() --- ... -test_run:cmd("restart server low_quota with args='1048576'") -box.error.injection.set('ERRINJ_VY_LOG_FLUSH_DELAY', true) ---- -- ok -... -fiber = require('fiber') ---- -... -pad = string.rep('x', 100 * 1024) ---- -... -_ = fiber.create(function() for i = 1, 11 do box.space.test:replace{i, pad} end end) ---- -... -repeat fiber.sleep(0.001) until box.cfg.vinyl_memory - box.stat.vinyl().memory.level0 < pad:len() ---- -... test_run:cmd('switch default') --- - true diff --git a/test/vinyl/errinj.test.lua b/test/vinyl/errinj.test.lua index 4317ccb8..4169490a 100644 --- a/test/vinyl/errinj.test.lua +++ b/test/vinyl/errinj.test.lua @@ -312,9 +312,8 @@ ret s:drop() -- --- gh-3412 - assertion failure at exit in case: --- * there is a fiber waiting for quota --- * there is a pending vylog write +-- gh-3412 - assertion failure at exit in case there is a fiber +-- waiting for quota. -- test_run:cmd("create server low_quota with script='vinyl/low_quota.lua'") test_run:cmd("start server low_quota with args='1048576'") @@ -326,12 +325,6 @@ fiber = require('fiber') pad = string.rep('x', 100 * 1024) _ = fiber.create(function() for i = 1, 11 do box.space.test:replace{i, pad} end end) repeat fiber.sleep(0.001) until box.cfg.vinyl_memory - box.stat.vinyl().memory.level0 < pad:len() -test_run:cmd("restart server low_quota with args='1048576'") -box.error.injection.set('ERRINJ_VY_LOG_FLUSH_DELAY', true) -fiber = require('fiber') -pad = string.rep('x', 100 * 1024) -_ = fiber.create(function() for i = 1, 11 do box.space.test:replace{i, pad} end end) -repeat fiber.sleep(0.001) until box.cfg.vinyl_memory - box.stat.vinyl().memory.level0 < pad:len() test_run:cmd('switch default') test_run:cmd("stop server low_quota") test_run:cmd("cleanup server low_quota") -- 2.11.0
next prev parent reply other threads:[~2019-05-17 14:52 UTC|newest] Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-05-17 14:52 [PATCH 00/10] vinyl: don't yield in DDL on_commit triggers Vladimir Davydov 2019-05-17 14:52 ` [PATCH 01/10] box: zap atfork callback Vladimir Davydov 2019-05-18 18:37 ` [tarantool-patches] " Konstantin Osipov 2019-05-20 8:13 ` Vladimir Davydov 2019-06-01 8:16 ` Konstantin Osipov 2019-06-06 10:04 ` Vladimir Davydov 2019-05-17 14:52 ` [PATCH 02/10] vinyl: add a separate thread for vylog Vladimir Davydov 2019-05-18 18:39 ` [tarantool-patches] " Konstantin Osipov 2019-05-20 8:17 ` Vladimir Davydov 2019-06-01 8:26 ` Konstantin Osipov 2019-06-06 10:20 ` Vladimir Davydov 2019-05-17 14:52 ` [PATCH 03/10] vinyl: move vylog recovery to vylog thread Vladimir Davydov 2019-06-01 8:36 ` [tarantool-patches] " Konstantin Osipov 2019-06-06 10:23 ` Vladimir Davydov 2019-06-07 13:39 ` Konstantin Osipov 2019-06-10 15:24 ` Vladimir Davydov 2019-06-07 13:40 ` Konstantin Osipov 2019-05-17 14:52 ` [PATCH 04/10] vinyl: rework vylog transaction backlog implementation Vladimir Davydov 2019-06-01 8:38 ` [tarantool-patches] " Konstantin Osipov 2019-06-06 11:58 ` Vladimir Davydov 2019-05-17 14:52 ` [PATCH 05/10] vinyl: don't purge deleted runs from vylog on compaction Vladimir Davydov 2019-05-18 18:47 ` [tarantool-patches] " Konstantin Osipov 2019-05-20 8:27 ` Vladimir Davydov 2019-06-01 8:39 ` Konstantin Osipov 2019-06-06 12:40 ` Vladimir Davydov 2019-05-17 14:52 ` [PATCH 06/10] vinyl: lock out compaction while checkpointing is in progress Vladimir Davydov 2019-05-17 14:52 ` [PATCH 07/10] vinyl: don't access last vylog signature outside vylog implementation Vladimir Davydov 2019-05-17 14:52 ` Vladimir Davydov [this message] 2019-05-17 14:52 ` [PATCH 09/10] key_def: pass alloc callback to key_def_dump_parts Vladimir Davydov 2019-05-18 18:52 ` [tarantool-patches] " Konstantin Osipov 2019-05-20 8:34 ` Vladimir Davydov 2019-06-01 8:41 ` Konstantin Osipov 2019-06-10 15:28 ` Vladimir Davydov 2019-06-16 14:57 ` Konstantin Osipov 2019-05-17 14:52 ` [PATCH 10/10] vinyl: get rid of the latch protecting vylog buffer Vladimir Davydov 2019-06-01 8:44 ` [tarantool-patches] " Konstantin Osipov 2019-06-06 13:15 ` Vladimir Davydov 2019-05-18 18:35 ` [tarantool-patches] Re: [PATCH 00/10] vinyl: don't yield in DDL on_commit triggers Konstantin Osipov 2019-05-20 8:09 ` Vladimir Davydov 2019-06-01 8:09 ` Konstantin Osipov
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=f813fa53f509cbab454aeb82ba11a3372d1290b7.1558103547.git.vdavydov.dev@gmail.com \ --to=vdavydov.dev@gmail.com \ --cc=tarantool-patches@freelists.org \ --subject='Re: [PATCH 08/10] vinyl: zap ERRINJ_VY_LOG_FLUSH_DELAY' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox