Ian Pratt
2005-Mar-10 23:07 UTC
RE: [Xen-devel] out-of-memory problem when restoringballooneddomains
> No, unfortunately that didn''t help. (I was already running > 2.0-testing from this morning PST, so I guess I already had most > (all?) of the patches, but I guess it was worth a try...) > > Perhaps it is not related to memory... When I try > to restore only t1 and t3, they also fail with ''Error: 1''The main thing to look at is /var/log/xfrd.log Ian ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_ide95&alloc_id396&op=click _______________________________________________ Xen-devel mailing list Xen-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/xen-devel
Lars Rasmusson
2005-Mar-10 23:35 UTC
RE: [Xen-devel] out-of-memory problem when restoringballooneddomains
I think the relevant part from the log is this. xc_linux_restore start Could not create domain. pfns=460800, 1843200KB Could not create domain. pfns=460800, 1843200KB 4526 [INF] XFRD> Xfr service err=1 I''ve attached the log which is from a fresh reboot where I did # xm restore t1.saved # xm restore t2.saved # xm restore t3.saved Error: 1 /Lars On Thu, 2005-03-10 at 23:07 +0000, Ian Pratt wrote:> > No, unfortunately that didn''t help. (I was already running > > 2.0-testing from this morning PST, so I guess I already had most > > (all?) of the patches, but I guess it was worth a try...) > > > > Perhaps it is not related to memory... When I try > > to restore only t1 and t3, they also fail with ''Error: 1'' > > The main thing to look at is /var/log/xfrd.log > > Ian > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real users. > Discover which products truly live up to the hype. Start reading now. > http://ads.osdn.com/?ad_ide95&alloc_id396&op=click > _______________________________________________ > Xen-devel mailing list > Xen-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/xen-devel
Mark A. Williamson
2005-Mar-10 23:56 UTC
Re: [Xen-devel] out-of-memory problem when restoringballooneddomains
> xc_linux_restore start > Could not create domain. pfns=460800, 1843200KB > Could not create domain. pfns=460800, 1843200KB > 4526 [INF] XFRD> Xfr service err=1Ahhhhhh, that explains it. tools/libxc/xc_linux_restore.c::xc_linux_restore() restores a domain by first reserving its peak reservation, then loading the memory image, then returning previously ballooned pages to Xen. You don''t have enough memory to satisfy the peak, so it won''t restore :-( The restore code will need working to handle this case (I''m afraid I don''t have the spare cycles to do so myself). Cheers, Mark> > > I''ve attached the log which is from a fresh reboot > where I did > > # xm restore t1.saved > # xm restore t2.saved > # xm restore t3.saved > Error: 1 > > > > /Lars > > On Thu, 2005-03-10 at 23:07 +0000, Ian Pratt wrote: > > > No, unfortunately that didn''t help. (I was already running > > > 2.0-testing from this morning PST, so I guess I already had most > > > (all?) of the patches, but I guess it was worth a try...) > > > > > > Perhaps it is not related to memory... When I try > > > to restore only t1 and t3, they also fail with ''Error: 1'' > > > > The main thing to look at is /var/log/xfrd.log > > > > Ian > > > > > > ------------------------------------------------------- > > SF email is sponsored by - The IT Product Guide > > Read honest & candid reviews on hundreds of IT Products from real users. > > Discover which products truly live up to the hype. Start reading now. > > http://ads.osdn.com/?ad_ide95&alloc_id396&op=click > > _______________________________________________ > > Xen-devel mailing list > > Xen-devel@lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/xen-devel------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ Xen-devel mailing list Xen-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/xen-devel
Keir Fraser
2005-Mar-11 08:26 UTC
Re: [Xen-devel] out-of-memory problem when restoringballooneddomains
On 10 Mar 2005, at 23:35, Lars Rasmusson wrote:> I think the relevant part from the log is this. > > xc_linux_restore start > Could not create domain. pfns=460800, 1843200KB > Could not create domain. pfns=460800, 1843200KB > 4526 [INF] XFRD> Xfr service err=1Ah! The problem is that we initially create the domain with its ''maximum possible'' memory allocation, and then automatically ''balloon it down'' at the end of the restore operation. Of course by the third domain you do not have 1.8GB of headroom and so the third restore fails. This probably made live relocation easier to implement, but we need to change this to allocate only the memory that the domain is currently using during each round of pre-copy migration. Getting non-live moved over is the first step, and then fix live relocation, I guess. -- Keir ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ Xen-devel mailing list Xen-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/xen-devel
Lars Rasmusson
2005-May-04 21:34 UTC
Re: [Xen-devel] out-of-memory problem when restoringballooneddomains
Hi, about two months ago I inquired about if xen could restore (or migrate) a *ballooned* domain if its unballoned size won''t fit. Example: on a 2G machine xm create domain1 memory=1500 xm balloon domain1 128 xm save domain1 saved1 xm create domain2 memory=1500 xm restore saved1 *** BEEP! Xen refuses *** Is there any news on this issue? I think this would be a very useful feature to have. Even better would be if one could boot a machine giving it the impression pf having the whole memory space but without actually ever giving it all of memory, something like xm create domain1 memory=1500 balloon=128 if you see what I mean. Anyway, thanks for all the cool stuff you''re doing! /Lars On Fri, 11 Mar 2005, Keir Fraser wrote:> > On 10 Mar 2005, at 23:35, Lars Rasmusson wrote: > > > I think the relevant part from the log is this. > > > > xc_linux_restore start > > Could not create domain. pfns=460800, 1843200KB > > Could not create domain. pfns=460800, 1843200KB > > 4526 [INF] XFRD> Xfr service err=1 > > Ah! The problem is that we initially create the domain with its > ''maximum possible'' memory allocation, and then automatically ''balloon > it down'' at the end of the restore operation. Of course by the third > domain you do not have 1.8GB of headroom and so the third restore > fails. > > This probably made live relocation easier to implement, but we need to > change this to allocate only the memory that the domain is currently > using during each round of pre-copy migration. Getting non-live moved > over is the first step, and then fix live relocation, I guess. > > -- Keir > > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real users. > Discover which products truly live up to the hype. Start reading now. > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > _______________________________________________ > Xen-devel mailing list > Xen-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/xen-devel >_______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Kip Macy
2005-May-04 22:24 UTC
Re: [Xen-devel] out-of-memory problem when restoringballooneddomains
If it doesn''t work already it is a neccessity long term to leverage Xen for zero downtime upgrades. Otherwise you end up having to leave spare capacity available to ensure that a guest can be migrated. -Kip On 5/4/05, Lars Rasmusson <Lars.Rasmusson@hp.com> wrote:> > Hi, about two months ago I inquired about if xen could restore (or > migrate) a *ballooned* domain if its unballoned size won''t fit. > > Example: on a 2G machine > > xm create domain1 memory=1500 > xm balloon domain1 128 > xm save domain1 saved1 > > xm create domain2 memory=1500 > > xm restore saved1 > *** BEEP! Xen refuses *** > > Is there any news on this issue? > > I think this would be a very useful feature to have. > > Even better would be if one could boot a machine giving it the impression > pf having the whole memory space but without actually ever giving it all > of memory, something like > > xm create domain1 memory=1500 balloon=128 > > if you see what I mean. > > Anyway, thanks for all the cool stuff you''re doing! > > /Lars > > > On Fri, 11 Mar 2005, Keir Fraser wrote: > > > > > On 10 Mar 2005, at 23:35, Lars Rasmusson wrote: > > > > > I think the relevant part from the log is this. > > > > > > xc_linux_restore start > > > Could not create domain. pfns=460800, 1843200KB > > > Could not create domain. pfns=460800, 1843200KB > > > 4526 [INF] XFRD> Xfr service err=1 > > > > Ah! The problem is that we initially create the domain with its > > ''maximum possible'' memory allocation, and then automatically ''balloon > > it down'' at the end of the restore operation. Of course by the third > > domain you do not have 1.8GB of headroom and so the third restore > > fails. > > > > This probably made live relocation easier to implement, but we need to > > change this to allocate only the memory that the domain is currently > > using during each round of pre-copy migration. Getting non-live moved > > over is the first step, and then fix live relocation, I guess. > > > > -- Keir > > > > > > > > ------------------------------------------------------- > > SF email is sponsored by - The IT Product Guide > > Read honest & candid reviews on hundreds of IT Products from real users. > > Discover which products truly live up to the hype. Start reading now. > > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > > _______________________________________________ > > Xen-devel mailing list > > Xen-devel@lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/xen-devel > > > > _______________________________________________ > Xen-devel mailing list > Xen-devel@lists.xensource.com > http://lists.xensource.com/xen-devel >_______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Mark Williamson
2005-May-05 02:54 UTC
Re: [Xen-devel] out-of-memory problem when restoringballooneddomains
> Even better would be if one could boot a machine giving it the impression > pf having the whole memory space but without actually ever giving it all > of memory, something like > > xm create domain1 memory=1500 balloon=128 > > if you see what I mean.I''m not sure I do - could you elaborate ;-) Cheers, Mark> Anyway, thanks for all the cool stuff you''re doing! > > /Lars > > On Fri, 11 Mar 2005, Keir Fraser wrote: > > On 10 Mar 2005, at 23:35, Lars Rasmusson wrote: > > > I think the relevant part from the log is this. > > > > > > xc_linux_restore start > > > Could not create domain. pfns=460800, 1843200KB > > > Could not create domain. pfns=460800, 1843200KB > > > 4526 [INF] XFRD> Xfr service err=1 > > > > Ah! The problem is that we initially create the domain with its > > ''maximum possible'' memory allocation, and then automatically ''balloon > > it down'' at the end of the restore operation. Of course by the third > > domain you do not have 1.8GB of headroom and so the third restore > > fails. > > > > This probably made live relocation easier to implement, but we need to > > change this to allocate only the memory that the domain is currently > > using during each round of pre-copy migration. Getting non-live moved > > over is the first step, and then fix live relocation, I guess. > > > > -- Keir > > > > > > > > ------------------------------------------------------- > > SF email is sponsored by - The IT Product Guide > > Read honest & candid reviews on hundreds of IT Products from real users. > > Discover which products truly live up to the hype. Start reading now. > > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > > _______________________________________________ > > Xen-devel mailing list > > Xen-devel@lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/xen-devel > > _______________________________________________ > Xen-devel mailing list > Xen-devel@lists.xensource.com > http://lists.xensource.com/xen-devel_______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel