Merge branch 'for-linus-4.8' of git://git.kernel.org/pub/scm/linux/kernel/git/mason...
[linux-2.6-block.git] / Documentation / device-mapper / cache-policies.txt
CommitLineData
f2836352
JT
1Guidance for writing policies
2=============================
3
4Try to keep transactionality out of it. The core is careful to
5avoid asking about anything that is migrating. This is a pain, but
6makes it easier to write the policies.
7
8Mappings are loaded into the policy at construction time.
9
10Every bio that is mapped by the target is referred to the policy.
11The policy can return a simple HIT or MISS or issue a migration.
12
13Currently there's no way for the policy to issue background work,
492d48db 14e.g. to start writing back dirty blocks that are going to be evicted
f2836352
JT
15soon.
16
17Because we map bios, rather than requests it's easy for the policy
18to get fooled by many small bios. For this reason the core target
19issues periodic ticks to the policy. It's suggested that the policy
20doesn't update states (eg, hit counts) for a block more than once
21for each tick. The core ticks by watching bios complete, and so
22trying to see when the io scheduler has let the ios run.
23
24
25Overview of supplied cache replacement policies
26===============================================
27
bccab6a0
MS
28multiqueue (mq)
29---------------
f2836352 30
9ed84698 31This policy is now an alias for smq (see below).
f2836352 32
9ed84698 33The following tunables are accepted, but have no effect:
01911c19 34
78e03d69
JT
35 'sequential_threshold <#nr_sequential_ios>'
36 'random_threshold <#nr_random_ios>'
37 'read_promote_adjustment <value>'
38 'write_promote_adjustment <value>'
39 'discard_promote_adjustment <value>'
f2836352 40
bccab6a0
MS
41Stochastic multiqueue (smq)
42---------------------------
43
44This policy is the default.
45
46The stochastic multi-queue (smq) policy addresses some of the problems
47with the multiqueue (mq) policy.
48
49The smq policy (vs mq) offers the promise of less memory utilization,
50improved performance and increased adaptability in the face of changing
492d48db 51workloads. smq also does not have any cumbersome tuning knobs.
bccab6a0
MS
52
53Users may switch from "mq" to "smq" simply by appropriately reloading a
54DM table that is using the cache target. Doing so will cause all of the
55mq policy's hints to be dropped. Also, performance of the cache may
56degrade slightly until smq recalculates the origin device's hotspots
57that should be cached.
58
59Memory usage:
492d48db 60The mq policy used a lot of memory; 88 bytes per cache block on a 64
bccab6a0
MS
61bit machine.
62
492d48db 63smq uses 28bit indexes to implement it's data structures rather than
bccab6a0 64pointers. It avoids storing an explicit hit count for each block. It
492d48db 65has a 'hotspot' queue, rather than a pre-cache, which uses a quarter of
bccab6a0
MS
66the entries (each hotspot block covers a larger area than a single
67cache block).
68
492d48db 69All this means smq uses ~25bytes per cache block. Still a lot of
bccab6a0
MS
70memory, but a substantial improvement nontheless.
71
72Level balancing:
492d48db
MS
73mq placed entries in different levels of the multiqueue structures
74based on their hit count (~ln(hit count)). This meant the bottom
75levels generally had the most entries, and the top ones had very
76few. Having unbalanced levels like this reduced the efficacy of the
bccab6a0
MS
77multiqueue.
78
492d48db
MS
79smq does not maintain a hit count, instead it swaps hit entries with
80the least recently used entry from the level above. The overall
bccab6a0
MS
81ordering being a side effect of this stochastic process. With this
82scheme we can decide how many entries occupy each multiqueue level,
83resulting in better promotion/demotion decisions.
84
85Adaptability:
492d48db 86The mq policy maintained a hit count for each cache block. For a
bccab6a0 87different block to get promoted to the cache it's hit count has to
492d48db 88exceed the lowest currently in the cache. This meant it could take a
bccab6a0 89long time for the cache to adapt between varying IO patterns.
bccab6a0 90
492d48db 91smq doesn't maintain hit counts, so a lot of this problem just goes
bccab6a0
MS
92away. In addition it tracks performance of the hotspot queue, which
93is used to decide which blocks to promote. If the hotspot queue is
94performing badly then it starts moving entries more quickly between
95levels. This lets it adapt to new IO patterns very quickly.
96
97Performance:
492d48db 98Testing smq shows substantially better performance than mq.
bccab6a0 99
8735a813
HM
100cleaner
101-------
102
103The cleaner writes back all dirty blocks in a cache to decommission it.
104
f2836352
JT
105Examples
106========
107
108The syntax for a table is:
109 cache <metadata dev> <cache dev> <origin dev> <block size>
110 <#feature_args> [<feature arg>]*
111 <policy> <#policy_args> [<policy arg>]*
112
113The syntax to send a message using the dmsetup command is:
114 dmsetup message <mapped device> 0 sequential_threshold 1024
115 dmsetup message <mapped device> 0 random_threshold 8
116
117Using dmsetup:
118 dmsetup create blah --table "0 268435456 cache /dev/sdb /dev/sdc \
119 /dev/sdd 512 0 mq 4 sequential_threshold 1024 random_threshold 8"
120 creates a 128GB large mapped device named 'blah' with the
121 sequential threshold set to 1024 and the random_threshold set to 8.