1 from __future__
import print_function
3 # Migration test main engine
5 # Copyright (c) 2016 Red Hat, Inc.
7 # This library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Lesser General Public
9 # License as published by the Free Software Foundation; either
10 # version 2 of the License, or (at your option) any later version.
12 # This library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # Lesser General Public License for more details.
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with this library; if not, see <http://www.gnu.org/licenses/>.
27 sys
.path
.append(os
.path
.join(os
.path
.dirname(__file__
), '..', '..', '..', 'scripts'))
30 from guestperf
.progress
import Progress
, ProgressStats
31 from guestperf
.report
import Report
32 from guestperf
.timings
import TimingRecord
, Timings
37 def __init__(self
, binary
, dst_host
, kernel
, initrd
, transport
="tcp",
38 sleep
=15, verbose
=False, debug
=False):
40 self
._binary
= binary
# Path to QEMU binary
41 self
._dst
_host
= dst_host
# Hostname of target host
42 self
._kernel
= kernel
# Path to kernel image
43 self
._initrd
= initrd
# Path to stress initrd
44 self
._transport
= transport
# 'unix' or 'tcp' or 'rdma'
46 self
._verbose
= verbose
52 def _vcpu_timing(self
, pid
, tid_list
):
56 jiffies_per_sec
= os
.sysconf(os
.sysconf_names
['SC_CLK_TCK'])
58 statfile
= "/proc/%d/task/%d/stat" % (pid
, tid
)
59 with
open(statfile
, "r") as fh
:
61 fields
= stat
.split(" ")
62 stime
= int(fields
[13])
63 utime
= int(fields
[14])
64 records
.append(TimingRecord(tid
, now
, 1000 * (stime
+ utime
) / jiffies_per_sec
))
67 def _cpu_timing(self
, pid
):
71 jiffies_per_sec
= os
.sysconf(os
.sysconf_names
['SC_CLK_TCK'])
72 statfile
= "/proc/%d/stat" % pid
73 with
open(statfile
, "r") as fh
:
75 fields
= stat
.split(" ")
76 stime
= int(fields
[13])
77 utime
= int(fields
[14])
78 return TimingRecord(pid
, now
, 1000 * (stime
+ utime
) / jiffies_per_sec
)
80 def _migrate_progress(self
, vm
):
81 info
= vm
.command("query-migrate")
87 info
.get("status", "active"),
89 info
["ram"].get("transferred", 0),
90 info
["ram"].get("remaining", 0),
91 info
["ram"].get("total", 0),
92 info
["ram"].get("duplicate", 0),
93 info
["ram"].get("skipped", 0),
94 info
["ram"].get("normal", 0),
95 info
["ram"].get("normal-bytes", 0),
96 info
["ram"].get("dirty-pages-rate", 0),
97 info
["ram"].get("mbps", 0),
98 info
["ram"].get("dirty-sync-count", 0)
101 info
.get("total-time", 0),
102 info
.get("downtime", 0),
103 info
.get("expected-downtime", 0),
104 info
.get("setup-time", 0),
105 info
.get("x-cpu-throttle-percentage", 0),
108 def _migrate(self
, hardware
, scenario
, src
, dst
, connect_uri
):
111 src_pid
= src
.get_pid()
113 vcpus
= src
.command("query-cpus")
116 src_threads
.append(vcpu
["thread_id"])
118 # XXX how to get dst timings on remote host ?
121 print("Sleeping %d seconds for initial guest workload run" % self
._sleep
)
122 sleep_secs
= self
._sleep
123 while sleep_secs
> 1:
124 src_qemu_time
.append(self
._cpu
_timing
(src_pid
))
125 src_vcpu_time
.extend(self
._vcpu
_timing
(src_pid
, src_threads
))
130 print("Starting migration")
131 if scenario
._auto
_converge
:
132 resp
= src
.command("migrate-set-capabilities",
134 { "capability": "auto-converge",
137 resp
= src
.command("migrate-set-parameters",
138 x_cpu_throttle_increment
=scenario
._auto
_converge
_step
)
140 if scenario
._post
_copy
:
141 resp
= src
.command("migrate-set-capabilities",
143 { "capability": "postcopy-ram",
146 resp
= dst
.command("migrate-set-capabilities",
148 { "capability": "postcopy-ram",
152 resp
= src
.command("migrate_set_speed",
153 value
=scenario
._bandwidth
* 1024 * 1024)
155 resp
= src
.command("migrate_set_downtime",
156 value
=scenario
._downtime
/ 1024.0)
158 if scenario
._compression
_mt
:
159 resp
= src
.command("migrate-set-capabilities",
161 { "capability": "compress",
164 resp
= src
.command("migrate-set-parameters",
165 compress_threads
=scenario
._compression
_mt
_threads
)
166 resp
= dst
.command("migrate-set-capabilities",
168 { "capability": "compress",
171 resp
= dst
.command("migrate-set-parameters",
172 decompress_threads
=scenario
._compression
_mt
_threads
)
174 if scenario
._compression
_xbzrle
:
175 resp
= src
.command("migrate-set-capabilities",
177 { "capability": "xbzrle",
180 resp
= dst
.command("migrate-set-capabilities",
182 { "capability": "xbzrle",
185 resp
= src
.command("migrate-set-cache-size",
186 value
=(hardware
._mem
* 1024 * 1024 * 1024 / 100 *
187 scenario
._compression
_xbzrle
_cache
))
189 resp
= src
.command("migrate", uri
=connect_uri
)
194 progress_history
= []
202 progress
= self
._migrate
_progress
(src
)
204 src_qemu_time
.append(self
._cpu
_timing
(src_pid
))
205 src_vcpu_time
.extend(self
._vcpu
_timing
(src_pid
, src_threads
))
207 if (len(progress_history
) == 0 or
208 (progress_history
[-1]._ram
._iterations
<
209 progress
._ram
._iterations
)):
210 progress_history
.append(progress
)
212 if progress
._status
in ("completed", "failed", "cancelled"):
213 if progress
._status
== "completed" and paused
:
215 if progress_history
[-1] != progress
:
216 progress_history
.append(progress
)
218 if progress
._status
== "completed":
220 print("Sleeping %d seconds for final guest workload run" % self
._sleep
)
221 sleep_secs
= self
._sleep
222 while sleep_secs
> 1:
224 src_qemu_time
.append(self
._cpu
_timing
(src_pid
))
225 src_vcpu_time
.extend(self
._vcpu
_timing
(src_pid
, src_threads
))
228 return [progress_history
, src_qemu_time
, src_vcpu_time
]
230 if self
._verbose
and (loop
% 20) == 0:
231 print("Iter %d: remain %5dMB of %5dMB (total %5dMB @ %5dMb/sec)" % (
232 progress
._ram
._iterations
,
233 progress
._ram
._remaining
_bytes
/ (1024 * 1024),
234 progress
._ram
._total
_bytes
/ (1024 * 1024),
235 progress
._ram
._transferred
_bytes
/ (1024 * 1024),
236 progress
._ram
._transfer
_rate
_mbs
,
239 if progress
._ram
._iterations
> scenario
._max
_iters
:
241 print("No completion after %d iterations over RAM" % scenario
._max
_iters
)
242 src
.command("migrate_cancel")
245 if time
.time() > (start
+ scenario
._max
_time
):
247 print("No completion after %d seconds" % scenario
._max
_time
)
248 src
.command("migrate_cancel")
251 if (scenario
._post
_copy
and
252 progress
._ram
._iterations
>= scenario
._post
_copy
_iters
and
255 print("Switching to post-copy after %d iterations" % scenario
._post
_copy
_iters
)
256 resp
= src
.command("migrate-start-postcopy")
259 if (scenario
._pause
and
260 progress
._ram
._iterations
>= scenario
._pause
_iters
and
263 print("Pausing VM after %d iterations" % scenario
._pause
_iters
)
264 resp
= src
.command("stop")
267 def _get_common_args(self
, hardware
, tunnelled
=False):
273 "cgroup_disable=memory",
282 args
.append("ramsize=%s" % hardware
._mem
)
284 cmdline
= " ".join(args
)
286 cmdline
= "'" + cmdline
+ "'"
289 "-machine", "accel=kvm",
291 "-kernel", self
._kernel
,
292 "-initrd", self
._initrd
,
294 "-chardev", "stdio,id=cdev0",
295 "-device", "isa-serial,chardev=cdev0",
296 "-m", str((hardware
._mem
* 1024) + 512),
297 "-smp", str(hardware
._cpus
),
301 argv
.extend(["-device", "sga"])
303 if hardware
._prealloc
_pages
:
304 argv_source
+= ["-mem-path", "/dev/shm",
306 if hardware
._locked
_pages
:
307 argv_source
+= ["-realtime", "mlock=on"]
308 if hardware
._huge
_pages
:
313 def _get_src_args(self
, hardware
):
314 return self
._get
_common
_args
(hardware
)
316 def _get_dst_args(self
, hardware
, uri
):
318 if self
._dst
_host
!= "localhost":
320 argv
= self
._get
_common
_args
(hardware
, tunnelled
)
321 return argv
+ ["-incoming", uri
]
324 def _get_common_wrapper(cpu_bind
, mem_bind
):
326 if len(cpu_bind
) > 0 or len(mem_bind
) > 0:
327 wrapper
.append("numactl")
329 wrapper
.append("--physcpubind=%s" % ",".join(cpu_bind
))
331 wrapper
.append("--membind=%s" % ",".join(mem_bind
))
335 def _get_src_wrapper(self
, hardware
):
336 return self
._get
_common
_wrapper
(hardware
._src
_cpu
_bind
, hardware
._src
_mem
_bind
)
338 def _get_dst_wrapper(self
, hardware
):
339 wrapper
= self
._get
_common
_wrapper
(hardware
._dst
_cpu
_bind
, hardware
._dst
_mem
_bind
)
340 if self
._dst
_host
!= "localhost":
342 "-R", "9001:localhost:9001",
343 self
._dst
_host
] + wrapper
347 def _get_timings(self
, vm
):
354 regex
= r
"[^\s]+\s\((\d+)\):\sINFO:\s(\d+)ms\scopied\s\d+\sGB\sin\s(\d+)ms"
355 matcher
= re
.compile(regex
)
357 for line
in log
.split("\n"):
358 match
= matcher
.match(line
)
360 records
.append(TimingRecord(int(match
.group(1)),
361 int(match
.group(2)) / 1000.0,
362 int(match
.group(3))))
365 def run(self
, hardware
, scenario
, result_dir
=os
.getcwd()):
366 abs_result_dir
= os
.path
.join(result_dir
, scenario
._name
)
368 if self
._transport
== "tcp":
369 uri
= "tcp:%s:9000" % self
._dst
_host
370 elif self
._transport
== "rdma":
371 uri
= "rdma:%s:9000" % self
._dst
_host
372 elif self
._transport
== "unix":
373 if self
._dst
_host
!= "localhost":
374 raise Exception("Running use unix migration transport for non-local host")
375 uri
= "unix:/var/tmp/qemu-migrate-%d.migrate" % os
.getpid()
382 if self
._dst
_host
!= "localhost":
383 dstmonaddr
= ("localhost", 9001)
385 dstmonaddr
= "/var/tmp/qemu-dst-%d-monitor.sock" % os
.getpid()
386 srcmonaddr
= "/var/tmp/qemu-src-%d-monitor.sock" % os
.getpid()
388 src
= qemu
.QEMUMachine(self
._binary
,
389 args
=self
._get
_src
_args
(hardware
),
390 wrapper
=self
._get
_src
_wrapper
(hardware
),
391 name
="qemu-src-%d" % os
.getpid(),
392 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
)
404 ret
= self
._migrate
(hardware
, scenario
, src
, dst
, uri
)
405 progress_history
= ret
[0]
406 qemu_timings
= ret
[1]
407 vcpu_timings
= ret
[2]
408 if uri
[0:5] == "unix:":
411 print("Finished migration")
416 return Report(hardware
, scenario
, progress_history
,
417 Timings(self
._get
_timings
(src
) + self
._get
_timings
(dst
)),
418 Timings(qemu_timings
),
419 Timings(vcpu_timings
),
420 self
._binary
, self
._dst
_host
, self
._kernel
,
421 self
._initrd
, self
._transport
, self
._sleep
)
422 except Exception as e
:
424 print("Failed: %s" % str(e
))