[Bug 1228977] Re: n-cpu seems to crash when running with libvirt 1.0.6 from ubuntu cloud archive

2014-01-17 Thread Davanum Srinivas (DIMS)
ubuntu cloud archive now has libvirt at version 1.1.1 (specifically 1.1.1-0ubuntu8~cloud2). Looking at: http://ubuntu-cloud.archive.canonical.com/ubuntu/dists/precise-updates/havana/main/binary-i386/Packages -- You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 1228977] Re: n-cpu seems to crash when running with libvirt 1.0.6 from ubuntu cloud archive

2014-01-07 Thread Julien Danjou
Any progress on this? This is blocking Ceilometer testing. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1228977 Title: n-cpu seems to crash when running with libvirt 1.0.6 from ubuntu cloud

[Bug 1228977] Re: n-cpu seems to crash when running with libvirt 1.0.6 from ubuntu cloud archive

2014-01-07 Thread Jeremy Stanley
Note that we inadvertently tested libvirt from UCA on all our CI infrastructure today and ran into bug 1266711 (probably related). -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1228977 Title: n-cpu

[Bug 1228977] Re: n-cpu seems to crash when running with libvirt 1.0.6 from ubuntu cloud archive

2014-01-07 Thread Serge Hallyn
I don't think I've managed to reproduce this. I do get errors, but they seem to be VMS failing to start which is more likely due to other reasons. I tried to reproduce with the instructions in comment #7, and expected to get libvirt hung to the point that the script in comment #6 would hang.

[Bug 1228977] Re: n-cpu seems to crash when running with libvirt 1.0.6 from ubuntu cloud archive

2013-11-28 Thread Jeremy Stanley
I got a few minutes to recreate the failing test run and tarred up the screen-n-*.log files (attached) once it finished. ** Attachment added: Nova screen logs from failing tempest run https://bugs.launchpad.net/nova/+bug/1228977/+attachment/3919446/+files/screen-n-logs.tar.xz -- You

[Bug 1228977] Re: n-cpu seems to crash when running with libvirt 1.0.6 from ubuntu cloud archive

2013-11-28 Thread Jeremy Stanley
Adding the libvirt log as Chuck requested in IRC just now. ** Attachment added: libvirtd.log https://bugs.launchpad.net/nova/+bug/1228977/+attachment/3919471/+files/libvirtd.log -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 1228977] Re: n-cpu seems to crash when running with libvirt 1.0.6 from ubuntu cloud archive

2013-11-25 Thread Jeremy Stanley
Worth noting, when running full tempest on an 8GB DevStack VM in both Rackspace and HPCloud with Ubuntu Cloud Archive added to the sources list, I get numerous job failures with corresponding repetitions of this in the console: Traceback (most recent call last): File

[Bug 1228977] Re: n-cpu seems to crash when running with libvirt 1.0.6 from ubuntu cloud archive

2013-11-25 Thread Chuck Short
Anything in the nova-compute logs when this happens? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1228977 Title: n-cpu seems to crash when running with libvirt 1.0.6 from ubuntu cloud archive

[Bug 1228977] Re: n-cpu seems to crash when running with libvirt 1.0.6 from ubuntu cloud archive

2013-11-25 Thread Jeremy Stanley
Probably--I wasn't collecting logs, just confirming whether or not gating is going to break if we reenable UCA. If nobody with nova debugging experience or interest in using UCA/newer libvirt has time to repeat that experiment, I can recreate it and find/attach the service logs some time in the

[Bug 1228977] Re: n-cpu seems to crash when running with libvirt 1.0.6 from ubuntu cloud archive

2013-11-22 Thread Clark Boylan
Daniel Berrange is proposing that nova stop supporting libvirt older than 0.9.11 as libvirt should be able to provide pip installable python bindings for libvirt = 0.9.11. The vast majority of our test slaves run on precise which has libvirt 0.9.8 in the base install. The only sane way for us to

[Bug 1228977] Re: n-cpu seems to crash when running with libvirt 1.0.6 from ubuntu cloud archive

2013-10-11 Thread James Page
Please can this be retested using the 1.1.1 version we now have in cloud-archive for Havana. Thanks. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1228977 Title: n-cpu seems to crash when running

[Bug 1228977] Re: n-cpu seems to crash when running with libvirt 1.0.6 from ubuntu cloud archive

2013-09-27 Thread Jian Wen
I managed to reproduce it by using a smaller disk for my devstack VM. The backtrace of libvirtd is attached. Looks like it's related to https://bugzilla.redhat.com/show_bug.cgi?format=multipleid=929412 I guess I can reproduce the bug by deleting and creating instances with NWFilter configured

[Bug 1228977] Re: n-cpu seems to crash when running with libvirt 1.0.6 from ubuntu cloud archive

2013-09-26 Thread Jian Wen
Today, I created a new Ubuntu 12.04 VM with larger disk(20G). After tempest created and deleted 641 instances, it failed to reproduce the bug. Created about 440 instances with nova commit 2a3b923 which was merged today or yesterday . Created about 200 instances with nova commit ed8b470 which

[Bug 1228977] Re: n-cpu seems to crash when running with libvirt 1.0.6 from ubuntu cloud archive

2013-09-25 Thread Jian Wen
The following script will never end. #!/usr/bin/env python import libvirt import sys conn = libvirt.openReadOnly(None) if conn == None: print 'Failed to open connection to the hypervisor' sys.exit(1) num = conn.numOfDomains() # will never return ** Changed in: cloud-archive

[Bug 1228977] Re: n-cpu seems to crash when running with libvirt 1.0.6 from ubuntu cloud archive

2013-09-25 Thread Jian Wen
libvirt-bin 1.0.6-0ubuntu4~cloud0 The following script will never end. #!/usr/bin/env python import libvirt import sys conn = libvirt.openReadOnly(None) if conn == None: print 'Failed to open connection to the hypervisor' sys.exit(1) num = conn.numOfDomains() # will never return --

[Bug 1228977] Re: n-cpu seems to crash when running with libvirt 1.0.6 from ubuntu cloud archive

2013-09-25 Thread Jian Wen
Steps to reproduce: On a Ubuntu 12.04 server # use cloud archive havana sudo apt-get install ubuntu-cloud-keyring sudo su -c echo deb http://ubuntu-cloud.archive.canonical.com/ubuntu precise-updates/havana main /etc/apt/sources.list.d/OS_H_CA.list sudo apt-get update sudo apt-get install git

[Bug 1228977] Re: n-cpu seems to crash when running with libvirt 1.0.6 from ubuntu cloud archive

2013-09-25 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users. ** Changed in: libvirt (Ubuntu) Status: New = Confirmed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1228977 Title:

[Bug 1228977] Re: n-cpu seems to crash when running with libvirt 1.0.6 from ubuntu cloud archive

2013-09-25 Thread Serge Hallyn
I can't reproduce this by only installing qemu-kvm and libvirt-bin on precise with the cloud-archive. So it appears to be something which is exacerbated by configuration changes done by devstack. Can you reproduce this on saucy (which has libvirt 1.1.1)? -- You received this bug notification