similar to: Can I move the disk image of the guest while it is running?

Displaying 20 results from an estimated 200 matches similar to: "Can I move the disk image of the guest while it is running?"

2013 Nov 13
1
Re: Lots of threads and increased IO load
On 2013-11-13 16:38, Eric Blake wrote: > I don't know if qemu exposes a knob for limiting the number of aio > helper threads it can spawn, or even if that is a good idea. Those threads do not cause any problems, the host is dealing with a lot of them and has no problem (CPU usage and load is incredibly low in practice). Thank you for the clarification, I see why are there more threads
2013 Nov 13
2
Lots of threads and increased IO load
Hello guys, We have a lot of small computers on top of two servers running QEMU/KVM virtualisation with libvirt. In this case, most of the VMs are not doing much work, some of them barely touches any "hardware" resources. I have two problems, they might be connected. When I do a bigger IO job on one of the VMs (like downloading files to local disk) all other VMs' IO load
2014 Feb 05
4
Re: Can I move the disk image of the guest while it is running?
Thank you Eric, On 2014-02-05 17:23, Eric Blake wrote: > Yes, live storage migration is possible; although at the moment, qemu is > lacking a way to restart the operation if it fails midstream, so libvirt > only allows the operation if you are willing to temporarily make your > guest transient. What does this mean? Will I loose anything if - for example - there is not enough space on
2013 Sep 24
2
Migrate hangs at 99%
Hello guys! We have a lot of virtual machines and I recently tried out the migrate feature of libvirt. It works like a charm, even without shared storage, but when we try to migrate a VM under a little pressure (a HTTP server gets some 1-5 requests/sec) the migration process hangs at 99%. After we stop the stressing of the VM, the migration immediately finishes. I'm using the following
2014 Feb 06
2
Re: Can I move the disk image of the guest while it is running?
----- Original Message ----- > From: "Eric Blake" <eblake@redhat.com> > To: "Andrew Martin" <amartin@xes-inc.com> > Cc: "Gergely Horváth" <gergely.horvath@inepex.com>, libvirt-users@redhat.com > Sent: Thursday, February 6, 2014 9:31:29 AM > Subject: Re: [libvirt-users] Can I move the disk image of the guest while it is running? >
2014 Feb 06
2
Re: Can I move the disk image of the guest while it is running?
----- Original Message ----- > From: "Eric Blake" <eblake@redhat.com> > To: "Gergely Horváth" <gergely.horvath@inepex.com>, libvirt-users@redhat.com > Sent: Wednesday, February 5, 2014 4:47:47 PM > Subject: Re: [libvirt-users] Can I move the disk image of the guest while it is running? > > On 02/05/2014 02:54 PM, Gergely Horváth wrote: > >
2014 Feb 06
0
Re: Can I move the disk image of the guest while it is running?
On 02/06/2014 01:25 PM, Andrew Martin wrote: > ----- Original Message ----- >> From: "Eric Blake" <eblake@redhat.com> >> To: "Andrew Martin" <amartin@xes-inc.com> >> Cc: "Gergely Horváth" <gergely.horvath@inepex.com>, libvirt-users@redhat.com >> Sent: Thursday, February 6, 2014 9:31:29 AM >> Subject: Re:
2020 Jan 28
2
Where does LTO remove unused functions?
Thanks! On Mon, Jan 27, 2020 at 6:05 PM Teresa Johnson <tejohnson at google.com> wrote: > By default even regular LTO now has module summaries (like the kind used > for ThinLTO). LTO will then run index based dead symbol analysis here: > http://llvm-cs.pcc.me.uk/lib/LTO/LTO.cpp#923. Then when linkRegularLTO is > called here: http://llvm-cs.pcc.me.uk/lib/LTO/LTO.cpp#935, it
2020 Jan 28
3
Where does LTO remove unused functions?
Hi! LLVM newbie here, I was mainly working on the frontend so far. We had a small hackathon project idea to piggyback on LTO to detect dead code (unused functions). The basic idea is to compile the code for every target and dump the removed functions. Intersect the function symbol names for each target and those functions should be safe to remove from the source code (unless there were some
2010 Dec 01
1
Wiener-Granger Causality Test in R
Hello dudes. I'm developing VAR analysis based on suggestions made by Horváth in its paper Canonical Correlation Analysis and Wiener-Granger Causality Tests. That's the reason I'm looking for if there's any R package to develop Wiener - Granger Causality Test. Thanks a lot for your unvaluable help. Regards from Mexico [[alternative HTML version deleted]]
2019 Sep 14
2
[GSoC 2019] Apply the Clang Static Analyzer to LLVM-based projects - final report
Hello, Le 29/08/2019 à 01:02, Artem Dergachev a écrit : > Yay thx! > > Sylvestre, is there anything i can help you with in order to get the reports page back up? Sorry, it took me a while to get that back but here is the report of r371718: https://llvm.org/reports/scan-build/ > I'd also indeed love to spam people with warnings that they introduced, even if in the form of a
2008 May 28
4
Help on Calculating day differences
Hello R Freaks, I calculate the difference in days between two events with the following litte R expresseion: T1a <- strptime(T1,"%m/%d/%y %H:%M:%S"); T2a <- strptime(T2,"%m/%d/%y %H:%M:%S"); T1b <- as.Date(T1a); T2b <- as.Date(T2a); days <- T2b-T1b; time <- T2a - T1a; In the project I would like to calculate only working day. I the a possibility to count
2020 Sep 09
4
Misleading information on main page about Centos Stream
On 09/09/2020 07:15, Dominik Holler wrote: > > > On Wed, Sep 9, 2020 at 4:05 AM Brian Stinson <brian at bstinson.com > <mailto:brian at bstinson.com>> wrote: > > __ > On Fri, Sep 4, 2020, at 14:26, Mason Loring Bliss wrote: >> On Mon, Aug 31, 2020 at 05:28:58PM -0400, Jonathan Billings wrote: >> >> > This is pretty
2011 Feb 24
2
[LLVMdev] Implementing platform specific library call simplification
On Feb 24, 2011, at 12:41 AM, John Criswell wrote: >>>> At the moment I've got this working locally by adding code to the >>>> simplify-libcalls pass. However this will break on targets where >>>> iprintf() isn't available. Is there a sensible place to add information >>>> about which library functions are available for a particular target?
2007 Apr 12
11
Test if view renders appropriate partial?
Hello, I am testing out a partial that calls another, general purpose partial as part of its processing. Is there a class I can mock in Rails views to accomplish what I need? That is, could I do something like the following: SomeClass.should_receive(:render).with(:partial => "foo", :locals => { :bars => bars }) I tried breakpointing the view, and it looks like I am greeted
2020 Aug 31
2
Misleading information on main page about Centos Stream
Not sure if this is a Docs issue or others... I came across this page: https://www.centos.org/centos-stream/ > CentOS Steam > > Rolling-release distro that tracks just ahead of Red Hat Enterprise Linux (RHEL) development, positioned as a midstream between Fedora Linux and RHEL. For anyone interested in participating and collaborating in the RHEL ecosystem, CentOS Stream is your
2005 Apr 19
2
Intro file automatically tagged on stream
Hi, I am looking for a solution for a short station ident to be included at the start of our stream file. Currently we have a short playlist, but this then doesn't work in itunes, and people can just click forward to go to the stream. I hear that this is possible in Shoutcast, so hopefully there is something similar in icecast. Yes I have asked this before and got our current solution
2008 Apr 11
3
Change target VBR on-the-fly?
Josh, Yes, you can change VBR quality or ABR average bitrate at any time. You don't need to do anything special. I use this feature (changing VBR quality midstream) from time to time and it's quite convenient. Tom Joshua Gargus <schwa at fastmail.us> wrote: > > Hi there (from speex-dev newbie), > > Is it possible to change the target VBR on the fly? The
2020 Sep 09
2
Misleading information on main page about Centos Stream
On Fri, Sep 4, 2020, at 14:26, Mason Loring Bliss wrote: > On Mon, Aug 31, 2020 at 05:28:58PM -0400, Jonathan Billings wrote: > > > This is pretty misleading. Isn't Stream just a collection of repos that > > offer pre-release packages for the next RHEL point release? It's not a > > midstream between Fedora and RHEL. > > Along those lines, if someone's
2005 May 05
2
Metadata Swapping: How do they do it?
Think I answered my own question really. The display in iTunes, for example, is swapping between what in status.xsl would be Stream Title and Current Song. If Song is updated like so: http://admin:password@myserver.pulverradio.com:8000/admin/metadata? mount=/high.mp3&mode=updinfo&song=ACDC+Back%20In%20Black ...then what exactly is the verbage to update StreamTitle?