Project

General

Profile

Rados - metadata-only journal mode » History » Version 12

Li Wang, 07/01/2015 10:04 AM

1 1 Li Wang
h1. Rados - metadata-only journal mode
2 2 Li Wang
3
*Summary*
4 7 Li Wang
Currently the Ceph community is thinking of eliminating the double write
5
penalty of write ahead logging, newstore is a great design which implements 
6
create, append operations in an copy on read way, while maintaining all
7
the original semantics. This makes newstore a general purpose optimization,
8
especially suitable for the write once scenarios. Metadata-only journal mode
9
intends to do in a more aggressive way, that is, not journal object data at all.
10
This applies to two major kinds of situations, one is that the atomicity for 
11
object data modification may not need, for example, RBD to simulate a disk
12
in cloud platform. The second is those double journaling situations, for example,
13
cache tiering, while cache pool has already provided the durability, when dirty 
14
objects are written back, they theoretically need not go through the journaling 
15
process of base pool, since the flusher could always replay the write operation. 
16
Metadata-only journal mode, to some extent, resembles the data=ordered journal 
17
mode in ext4. With such journal mode is on, object data are written directly to 
18
their ultimate location, when data written finished, metadata are written into the 
19
journal. It guarantees the consistency in terms of RADOS name space, and the data 
20
consistency among object copies. However, the object data may not be correct. 
21
Later we will demonstrate that this rarely happens.
22 2 Li Wang
23
*Owners*
24
25
Li Wang (liwang@ubuntukylin.com)
26 4 Li Wang
Yunchuan Wen (yunchuanwen@ubuntukylin.com)
27 2 Li Wang
Name
28
29
*Interested Parties*
30
If you are interested in contributing to this blueprint, or want to be a "speaker" during the Summit session, list your name here.
31
Name (Affiliation)
32
Name (Affiliation)
33
Name
34
35
*Current Status*
36
Please describe the current status of Ceph as it relates to this blueprint.  Is there something that this replaces?  Are there current features that are related?
37
38
*Detailed Description*
39 12 Li Wang
We have two options,
40
The first option:
41
The only revision lies in that it does not journal object data, when the transaction is committing, the data are written into object directly. In most cases, this will not introduce problem relying on the powerful peering and client resent mechanism. The only problematic situation is PG down as a whole, and client also down, in that case, the guest fs in the vm  will possibly recover it to consistent by fsck and journal replaying. So it just to leave scrub to find and fix this by randomly synchronize one of the copy to others.
42 1 Li Wang
43 12 Li Wang
The second option,
44
45 1 Li Wang
1 Submit transaction A into journal, add a record for <offset, length>
46 12 Li Wang
non-journaling data write in omap
47 8 Li Wang
2 Write data to object
48 12 Li Wang
3 Submit transaction B into journal, to update the metadata, and revert the operations of transaction A
49 8 Li Wang
50 1 Li Wang
As long as one osd in the pg has succeeded, the pg will be recovered to
51 12 Li Wang
a consistent and correct state by peering; If the pg down as a whole,
52 9 Li Wang
there are the following situations, 
53
(1) None of the osds finishes step 1, nothing happen; 
54 10 Li Wang
(2) At least one of the osds finishes step 3, journaling and
55 9 Li Wang
peering will recover the pg to a consistent and correct state; 
56
(3) none of the osds has finished step (3), and at least one of the osds has 
57
finished step (1), this is the only potentially problematical situation, 
58 12 Li Wang
in this case, peering will synchronize the omap record to other osds in the pg. 
59
For object read and write, if found the record, it will let the operation wait and
60
start a recovery to randomly choose one osd to synchronize its 
61
content of written area to other copies. During scrub, it will also check the record and do the recvery.
62 2 Li Wang
63
*Work items*
64
This section should contain a list of work tasks created by this blueprint.  Please include engineering tasks as well as related build/release and documentation work.  If this blueprint requires cleanup of deprecated features, please list those tasks as well.
65
66
*Coding tasks*
67
Task 1
68
Task 2
69
Task 3
70
71
*Build / release tasks*
72
Task 1
73
Task 2
74
Task 3
75
76
*Documentation tasks*
77
Task 1
78
Task 2
79
Task 3
80
81
*Deprecation tasks*
82
Task 1
83 1 Li Wang
Task 2
84
Task 3