Yi Wu
decf7e52b0
Fix write get stuck when pipelined write is enabled ( #4143 )
...
Summary:
Fix the issue when pipelined write is enabled, writers can get stuck indefinitely and not able to finish the write. It can show with the following example: Assume there are 4 writers W1, W2, W3, W4 (W1 is the first, W4 is the last).
T1: all writers pending in WAL writer queue:
WAL writer queue: W1, W2, W3, W4
memtable writer queue: empty
T2. W1 finish WAL writer and move to memtable writer queue:
WAL writer queue: W2, W3, W4,
memtable writer queue: W1
T3. W2 and W3 finish WAL write as a batch group. W2 enter ExitAsBatchGroupLeader and move the group to memtable writer queue, but before wake up next leader.
WAL writer queue: W4
memtable writer queue: W1, W2, W3
T4. W1, W2, W3 finish memtable write as a batch group. Note that W2 still in the previous ExitAsBatchGroupLeader, although W1 have done memtable write for W2.
WAL writer queue: W4
memtable writer queue: empty
T5. The thread corresponding to W3 create another writer W3' with the same address as W3.
WAL writer queue: W4, W3'
memtable writer queue: empty
T6. W2 continue with ExitAsBatchGroupLeader. Because the address of W3' is the same as W3, the last writer in its group, it thinks there are no pending writers, so it reset newest_writer_ to null, emptying the queue. W4 and W3' are deleted from the queue and will never be wake up.
The issue exists since pipelined write was introduced in 5.5.0.
Closes #3704
Pull Request resolved: https://github.com/facebook/rocksdb/pull/4143
Differential Revision: D8871599
Pulled By: yiwu-arbug
fbshipit-source-id: 3502674e51066a954a0660257e24ac588f815e2a
2018-07-18 10:18:50 -07:00
..
2018-07-13 17:42:38 -07:00
2018-05-21 14:43:11 -07:00
2018-04-12 17:59:16 -07:00
2018-06-27 17:42:38 -07:00
2018-07-13 17:27:39 -07:00
2018-05-03 15:43:09 -07:00
2018-04-27 11:57:39 -07:00
2018-07-13 17:27:39 -07:00
2018-05-21 14:43:11 -07:00
2018-03-05 13:13:41 -08:00
2017-08-19 14:10:08 -07:00
2018-06-21 21:28:05 -07:00
2018-07-12 14:42:39 -07:00
2018-06-21 21:28:05 -07:00
2018-07-13 17:27:39 -07:00
2018-07-13 17:27:39 -07:00
2018-07-13 17:42:38 -07:00
2018-06-28 12:34:40 -07:00
2018-05-29 15:44:34 -07:00
2018-06-27 17:42:38 -07:00
2018-05-29 15:44:34 -07:00
2018-07-05 20:12:56 -07:00
2018-06-27 17:42:38 -07:00
2018-06-27 17:42:38 -07:00
2018-06-27 17:42:38 -07:00
2018-07-13 17:27:39 -07:00
2018-06-27 17:13:34 -07:00
2018-07-13 17:27:39 -07:00
2018-07-13 17:27:39 -07:00
2018-07-13 17:27:39 -07:00
2017-10-17 08:57:09 -07:00
2018-05-24 15:57:33 -07:00
2018-06-27 20:42:43 -07:00
2018-05-30 16:15:16 -07:00
2018-07-16 14:27:53 -07:00
2018-04-15 17:26:26 -07:00
2017-07-15 16:11:23 -07:00
2018-03-21 22:13:34 -07:00
2018-05-03 15:43:09 -07:00
2018-06-28 12:34:40 -07:00
2018-06-28 12:34:40 -07:00
2017-10-05 18:11:43 -07:00
2018-07-11 14:57:46 -07:00
2018-06-28 18:58:29 -07:00
2018-05-21 14:43:11 -07:00
2018-03-15 11:58:12 -07:00
2018-06-28 12:34:40 -07:00
2018-07-17 14:43:18 -07:00
2018-07-06 17:59:13 -07:00
2017-07-15 16:11:23 -07:00
2017-07-15 16:11:23 -07:00
2017-07-15 16:11:23 -07:00
2017-07-26 21:11:47 -07:00
2018-05-21 14:43:11 -07:00
2018-06-12 16:57:36 -07:00
2018-07-12 14:42:39 -07:00
2018-05-21 14:43:11 -07:00
2018-07-17 14:43:18 -07:00
2018-04-15 17:26:26 -07:00
2018-03-05 13:13:41 -08:00
2018-06-27 12:23:07 -07:00
2018-05-21 16:42:22 -07:00
2018-06-26 20:27:35 -07:00
2018-07-13 22:43:09 -07:00
2018-04-12 17:59:16 -07:00
2017-07-15 16:11:23 -07:00
2017-09-28 18:17:30 -07:00
2018-07-17 14:43:18 -07:00
2018-07-13 17:27:39 -07:00
2018-07-13 17:27:39 -07:00
2018-07-13 22:43:09 -07:00
2018-07-13 17:27:39 -07:00
2018-06-26 10:44:56 -07:00
2018-05-03 15:43:09 -07:00
2018-05-14 21:13:35 -07:00
2018-07-13 17:42:38 -07:00
2018-04-13 11:27:17 -07:00
2018-07-16 17:13:10 -07:00
2018-07-13 17:27:39 -07:00
2018-06-28 12:34:40 -07:00
2018-06-28 12:34:40 -07:00
2018-06-28 12:34:40 -07:00
2018-04-12 17:59:16 -07:00
2017-07-15 16:11:23 -07:00
2018-04-12 17:59:16 -07:00
2018-07-13 22:43:09 -07:00
2018-07-13 22:43:09 -07:00
2018-07-13 22:43:09 -07:00
2018-07-17 14:13:16 -07:00
2018-07-13 17:27:39 -07:00
2018-03-05 13:13:41 -08:00
2017-07-15 16:11:23 -07:00
2017-07-15 16:11:23 -07:00
2017-07-15 16:11:23 -07:00
2018-07-13 17:27:39 -07:00
2018-06-28 12:34:40 -07:00
2018-05-03 15:43:09 -07:00
2017-07-15 16:11:23 -07:00
2017-07-15 16:11:23 -07:00
2018-07-13 17:27:39 -07:00
2018-07-13 17:42:38 -07:00
2018-03-05 13:13:41 -08:00
2018-06-15 17:28:01 -07:00
2018-06-15 17:28:01 -07:00
2018-05-09 10:13:53 -07:00
2018-04-10 15:59:24 -07:00
2017-07-15 16:11:23 -07:00
2018-07-13 10:58:06 -07:00
2018-01-29 12:56:42 -08:00
2018-06-21 08:42:24 -07:00
2018-05-14 10:57:56 -07:00
2018-05-14 10:57:56 -07:00
2018-05-03 15:43:09 -07:00
2018-05-03 15:43:09 -07:00
2018-03-06 16:27:54 -08:00
2017-07-15 16:11:23 -07:00
2018-07-13 17:27:39 -07:00
2018-07-13 17:27:39 -07:00
2018-06-28 12:34:39 -07:00
2018-05-03 15:43:09 -07:00
2018-07-13 10:58:06 -07:00
2018-03-23 12:14:30 -07:00
2017-07-15 16:11:23 -07:00
2017-07-15 16:11:23 -07:00
2018-07-12 14:42:39 -07:00
2018-02-09 14:57:54 -08:00
2017-07-15 16:11:23 -07:00
2018-07-13 17:27:39 -07:00
2018-07-13 17:27:39 -07:00
2018-07-13 17:27:39 -07:00
2018-07-13 17:27:39 -07:00
2017-07-15 16:11:23 -07:00
2018-07-13 17:27:39 -07:00
2018-04-05 11:12:16 -07:00
2018-07-13 17:27:39 -07:00
2018-07-13 17:42:38 -07:00
2018-07-13 22:43:09 -07:00
2018-07-13 22:43:09 -07:00
2018-06-27 12:23:07 -07:00
2018-04-15 17:26:26 -07:00
2018-07-13 17:42:38 -07:00
2018-03-05 13:13:41 -08:00
2017-07-15 16:11:23 -07:00
2018-04-02 20:27:41 -07:00
2018-07-13 17:42:38 -07:00
2018-07-13 17:42:38 -07:00
2018-06-15 19:26:58 -07:00
2018-03-05 13:13:41 -08:00
2018-03-05 13:13:41 -08:00
2018-07-06 17:59:13 -07:00
2017-11-10 17:28:12 -08:00
2017-07-15 16:11:23 -07:00
2018-06-15 12:42:53 -07:00
2018-05-21 14:43:11 -07:00
2018-05-03 15:43:09 -07:00
2018-05-23 16:12:59 -07:00
2018-07-12 14:42:39 -07:00
2018-07-13 17:42:38 -07:00
2018-07-16 14:27:53 -07:00
2018-07-16 14:27:53 -07:00
2018-07-13 17:27:39 -07:00
2018-06-21 08:42:24 -07:00
2018-01-11 18:57:33 -08:00
2017-07-15 16:11:23 -07:00
2018-06-28 18:58:29 -07:00
2018-07-06 17:59:13 -07:00
2018-07-13 10:58:06 -07:00
2018-07-13 17:27:39 -07:00
2017-07-15 16:11:23 -07:00
2017-07-15 16:11:23 -07:00
2017-07-15 16:11:23 -07:00
2017-07-15 16:11:23 -07:00
2018-07-18 10:18:50 -07:00
2018-07-18 10:18:50 -07:00