2 # Migration test main engine
4 # Copyright (c) 2016 Red Hat, Inc.
6 # This library is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU Lesser General Public
8 # License as published by the Free Software Foundation; either
9 # version 2 of the License, or (at your option) any later version.
11 # This library is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # Lesser General Public License for more details.
16 # You should have received a copy of the GNU Lesser General Public
17 # License along with this library; if not, see <http://www.gnu.org/licenses/>.
26 sys
.path
.append(os
.path
.join(os
.path
.dirname(__file__
), '..', '..', '..', 'scripts'))
29 from guestperf
.progress
import Progress
, ProgressStats
30 from guestperf
.report
import Report
31 from guestperf
.timings
import TimingRecord
, Timings
36 def __init__(self
, binary
, dst_host
, kernel
, initrd
, transport
="tcp",
37 sleep
=15, verbose
=False, debug
=False):
39 self
._binary
= binary
# Path to QEMU binary
40 self
._dst
_host
= dst_host
# Hostname of target host
41 self
._kernel
= kernel
# Path to kernel image
42 self
._initrd
= initrd
# Path to stress initrd
43 self
._transport
= transport
# 'unix' or 'tcp' or 'rdma'
45 self
._verbose
= verbose
51 def _vcpu_timing(self
, pid
, tid_list
):
55 jiffies_per_sec
= os
.sysconf(os
.sysconf_names
['SC_CLK_TCK'])
57 statfile
= "/proc/%d/task/%d/stat" % (pid
, tid
)
58 with
open(statfile
, "r") as fh
:
60 fields
= stat
.split(" ")
61 stime
= int(fields
[13])
62 utime
= int(fields
[14])
63 records
.append(TimingRecord(tid
, now
, 1000 * (stime
+ utime
) / jiffies_per_sec
))
66 def _cpu_timing(self
, pid
):
70 jiffies_per_sec
= os
.sysconf(os
.sysconf_names
['SC_CLK_TCK'])
71 statfile
= "/proc/%d/stat" % pid
72 with
open(statfile
, "r") as fh
:
74 fields
= stat
.split(" ")
75 stime
= int(fields
[13])
76 utime
= int(fields
[14])
77 return TimingRecord(pid
, now
, 1000 * (stime
+ utime
) / jiffies_per_sec
)
79 def _migrate_progress(self
, vm
):
80 info
= vm
.command("query-migrate")
86 info
.get("status", "active"),
88 info
["ram"].get("transferred", 0),
89 info
["ram"].get("remaining", 0),
90 info
["ram"].get("total", 0),
91 info
["ram"].get("duplicate", 0),
92 info
["ram"].get("skipped", 0),
93 info
["ram"].get("normal", 0),
94 info
["ram"].get("normal-bytes", 0),
95 info
["ram"].get("dirty-pages-rate", 0),
96 info
["ram"].get("mbps", 0),
97 info
["ram"].get("dirty-sync-count", 0)
100 info
.get("total-time", 0),
101 info
.get("downtime", 0),
102 info
.get("expected-downtime", 0),
103 info
.get("setup-time", 0),
104 info
.get("x-cpu-throttle-percentage", 0),
107 def _migrate(self
, hardware
, scenario
, src
, dst
, connect_uri
):
110 src_pid
= src
.get_pid()
112 vcpus
= src
.command("query-cpus")
115 src_threads
.append(vcpu
["thread_id"])
117 # XXX how to get dst timings on remote host ?
120 print "Sleeping %d seconds for initial guest workload run" % self
._sleep
121 sleep_secs
= self
._sleep
122 while sleep_secs
> 1:
123 src_qemu_time
.append(self
._cpu
_timing
(src_pid
))
124 src_vcpu_time
.extend(self
._vcpu
_timing
(src_pid
, src_threads
))
129 print "Starting migration"
130 if scenario
._auto
_converge
:
131 resp
= src
.command("migrate-set-capabilities",
133 { "capability": "auto-converge",
136 resp
= src
.command("migrate-set-parameters",
137 x_cpu_throttle_increment
=scenario
._auto
_converge
_step
)
139 if scenario
._post
_copy
:
140 resp
= src
.command("migrate-set-capabilities",
142 { "capability": "postcopy-ram",
145 resp
= dst
.command("migrate-set-capabilities",
147 { "capability": "postcopy-ram",
151 resp
= src
.command("migrate_set_speed",
152 value
=scenario
._bandwidth
* 1024 * 1024)
154 resp
= src
.command("migrate_set_downtime",
155 value
=scenario
._downtime
/ 1024.0)
157 if scenario
._compression
_mt
:
158 resp
= src
.command("migrate-set-capabilities",
160 { "capability": "compress",
163 resp
= src
.command("migrate-set-parameters",
164 compress_threads
=scenario
._compression
_mt
_threads
)
165 resp
= dst
.command("migrate-set-capabilities",
167 { "capability": "compress",
170 resp
= dst
.command("migrate-set-parameters",
171 decompress_threads
=scenario
._compression
_mt
_threads
)
173 if scenario
._compression
_xbzrle
:
174 resp
= src
.command("migrate-set-capabilities",
176 { "capability": "xbzrle",
179 resp
= dst
.command("migrate-set-capabilities",
181 { "capability": "xbzrle",
184 resp
= src
.command("migrate-set-cache-size",
185 value
=(hardware
._mem
* 1024 * 1024 * 1024 / 100 *
186 scenario
._compression
_xbzrle
_cache
))
188 resp
= src
.command("migrate", uri
=connect_uri
)
193 progress_history
= []
201 progress
= self
._migrate
_progress
(src
)
203 src_qemu_time
.append(self
._cpu
_timing
(src_pid
))
204 src_vcpu_time
.extend(self
._vcpu
_timing
(src_pid
, src_threads
))
206 if (len(progress_history
) == 0 or
207 (progress_history
[-1]._ram
._iterations
<
208 progress
._ram
._iterations
)):
209 progress_history
.append(progress
)
211 if progress
._status
in ("completed", "failed", "cancelled"):
212 if progress
._status
== "completed" and paused
:
214 if progress_history
[-1] != progress
:
215 progress_history
.append(progress
)
217 if progress
._status
== "completed":
219 print "Sleeping %d seconds for final guest workload run" % self
._sleep
220 sleep_secs
= self
._sleep
221 while sleep_secs
> 1:
223 src_qemu_time
.append(self
._cpu
_timing
(src_pid
))
224 src_vcpu_time
.extend(self
._vcpu
_timing
(src_pid
, src_threads
))
227 return [progress_history
, src_qemu_time
, src_vcpu_time
]
229 if self
._verbose
and (loop
% 20) == 0:
230 print "Iter %d: remain %5dMB of %5dMB (total %5dMB @ %5dMb/sec)" % (
231 progress
._ram
._iterations
,
232 progress
._ram
._remaining
_bytes
/ (1024 * 1024),
233 progress
._ram
._total
_bytes
/ (1024 * 1024),
234 progress
._ram
._transferred
_bytes
/ (1024 * 1024),
235 progress
._ram
._transfer
_rate
_mbs
,
238 if progress
._ram
._iterations
> scenario
._max
_iters
:
240 print "No completion after %d iterations over RAM" % scenario
._max
_iters
241 src
.command("migrate_cancel")
244 if time
.time() > (start
+ scenario
._max
_time
):
246 print "No completion after %d seconds" % scenario
._max
_time
247 src
.command("migrate_cancel")
250 if (scenario
._post
_copy
and
251 progress
._ram
._iterations
>= scenario
._post
_copy
_iters
and
254 print "Switching to post-copy after %d iterations" % scenario
._post
_copy
_iters
255 resp
= src
.command("migrate-start-postcopy")
258 if (scenario
._pause
and
259 progress
._ram
._iterations
>= scenario
._pause
_iters
and
262 print "Pausing VM after %d iterations" % scenario
._pause
_iters
263 resp
= src
.command("stop")
266 def _get_common_args(self
, hardware
, tunnelled
=False):
272 "cgroup_disable=memory",
281 args
.append("ramsize=%s" % hardware
._mem
)
283 cmdline
= " ".join(args
)
285 cmdline
= "'" + cmdline
+ "'"
288 "-machine", "accel=kvm",
290 "-kernel", self
._kernel
,
291 "-initrd", self
._initrd
,
293 "-chardev", "stdio,id=cdev0",
294 "-device", "isa-serial,chardev=cdev0",
295 "-m", str((hardware
._mem
* 1024) + 512),
296 "-smp", str(hardware
._cpus
),
300 argv
.extend(["-device", "sga"])
302 if hardware
._prealloc
_pages
:
303 argv_source
+= ["-mem-path", "/dev/shm",
305 if hardware
._locked
_pages
:
306 argv_source
+= ["-realtime", "mlock=on"]
307 if hardware
._huge
_pages
:
312 def _get_src_args(self
, hardware
):
313 return self
._get
_common
_args
(hardware
)
315 def _get_dst_args(self
, hardware
, uri
):
317 if self
._dst
_host
!= "localhost":
319 argv
= self
._get
_common
_args
(hardware
, tunnelled
)
320 return argv
+ ["-incoming", uri
]
323 def _get_common_wrapper(cpu_bind
, mem_bind
):
325 if len(cpu_bind
) > 0 or len(mem_bind
) > 0:
326 wrapper
.append("numactl")
328 wrapper
.append("--physcpubind=%s" % ",".join(cpu_bind
))
330 wrapper
.append("--membind=%s" % ",".join(mem_bind
))
334 def _get_src_wrapper(self
, hardware
):
335 return self
._get
_common
_wrapper
(hardware
._src
_cpu
_bind
, hardware
._src
_mem
_bind
)
337 def _get_dst_wrapper(self
, hardware
):
338 wrapper
= self
._get
_common
_wrapper
(hardware
._dst
_cpu
_bind
, hardware
._dst
_mem
_bind
)
339 if self
._dst
_host
!= "localhost":
341 "-R", "9001:localhost:9001",
342 self
._dst
_host
] + wrapper
346 def _get_timings(self
, vm
):
353 regex
= r
"[^\s]+\s\((\d+)\):\sINFO:\s(\d+)ms\scopied\s\d+\sGB\sin\s(\d+)ms"
354 matcher
= re
.compile(regex
)
356 for line
in log
.split("\n"):
357 match
= matcher
.match(line
)
359 records
.append(TimingRecord(int(match
.group(1)),
360 int(match
.group(2)) / 1000.0,
361 int(match
.group(3))))
364 def run(self
, hardware
, scenario
, result_dir
=os
.getcwd()):
365 abs_result_dir
= os
.path
.join(result_dir
, scenario
._name
)
367 if self
._transport
== "tcp":
368 uri
= "tcp:%s:9000" % self
._dst
_host
369 elif self
._transport
== "rdma":
370 uri
= "rdma:%s:9000" % self
._dst
_host
371 elif self
._transport
== "unix":
372 if self
._dst
_host
!= "localhost":
373 raise Exception("Running use unix migration transport for non-local host")
374 uri
= "unix:/var/tmp/qemu-migrate-%d.migrate" % os
.getpid()
381 if self
._dst
_host
!= "localhost":
382 dstmonaddr
= ("localhost", 9001)
384 dstmonaddr
= "/var/tmp/qemu-dst-%d-monitor.sock" % os
.getpid()
385 srcmonaddr
= "/var/tmp/qemu-src-%d-monitor.sock" % os
.getpid()
387 src
= qemu
.QEMUMachine(self
._binary
,
388 args
=self
._get
_src
_args
(hardware
),
389 wrapper
=self
._get
_src
_wrapper
(hardware
),
390 name
="qemu-src-%d" % os
.getpid(),
391 monitor_address
=srcmonaddr
,
394 dst
= qemu
.QEMUMachine(self
._binary
,
395 args
=self
._get
_dst
_args
(hardware
, uri
),
396 wrapper
=self
._get
_dst
_wrapper
(hardware
),
397 name
="qemu-dst-%d" % os
.getpid(),
398 monitor_address
=dstmonaddr
,
405 ret
= self
._migrate
(hardware
, scenario
, src
, dst
, uri
)
406 progress_history
= ret
[0]
407 qemu_timings
= ret
[1]
408 vcpu_timings
= ret
[2]
409 if uri
[0:5] == "unix:":
412 print "Finished migration"
417 return Report(hardware
, scenario
, progress_history
,
418 Timings(self
._get
_timings
(src
) + self
._get
_timings
(dst
)),
419 Timings(qemu_timings
),
420 Timings(vcpu_timings
),
421 self
._binary
, self
._dst
_host
, self
._kernel
,
422 self
._initrd
, self
._transport
, self
._sleep
)
423 except Exception as e
:
425 print "Failed: %s" % str(e
)