Friday, 2012-02-24

*** Yak-n-Yeti has joined #openstack00:08
*** fikus-kukis^TP has quit IRC00:12
*** fikus-kukis^TP1 has joined #openstack00:13
*** willaerk has quit IRC00:13
*** anotherjesse1 has left #openstack00:15
*** Ryan_Lane is now known as Ryan_Lane|away00:15
*** asavu has quit IRC00:17
*** nati2 has quit IRC00:18
*** Yak-n-Yeti has quit IRC00:20
*** cp16net has joined #openstack00:24
*** albert23 has left #openstack00:25
*** aspiers has quit IRC00:29
*** FlipFlop_ has quit IRC00:35
*** littleidea has joined #openstack00:37
*** rnorwood has joined #openstack00:39
*** aspiers has joined #openstack00:42
*** Ryan_Lane|away is now known as Ryan_Lane00:45
*** markvoelker has joined #openstack00:46
*** dolphm has quit IRC00:46
*** markvoelker has quit IRC00:46
*** dolphm has joined #openstack00:47
*** tomoe_ has quit IRC00:47
*** chadh_ is now known as chadh00:49
*** jj0hns0n has quit IRC00:53
*** p0 has quit IRC00:55
*** jj0hns0n has joined #openstack00:56
*** andrewbogott is now known as andrewbogott_afk00:57
*** clopez has joined #openstack00:58
*** dolphm has quit IRC00:59
*** Yak-n-Yeti has joined #openstack01:00
*** dolphm_ has joined #openstack01:02
*** gyee has quit IRC01:06
*** dolphm_ has quit IRC01:10
*** dolphm has joined #openstack01:11
*** longhudou has joined #openstack01:11
*** hhoover has quit IRC01:12
*** krow has quit IRC01:14
*** dpippenger has quit IRC01:14
*** ahasenack has quit IRC01:15
*** longhudou has quit IRC01:16
*** bsza has quit IRC01:17
*** mdomsch has joined #openstack01:17
*** anotherjesse1 has joined #openstack01:20
*** jj0hns0n_ has joined #openstack01:20
*** randomubuntuguy has joined #openstack01:20
*** clauden_ has quit IRC01:21
*** jj0hns0n_ has joined #openstack01:21
*** jj0hns0n has quit IRC01:22
*** jj0hns0n_ is now known as jj0hns0n01:22
*** jj0hns0n has quit IRC01:22
*** krow has joined #openstack01:22
*** pixelbeat has quit IRC01:22
*** kordless has quit IRC01:22
*** rnorwood has quit IRC01:26
*** kordless has joined #openstack01:27
*** jdurgin has quit IRC01:28
*** jakedahn has quit IRC01:29
justinsbfri096, technologov_, clayg: Just added basic swift support to the Java bindings Luis & I are developing.  Please let me know what's missing: openstack-api/src/test/java/org/openstack/client/storage/01:30
uvirtbot`New bug: #939982 in swift "Metadata keys are not case sensitive" [Undecided,New] https://launchpad.net/bugs/93998201:31
justinsbfri096, technologov_, clayg: Sorry - wrong link!  https://github.com/justinsb/openstack-java-sdk/commit/29d1f4437603d274d4773e2f3cbcbab330674b7d01:31
technologov_justinsb, how Java bindings for python work ? via HTTP protocol ?01:31
*** joearnold has joined #openstack01:31
technologov_usually C code can have a compiled Java or python bindings...01:31
technologov_but if the basic code is in python... then ?01:32
justinsbtechnologov_: Sorry, I mean a client library for the Openstack REST protocols01:32
justinsbtechnologov_: So you can use Swift, Nova etc from Java code01:32
technologov_justinsb, is this Java bindings auto-generated ? (assuming we change python implementation & protocol)01:33
technologov_(for C code, the answer is "Yes")01:33
justinsbtechnologov_: Not auto-generated.  You can change the implementation all you want.  The protocol isn't allowed to change once it is released.01:34
*** joearnold has quit IRC01:34
*** bit0 has joined #openstack01:34
technologov_justinsb, but for next major release, protocol can change, right ?01:34
*** koolhead17 has quit IRC01:35
justinsbtechnologov_: Another protocol can be added.  But once a protocol is released, it should be supported 'forever'01:35
technologov_so this Java bindings are manually written to support a specific (current) protocol01:35
*** rnorwood has joined #openstack01:35
technologov_I just compare this to C/C++, and see that all bindings are auto-generated there01:36
justinsbtechnologov_: They are written to the API specification, with some tweaks where the API specification is wrong.01:36
technologov_I wonder if this is possible for python based libs also...01:36
justinsbtechnologov_: Which C binding are you referring to?01:36
*** andrewsben has quit IRC01:36
notmynametechnologov_: the protocol is always HTTP. the API is what certain HTTP verbs do. released versions of a project must always handle migration paths if the API changes. the protocol will likely never change01:36
technologov_justinsb, all... libvirt-python, python-qt4, virtualbox-python (VBoxPython), .. all bindings are auto-generated if basic lib is in C/C++01:37
technologov_even if protocols change in drastic ways (as they do in VirtualBox)01:37
justinsbtechnologov_: OK, that's a little different... that's python talking to C01:37
justinsbtechnologov_: Here we're talking about Java code talking to an HTTP REST API01:38
justinsbtechnologov_: It _should_ be possible to auto-generate that as well, but we'd need a correct specification of the protocol01:38
justinsbtechnologov_: We are hoping to produce a correct specification as a byproduct of the Java bindings :-)01:38
technologov_also if API never changes, does it implies that all future versions of OpenStack could, for example, get data from "Diablo" Swift ?01:39
*** paltman_ is now known as paltman01:40
technologov_or Swift must match all other components ?01:40
*** yaguang has joined #openstack01:40
*** ohnoimdead has quit IRC01:41
technologov_...a similar question, BTW, was raised by CERN scientists of "Scientific Linux" project.01:41
notmynametechnologov_: I can speak to swift specifically (and swift alone, actually). swift is running in production in many places. we cannot change the API in such a way that it break clients. we can only add things to the API01:43
*** krow has quit IRC01:44
technologov_hmm. fine.01:45
notmynameif we were to break the API for existing clients, it would have to be done in such a way that there would be a smooth (and long) migration process01:45
justinsbtechnologov_: I guess that's an implementation question.  Each server should speak all historic versions.  Clients do not need to speak all versions.  If they rely on functionality in v3, they can't work with v2.01:45
technologov_notmyname, i.e. by deprecating APIs first...01:45
*** Blackavar has quit IRC01:45
notmynametechnologov_: this is one reason that we don't accept patches into swift that don't have a migration path. all updates must not prevent upgrading a live cluster with zero downtime01:45
notmynamethe "guarantee" you have there is that most of the swift devs work for rackspace and rackspace has a very strong interest not to break all the clients (a very large userbase) for a major product line01:47
notmynamerackspace also has a very strong interest in not maintaining a separate fork or patch queue01:47
technologov_ok, nice. How does swift relates to nova-object ?01:50
technologov_...I can't find much info on the issue01:50
notmynametechnologov_: I think (but could be wrong), that nova object is an older, deprecated part of nova01:51
*** msavy has quit IRC01:51
notmynamevishy: ^?01:51
technologov_thanks01:53
notmynametechnologov_: think of nova and swift as two separate (but complementary) pieces. their integration is mostly around use-cases, not code. for example, you could use a nova cluster to process data in swift or you could use swift to store all the images for a nova cluster. these are just 2 possibilities, though. you could use one without the other01:54
technologov_to me it looks like "nova" as the basic (parent) projects, while the "children" projects can "override" own father, much like C++/python class inheritance01:57
technologov_so glance + swift override storage parts of nova01:57
technologov_quantum overrides nova-network, and so on...01:57
notmynametechnologov_: that's a perception (re swift) I've heard a few places, but I don't think it's accurate01:57
*** reed_ has quit IRC01:59
notmynamesome projects in openstack are like that (nova-network, nova-volumes, etc). but glance is a complementary part of nova (is glance required for nova?). keystone's goal is to tie together identity for all of the projects.02:00
*** aspiers has quit IRC02:00
technologov_nothing is *required* for nova02:00
notmynameswift handles object storage, something that doesn't really fit in a compute cluster. that is, when you have VMs, you need to tie them to a network, provide network access, etc, but "object storage" isn't a traditional part of a VM02:00
technologov_But all children override parts of nova02:00
technologov_traditional part is a block storage...02:01
notmynameyes. that's nova-volume02:01
*** adjohn has joined #openstack02:02
notmynameand there are a few nova-volume plugins that are being developed02:02
WormMan(which hopefully will prevent my users from stopping asking about the basic nova-volume stuff)02:03
*** dprince has joined #openstack02:06
*** Ryan_Lane has quit IRC02:07
notmynameIMO, openstack should answer 3 questions: "how do I manage thousands of VMs?", "how do I manage PB of data?", and "how do I deliver content to a worldwide audience?". right now, we answer the first 2 with nova (and related projects separated for management sanity) and swift02:08
*** rsanchez has quit IRC02:10
*** rsanchez has joined #openstack02:10
*** rsanchez has quit IRC02:10
*** rsanchez has joined #openstack02:11
*** rsanchez has quit IRC02:11
*** aspiers has joined #openstack02:12
*** jakedahn has joined #openstack02:14
*** dvogt has quit IRC02:14
*** maplebed has quit IRC02:14
*** kordless has quit IRC02:16
*** anotherjesse1 has quit IRC02:18
*** anotherjesse1 has joined #openstack02:19
*** alrs has quit IRC02:19
*** erkules has quit IRC02:19
*** anotherjesse1 has left #openstack02:19
*** erkules has joined #openstack02:20
*** warik has quit IRC02:20
*** shang has quit IRC02:20
*** dprince has quit IRC02:25
*** bit0 has quit IRC02:25
*** ivan___ has joined #openstack02:28
*** ivan___ is now known as [ivan]02:28
[ivan]hello everyone02:28
[ivan]anybody can explain about peer-to-peer architecture in openstack?02:30
[ivan]http://wiki.openstack.org/Overview02:30
[ivan]how to build such architecture from the current diablo release02:31
uvirtbot`New bug: #940010 in keystone "Backslash continuations (Keystone)" [Undecided,New] https://launchpad.net/bugs/94001002:31
*** krow has joined #openstack02:34
*** bengrue has quit IRC02:34
*** mattray has joined #openstack02:35
*** thingee has quit IRC02:38
*** krow has quit IRC02:38
*** krow has joined #openstack02:38
*** [ivan] has quit IRC02:40
*** krow has quit IRC02:40
*** krow has joined #openstack02:40
uvirtbot`New bug: #940017 in nova "python-novaclient should use volumes endpoint instead of extensions" [High,In progress] https://launchpad.net/bugs/94001702:41
*** spikebike has joined #openstack02:42
spikebikeI've got a newly installed ubuntu 11.10 server, 2 switches (private and public) and a bunch of compute nodes.  Any suggestions which way to try my first openstack install?  Use ubuntu provided packages?  From scratch?02:43
*** Binbin_afk is now known as Binbin02:44
dubsquared1spikebike:  I'd recommend the ManagedIT packages referenced in the diablo deployment guide.  They are packaged by a third-party, but they are well maintained and have lots of post-release bug fixes.02:46
spikebikesounds promising02:46
spikebikedo the ManagedIT packages support the current release?02:46
dubsquared1Yeah, diablo-final (2011.3.1)02:47
spikebikeperfect02:47
*** shraddha has joined #openstack02:57
*** reed_ has joined #openstack02:57
shraddhafrom where does nova-network pick up the IP that it leases to the instance?02:59
shraddhawhere is it configured? In my case, the IP which is being assigned, is nt configured in any conf file03:04
*** andycjw has joined #openstack03:05
hugokuomorning03:05
*** mattray has quit IRC03:06
*** natea_ has joined #openstack03:07
*** krow has quit IRC03:08
*** arrsim has joined #openstack03:11
*** natea has quit IRC03:11
uvirtbot`New bug: #940023 in keystone "Backslash continuations (python-keystoneclient)" [Undecided,New] https://launchpad.net/bugs/94002303:11
*** krow has joined #openstack03:13
arrsimhi, what is the best method for me to submit a backported commit for review? should i leave the change-id intact?03:14
*** blamar_ has joined #openstack03:14
*** stuntmachine has joined #openstack03:14
*** randomubuntuguy has quit IRC03:16
*** dvogt has joined #openstack03:16
*** MotorMe has joined #openstack03:16
MotorMeAre there some successful user story on Swift?03:17
notmynameMotorMe: what kind of things are you looking for?03:18
*** littleidea has quit IRC03:18
MotorMeuse case about how to implement cloud storage by open object storage.03:18
*** deshantm has joined #openstack03:20
notmynameMotorMe: Rackspace Cloud Files is the largest production deployment I know of. probably the most well-known name that uses swift in production is wikipedia.03:20
technologov_w.p ?03:20
notmynameMotorMe: there are many other deployments. some big some small03:20
technologov_yay03:20
MotorMeok, thx03:22
technologov_is there any data that w.p uses swift ?03:22
notmynametechnologov_: MotorMe: http://blog.wikimedia.org/2012/02/09/scaling-media-storage-at-wikimedia-with-swift/03:22
technologov_thx03:22
notmynametechnologov_: also, they've been very active in to community since the beginning03:22
vishynotmyname, technologov_: nova-objectstore is a bad version of a file based storage system that replicates the s3 api03:23
vishyit is only for testing and dev work03:23
notmynamevishy: got it. thanks03:23
*** Mike656 has joined #openstack03:24
Mike656hi03:24
Mike656There is no keystone-all in bin folder03:24
Mike656Can anybody help me?03:24
technologov_vishy, notmyname : since the experts are all here, I would like to ask you to help03:25
technologov_Docs: Lack of OpenStack storage concepts explanation03:25
technologov_https://bugs.launchpad.net/openstack-manuals/+bug/93836503:25
Mike656Is any keystone expert here?03:25
*** lucasnodine has joined #openstack03:26
notmynametechnologov_: a little more broad, but a short write-up on where object storage and swift fit in to the larger storage landscape http://programmerthoughts.com/programming/storage-system-overview/03:26
Mike656Guys, I got stuck in running keystone.03:27
*** vincentricci has joined #openstack03:28
*** vincentricci has left #openstack03:29
*** aspiers has quit IRC03:30
Mike656Is there any keystone developer here?03:30
*** wonk has quit IRC03:33
*** stuntmachine has quit IRC03:36
*** mdomsch_ has joined #openstack03:37
*** mrjazzcat has joined #openstack03:38
*** Mike656 has quit IRC03:41
*** aspiers has joined #openstack03:42
*** natea has joined #openstack03:42
*** clopez has quit IRC03:42
*** krow has quit IRC03:45
*** mjfork has quit IRC03:46
*** wonk has joined #openstack03:46
*** cgoncalves has quit IRC03:50
*** supriya has joined #openstack03:52
*** PiotrSikora_ has joined #openstack03:54
*** PiotrSikora has quit IRC03:54
*** sam123 has joined #openstack03:54
*** jakedahn has quit IRC03:55
*** cgoncalves has joined #openstack03:55
*** cgoncalves has joined #openstack03:55
*** martine has joined #openstack04:00
sam123I'm trying edit metadata of a vm image in glance, does anyone know if I can add a new property to metadata with contents of a binary file?04:01
*** e1mer has joined #openstack04:04
*** rickfoosusa has quit IRC04:07
*** jakedahn has joined #openstack04:10
*** joearnold has joined #openstack04:11
*** krow has joined #openstack04:13
*** coofaman1 has quit IRC04:17
*** joearnold has quit IRC04:24
*** joearnold has joined #openstack04:26
*** martines has quit IRC04:31
*** e1mer has quit IRC04:31
*** krow has quit IRC04:34
technologov_Is there a particular reason why nova-network does IP injection ?04:36
*** cryptk|offline is now known as cryptk04:37
technologov_(looks flawed concept...)04:37
technologov_...dependency on particular guest OS is wrong, if something can be done in a generic way, via DHCP.04:39
*** blamar__ has joined #openstack04:41
*** joearnold has quit IRC04:41
*** blamar_ has quit IRC04:42
*** Mike656 has joined #openstack04:43
*** krow has joined #openstack04:45
*** krow has quit IRC04:47
*** krow has joined #openstack04:48
*** winston-d has joined #openstack04:53
*** ewindisch has quit IRC04:57
*** blamar_ has joined #openstack04:57
*** aspiers has quit IRC05:00
*** j^2 has quit IRC05:01
*** almaisan-away is now known as al-maisan05:01
*** joearnold has joined #openstack05:04
*** rnorwood has quit IRC05:08
*** al-maisan is now known as almaisan-away05:08
*** martine has quit IRC05:10
*** aspiers has joined #openstack05:12
*** rnorwood has joined #openstack05:14
*** jakkudanieru has joined #openstack05:17
*** krow has quit IRC05:18
*** sam123 has quit IRC05:19
*** ocherno has joined #openstack05:24
*** sannes has joined #openstack05:31
*** yaguang has quit IRC05:45
*** shevek_ has joined #openstack05:46
*** arrsim has left #openstack05:48
*** yaguang has joined #openstack05:51
*** sannes has quit IRC05:54
*** Yak-n-Yeti has quit IRC05:57
uvirtbot`New bug: #940069 in nova "Bandwidth polling floods the network manager" [Undecided,Confirmed] https://launchpad.net/bugs/94006906:01
*** yshh has quit IRC06:02
*** Mike656 has quit IRC06:02
*** 45PAAA7QQ has joined #openstack06:02
*** yshh has joined #openstack06:05
vishytechnologov_: it is really not used06:05
vishytechnologov_: provided as an option, but the default is dhcp06:05
*** lucasnodine has quit IRC06:05
*** mohits has joined #openstack06:06
*** ewindisch has joined #openstack06:09
*** joearnold has quit IRC06:10
*** dvogt has quit IRC06:16
*** rnorwood has quit IRC06:17
*** littleidea has joined #openstack06:23
*** deepakgarg has joined #openstack06:25
*** spikebike has quit IRC06:27
*** thingee has joined #openstack06:28
*** aspiers has quit IRC06:29
*** natea has quit IRC06:30
*** miclorb has quit IRC06:30
*** llang629 has joined #openstack06:35
*** zigo has joined #openstack06:36
*** bepernoot has joined #openstack06:36
*** llang629 has left #openstack06:38
*** bepernoot has quit IRC06:39
*** anotherjesse1 has joined #openstack06:41
*** bepernoot has joined #openstack06:42
*** aspiers has joined #openstack06:42
*** MarkAtwood has quit IRC06:47
*** miclorb has joined #openstack06:50
uvirtbot`New bug: #940083 in quantum "Improper error messages with traces associated with  'nova-manage network'   cmds" [Undecided,New] https://launchpad.net/bugs/94008306:52
*** bepernoot has quit IRC06:52
technologov_... how-to add comments here? https://blueprints.launchpad.net/nova/+spec/mac-address-uniqueness06:52
*** katkee has joined #openstack06:56
*** ocherno has quit IRC07:00
*** shraddha has quit IRC07:03
*** miclorb__ has joined #openstack07:08
*** miclorb has quit IRC07:10
*** mindpixel has joined #openstack07:11
*** yaguang has quit IRC07:14
*** yaguang has joined #openstack07:14
*** yaguang has quit IRC07:18
*** almaisan-away is now known as al-maisan07:20
*** guigui1 has joined #openstack07:20
*** al-maisan is now known as almaisan-away07:21
*** dachary has joined #openstack07:27
*** jeroenhn has joined #openstack07:29
*** j^2 has joined #openstack07:30
*** yaguang has joined #openstack07:31
*** krow has joined #openstack07:42
*** supriya has quit IRC07:49
*** ik04ka has joined #openstack07:57
*** krow has quit IRC07:58
*** krow has joined #openstack07:58
*** eglynn_ has quit IRC07:59
*** 45PAAA7QQ has quit IRC07:59
*** aspiers has quit IRC08:00
*** krow has quit IRC08:01
*** bepernoot has joined #openstack08:02
*** Leseb has joined #openstack08:06
*** aspiers has joined #openstack08:12
*** littleidea has quit IRC08:15
*** duffman has quit IRC08:16
*** duffman has joined #openstack08:16
*** darraghb has joined #openstack08:21
*** mnewby has quit IRC08:22
*** dachary has quit IRC08:22
*** eglynn_ has joined #openstack08:26
*** mancdaz has joined #openstack08:37
*** mancdaz_ has joined #openstack08:38
*** mancdaz has quit IRC08:42
*** mancdaz_ is now known as mancdaz08:42
*** winston-d has quit IRC08:43
*** eglynn_ has quit IRC08:46
*** corXi has joined #openstack08:53
*** longhudou has joined #openstack08:53
*** supriya has joined #openstack08:58
*** supriya has quit IRC08:59
*** supriya has joined #openstack08:59
*** ldlework has quit IRC08:59
*** shang has joined #openstack09:01
*** marrusl has joined #openstack09:02
*** longhudou has quit IRC09:02
*** aimon has joined #openstack09:02
*** ik04ka has quit IRC09:02
*** thingee has quit IRC09:02
*** adjohn has quit IRC09:05
*** mon has joined #openstack09:07
*** dneary has joined #openstack09:08
*** sevgin has joined #openstack09:09
*** eglynn_ has joined #openstack09:09
*** marrusl has quit IRC09:11
*** Remco_ has joined #openstack09:12
*** uksysadmin has joined #openstack09:13
*** katkee_ has joined #openstack09:21
*** jeroenhn has quit IRC09:22
*** katkee has quit IRC09:25
*** Remco__ has joined #openstack09:25
*** mon has quit IRC09:25
*** almaisan-away is now known as al-maisan09:26
*** Remco_ has quit IRC09:26
*** zykes has quit IRC09:26
*** datajerk has quit IRC09:27
*** marrusl has joined #openstack09:27
*** longhudou has joined #openstack09:28
*** EDevil has joined #openstack09:29
EDevilFeb 23 19:45:58 vmdev-gluster03 proxy-server ERROR with Container server 127.0.0.1:6011/AUTH_8140ab2e72bd3fd9d3e89e00d2d2c620 re: Trying to GET /v1/AUTH_8140ab2e72bd3fd9d3e89e00d2d2c620/blocks: Timeout (60s) (txn: tx6e66d382d1c342818e5e3baf0bfa1b8a)09:29
EDevilDoes anyone have an ideia of what the problem might be?09:29
*** aspiers has quit IRC09:30
*** dev_sa has joined #openstack09:30
*** longhudou has quit IRC09:32
*** marrusl has quit IRC09:32
*** deepakgarg has quit IRC09:32
*** dxd828 has joined #openstack09:41
*** aspiers has joined #openstack09:42
*** e1mer has joined #openstack09:47
*** datajerk has joined #openstack09:47
*** e1mer has quit IRC09:47
*** e1mer has joined #openstack09:47
uvirtbot`New bug: #940148 in melange "add job "python-melangeclient-tarball" to jenkins" [Undecided,New] https://launchpad.net/bugs/94014809:52
*** Remco__ has quit IRC09:53
uksysadminEDevil, its timing out - is that container port open on your localhost?09:53
EDevilYes, it is...09:54
EDevilI have 20k files on the container already, is that a problem?09:54
uksysadminnot sure - never had to use it in anger. are your disks ok? load on the box ok? disk space ok?09:56
EDeviluksysadmin: The disk is not full, nor do I see cpu usage or IO. The requests just fails after a 60s timeout.09:56
*** asavu has joined #openstack09:59
*** marrusl has joined #openstack10:03
*** aimon_ has joined #openstack10:03
*** aimon_ has joined #openstack10:04
*** mohits has quit IRC10:04
*** jantje_ has joined #openstack10:04
*** davepigott has joined #openstack10:04
davepigottjamespage: ping?10:04
*** alekibango_ has joined #openstack10:06
*** aimon has quit IRC10:06
*** aimon_ is now known as aimon10:06
*** medberry has joined #openstack10:07
*** medberry has quit IRC10:07
*** medberry has joined #openstack10:07
uksysadmingiven its struggling on auth, check your auth logs (keystone?)10:07
davepigottjamespage: (or anyone!) I have created an instance which I can connect to. Any further instances I can't. Could it be coincidence that the instances I  *can't* connect to are on anything boot the master node?10:08
*** alekibango has quit IRC10:08
*** med_ has quit IRC10:08
*** jantje has quit IRC10:08
*** berendt has joined #openstack10:10
jamespagedavepigott, not quite sure what you mean by ' anything boot the master node'?10:11
EDeviluksysadmin: Why do you say it's struggling with auth?10:12
*** deshantm_ has joined #openstack10:13
*** mancdaz has quit IRC10:14
*** asavu has quit IRC10:15
*** wolfric has joined #openstack10:16
*** mohits has joined #openstack10:16
*** deshantm has quit IRC10:17
uksysadminsorry - multitasking - I forgot the swift stuff's URI has AUTH... but regardless, check your legs, check netstat, something is blocking causing the timeout.10:17
wolfricimpressive channel count... anyone happen to know if live migration on xen has been progressed (or is implemented)?10:17
uksysadminwolfric, I've seen people chatting about that on the mailing list and in the docs somewhere... I'm trolling as I can't remember if it was kvm that was feasible and/or xen.10:22
davepigottjamespage: Sorry - I should explain. Given that I have four servers in the cloud, one is running everything (nova-compute, nova-volume, nova-network etc) the other three are only running nova-compute10:22
wolfricuksysadmin: kvm currently works, xen from the last release note is not (diablo)10:23
wolfricuksysadmin: this is what i just found, but i was hoping there was something more on it somewhere else https://lists.launchpad.net/openstack/msg04561.html10:23
jamespagedavepigott, I think you need to run nova-network on the other three as well10:24
*** mohits has left #openstack10:24
*** hamlesh_ is now known as hamlesh10:26
davepigottjamespage: OK. That's something else that seems to be missing from the Started Guide as well then. :(10:26
jamespagedavepigott, I think thats the case - let me look at the juju charms we use for testing10:26
davepigottjamespage: ok. Thanks10:27
*** Neptu has quit IRC10:27
* davepigott needs to read up on juju10:27
*** Neptu has joined #openstack10:28
*** frankS2 has quit IRC10:28
jamespagedavepigott, you should install nova-compute, nova-network and nova-api on all of your nodes (at least thats what we test in precise)10:29
davepigottjamespage: OK. I'll set that up. Thanks!10:29
*** pixelbeat has joined #openstack10:32
*** Neptu has quit IRC10:33
*** maploin has joined #openstack10:33
*** maploin has joined #openstack10:33
*** frankS2 has joined #openstack10:34
*** e1mer has quit IRC10:34
*** asavu has joined #openstack10:34
*** Neptu has joined #openstack10:38
*** mancdaz has joined #openstack10:40
*** halfss has joined #openstack10:40
*** mancdaz has quit IRC10:43
*** mancdaz has joined #openstack10:43
*** po has joined #openstack10:47
*** initcron has joined #openstack10:49
*** Binbin has quit IRC10:53
davepigottjamespage: Did that. Here's what I'm now seeing, but I still can't attach to an instance on anything but lava-cloud01 http://pastebin.ubuntu.com/855230/10:59
jamespagedavepigott, what does your networking setup look like both physically and how you have it configured in nova11:00
*** aspiers has quit IRC11:00
davepigottjamespage: Two nics per server. One on the main LAN, one on private lan.11:00
davepigottjamespage: Using vlan11:00
*** MotorMe has quit IRC11:01
*** 18WABSN32 has joined #openstack11:04
*** hwestman has quit IRC11:04
*** msavy has joined #openstack11:04
jamespagedavepigott, OK - need a bit more than that11:04
davepigottjamespage: on phone - brb11:04
*** ahasenack has joined #openstack11:08
*** jtanner has quit IRC11:09
*** jeroenhn has joined #openstack11:10
*** aspiers has joined #openstack11:12
*** andycjw has quit IRC11:15
*** pouledodue has joined #openstack11:16
*** Lumiere has quit IRC11:17
*** 18WABSN32 has quit IRC11:18
*** al-maisan is now known as almaisan-away11:22
heyhoHello everyone. I created a few custom Ubuntu images following the guide on the docs ..but, everytime an instance of my custom image is spawned, I get an empy console log.. doing cat /proc/consoles i get "tty0" in my custom instance instead of  "ttyS0" which shows in the instances with a proper console log.. what should I change / install in my custom image?11:26
*** jeroenhn has quit IRC11:27
uksysadminheyho: check this out http://rsokolkov.blogspot.com/2011/11/configuring-openstack-images-to-write.html11:30
*** e1mer has joined #openstack11:30
*** zigo has quit IRC11:30
*** ches has quit IRC11:30
*** ches has joined #openstack11:31
heyhothanks uksysadmin, will do11:31
uvirtbot`New bug: #940204 in nova "running instances - xenserver" [Undecided,New] https://launchpad.net/bugs/94020411:33
*** rods has joined #openstack11:33
*** Leseb has quit IRC11:35
*** e1mer has quit IRC11:37
*** dneary has quit IRC11:39
*** corXi has quit IRC11:41
*** mancdaz has quit IRC11:42
*** mancdaz has joined #openstack11:42
*** uksysadmin has quit IRC11:47
*** andrewsmedina has quit IRC11:48
EDevilSwift stores objects as files in the filesystem. When I insert objects do I need to worry about creating subdirs in order not to have too many files in a directory, or does swift handle that for me?11:50
*** kbringard has joined #openstack11:51
*** bepernoo1 has joined #openstack11:54
*** derekh has joined #openstack11:55
*** bepernoot has quit IRC11:57
davepigottjamespage: OK. Off the phone (yuck - sales people). So, what other information do you mean?11:59
*** bsza has joined #openstack11:59
jamespagedavepigott, right - so to start with are all of your servers configured identically in terms of networking?12:08
davepigottjamespage: Yep. All identical.12:08
*** andrewsmedina has joined #openstack12:10
jamespagedavepigott, the output of "ip addr" on the server thats working and one that is not will tell us some useful things12:11
*** ahasenack has quit IRC12:11
*** ahasenack has joined #openstack12:12
davepigottjamespage: OK. One moment...12:12
jamespagedavepigott, also the contents of /etc/nova/nova.conf - but please screen first as will have sensitive information in it.12:12
davepigottjamespage: http://pastebin.ubuntu.com/855298/12:17
jamespagedavepigott, did you setup the br100 bridge on the non-functioning node?12:18
davepigottjamespage: That was set up nova as far as I'm aware. Certainly not by me.12:19
jamespagedavepigott, I think you need to aligned --vlan_interface=eth1 -public_interface=eth0 as in the node that is working12:19
jamespageI don't think --vlan_interface=br100 works...12:20
davepigottjamespage: Doh!!!!12:20
jamespagemight be wrong12:20
jamespagedavepigott, unfortunately we don't test VLAN mode in the test lab at the moment (thats changing)12:21
jamespageso I can't confirm ATM12:21
jamespageyou probably only need the bridge if you where running in an all-in-one with a single network interface12:21
*** dev_sa has quit IRC12:21
jamespagedavepigott, see here for an all-in-one example - https://wiki.ubuntu.com/ServerTeam/Oneiric/OpenStackTestPlan12:22
EDevilDoes swift handle the file distribution in the file system for me, or do I have to create subdirs in order not to have too many files in the same directory?12:23
davepigottjamespage: Will I need to reboot or restart anything? I restarted nova-compute, nova-network and nova-api on them all. Should I also restart libvirt?12:25
jamespagedavepigott, nah - that should be enough12:26
*** dolphm has quit IRC12:29
*** initcron has left #openstack12:30
*** aspiers has quit IRC12:30
*** cloudvirt has joined #openstack12:30
*** serkamil has joined #openstack12:32
*** Tristan|i3D has joined #openstack12:34
Tristan|i3DI have a problem with Nova Dashboard where it thinks Glance and Keystone are on 127.0.0.1 but they are not12:36
Tristan|i3DWhere do I change that?12:36
*** dachary has joined #openstack12:38
*** markvoelker has joined #openstack12:40
LarsErikPin order to use Xen.. is XCP mandatory, or can I just use xen-hypervisor/xen-linux-system? Keep on getting errors on missing API Calls12:40
*** bepernoo1 has quit IRC12:41
uvirtbot`New bug: #940272 in keystone "tenantId now shown in user-list (python-keystoneclient)" [Undecided,New] https://launchpad.net/bugs/94027212:41
lxu_Tristan|i3D: conf files probably12:41
Tristan|i3Dwhich one, nova-api, nova, nova-registry are all changed12:42
*** aspiers has joined #openstack12:42
*** daysmen has joined #openstack12:42
Tristan|i3Dlxu_, /etc/openstack-dashboard/local_settings.py as well12:43
*** Leseb_ has joined #openstack12:43
*** zeus has joined #openstack12:45
lxu_Tristan|i3D: I never tried an installation with dashboard using multiple nodes, but review all your config files and restart services. I suppose this is all that is needed12:49
*** Ruetobas has quit IRC12:50
Tristan|i3Dlxu_, cant find it :)12:51
*** livemoon has joined #openstack12:51
*** supriya has quit IRC12:52
*** zeus has quit IRC12:53
*** almaisan-away is now known as al-maisan12:54
kbringardfind / -name local_settings.py should help figure out where it is12:56
Tristan|i3DOPENSTACK_KEYSTONE_URL = "http://192.168.0.8:5000/v2.0/"12:56
*** Ruetobas has joined #openstack12:56
Tristan|i3Dkbringard, see above12:57
*** andrewsmedina has quit IRC12:58
*** ewindisch has quit IRC12:58
*** statik has quit IRC12:59
*** andrewsmedina has joined #openstack13:00
*** bepernoot has joined #openstack13:01
*** corXi has joined #openstack13:01
davepigottjamespage: Still not working. If I do a get-console, the last lines say13:05
davepigottcloud-init start-local running: Fri, 24 Feb 2012 13:03:37 +0000. up 2.99 seconds13:05
davepigottno instance data found in start-local13:05
davepigottcloud-init-nonet waiting 120 seconds for a network device.13:06
*** mjfork has joined #openstack13:07
*** Mkenneth has joined #openstack13:08
*** randomubuntuguy has joined #openstack13:08
*** cloudvirt has quit IRC13:10
*** dneary has joined #openstack13:13
*** ches has quit IRC13:29
*** ches has joined #openstack13:30
*** dolphm has joined #openstack13:30
*** bepernoot has quit IRC13:31
*** dachary has quit IRC13:32
*** yaguang has quit IRC13:34
*** cloudvirt has joined #openstack13:35
*** lts has joined #openstack13:36
uvirtbot`New bug: #940304 in keystone "tenant list as non admin results in 500" [Undecided,New] https://launchpad.net/bugs/94030413:41
*** stuntmachine has joined #openstack13:42
*** stuntmachine has quit IRC13:42
*** stuntmachine has joined #openstack13:42
*** st4n has joined #openstack13:43
*** Ruetobas has quit IRC13:43
*** st4n has quit IRC13:45
*** Ruetobas has joined #openstack13:48
*** livemoon1 has joined #openstack13:50
*** livemoon has quit IRC13:50
*** dprince has joined #openstack13:50
*** martine has joined #openstack13:53
*** lborda has joined #openstack13:53
*** egant has quit IRC13:55
*** aspiers has quit IRC14:00
*** bulll has joined #openstack14:00
*** blamar_ has quit IRC14:01
*** ik04ka has joined #openstack14:05
*** cryptk is now known as cryptk|offline14:07
*** livemoon1 has left #openstack14:08
*** littleidea has joined #openstack14:09
*** lborda_ has joined #openstack14:10
*** osier has joined #openstack14:12
*** lborda has quit IRC14:12
*** aspiers has joined #openstack14:12
*** crescendo has quit IRC14:12
*** dolphm has quit IRC14:17
*** jtanner has joined #openstack14:17
*** ewindisch has joined #openstack14:18
*** bulll has quit IRC14:18
*** Leander has joined #openstack14:24
Leanderhello all14:24
*** vila has quit IRC14:25
Leandercan someone help me figure out why i keep getting 404 responses when trying to create a container in swift14:25
Leanderi'm using the temp_auth filter and my user has the ".admin" permission14:25
*** dendro-afk is now known as dendrobates14:25
notmynameLeander: 404 when creating a container means that the account wasn't found. do you have account_autocreate = True in your proxy conifg?14:26
*** aliguori has joined #openstack14:28
Leandernotmyname: does it still mean that even though i could authenticate?14:29
Leanderwhere should i put that config line?14:29
notmynameyes14:29
notmynameLeander: in the [app:proxy-server] section (https://review.openstack.org/#patch,sidebyside,3958,1,doc/source/howto_installmultinode.rst)14:29
*** dhellmann_ has joined #openstack14:30
*** dhellmann_ has quit IRC14:31
*** dhellmann_ has joined #openstack14:31
phschwartzWhat is the best way to test for network connection issues from an instance. I am having trouble randomly with git clones failing. I tried running a traceroute and after hop 1, it is all * * *14:31
*** rods has quit IRC14:32
Leandernotmyname: For some reason the request just hang14:34
Leandernow14:34
*** dhellmann has quit IRC14:34
*** dhellmann_ is now known as dhellmann14:34
notmynameLeander: you restarted the proxy? can you paste your proxy config? paste.openstack.org14:35
*** Blackavar has joined #openstack14:36
*** B1ackavar has joined #openstack14:36
*** ewindisch has quit IRC14:36
Leandernotmyname: restarted the proxy and then rebooted14:36
Leanderhttp://paste.openstack.org/show/4990/14:36
*** bpg_ has joined #openstack14:36
*** mattray has joined #openstack14:38
notmynameLeander: everything mostly looks fine there. running ssl to the proxy isn't recommended beyond dev/testing purposes. and you don't need the swauth section if you aren't running swauth. but those shouldn't cause a hang14:38
phschwartzThere also seems to be a delay trying to ssh or connect to anything not in the OS cluster. Anyone have any ideas?14:39
*** GheRivero_ has joined #openstack14:39
Leandernotmyname: after a 2-3 min i got a response14:39
Leanderweid14:39
Leanderweird*14:39
Leanderbtw, shouldn't i use ssl/https to protect the password transmission to the proxy?14:39
*** cloudvirt has quit IRC14:42
notmynameLeander: yes, but you should terminate ssl separate from the proxy14:42
notmynameLeander: python + ssl don't play well together, unfortunately14:42
Leander notmyname: also i still cannot create the container :/14:42
*** cloudvirt has joined #openstack14:43
*** dendrobates is now known as dendro-afk14:43
*** zigo has joined #openstack14:43
notmynameLeander: the next step is to start looking in the logs (syslog, unless you've redirected it somewhere).14:43
notmynameLeander: I'm about to drive to the office, so I'll be away for a bit14:44
Leandernotmyname: anything in particular i should look for14:45
*** dendro-afk is now known as dendrobates14:45
Leanderi can't seem to fin any erros14:46
Leander:/14:46
phschwartzkiall: ping14:46
*** osier has quit IRC14:46
*** marrusl has quit IRC14:46
*** rods has joined #openstack14:46
*** marrusl has joined #openstack14:48
*** clopez has joined #openstack14:49
*** mnabil has joined #openstack14:49
*** rnorwood has joined #openstack14:49
*** natea has joined #openstack14:50
*** rnorwood has quit IRC14:51
*** dhellmann has quit IRC14:53
*** dhellmann_ has joined #openstack14:53
*** dhellmann has joined #openstack14:54
*** joearnold has joined #openstack14:54
*** leifmadsen has quit IRC14:55
*** dhellmann has quit IRC14:57
*** joearnold has quit IRC14:57
*** dhellmann has joined #openstack14:57
*** dhellmann_ has quit IRC14:57
uvirtbot`New bug: #940357 in keystone "Missing files in generated tarballs" [High,In progress] https://launchpad.net/bugs/94035714:58
*** deshantm_ is now known as deshantm14:58
*** Glacee has joined #openstack14:59
*** joearnold has joined #openstack14:59
GlaceeHi, is there a reason why Swift-dispersion does not work with accounts?14:59
*** joearnold has quit IRC15:01
*** marrusl has quit IRC15:02
*** robbiew has joined #openstack15:02
*** marrusl has joined #openstack15:02
*** maploin` has joined #openstack15:03
*** natea has quit IRC15:04
*** jj0hns0n has joined #openstack15:04
*** natea has joined #openstack15:04
*** jj0hns0n has quit IRC15:05
*** maploin has quit IRC15:07
uvirtbot`New bug: #940360 in nova "Missing files in generated tarballs" [High,In progress] https://launchpad.net/bugs/94036015:08
*** Yak-n-Yeti has joined #openstack15:08
*** Yak-n-Yeti has quit IRC15:08
*** Yak-n-Yeti has joined #openstack15:08
*** jmckenty has joined #openstack15:09
*** maploin`` has joined #openstack15:09
*** jmckenty has quit IRC15:10
uvirtbot`New bug: #940365 in nova "Failed testsuite on buildds" [Undecided,In progress] https://launchpad.net/bugs/94036515:11
eglynn_termie: can I hassle you to do a review on a one-liner keystone patch?15:13
eglynn_(I need a quick turn-around on, as the issue breaks glance)15:13
eglynn_https://review.openstack.org/#change,450215:13
*** maploin` has quit IRC15:14
eglynn_or blamar ^^^, if not busy ...15:14
*** MarkAtwood has joined #openstack15:16
*** cloudvirt has quit IRC15:17
*** leifmadsen has joined #openstack15:18
uvirtbot`New bug: #940364 in glance "Missing files in generated tarballs" [Medium,In progress] https://launchpad.net/bugs/94036415:18
blamareglynn_, looks good!15:24
eglynn_blamar: thanks!15:25
*** maploin`` has quit IRC15:27
*** tobin has joined #openstack15:28
*** rnorwood has joined #openstack15:29
*** aspiers has quit IRC15:30
*** clauden_ has joined #openstack15:30
zuljeblair: ping15:31
*** dolphm has joined #openstack15:31
jeblairzul: pong15:32
*** Mkenneth has quit IRC15:32
zuljeblair: the glance tarball jobs have been failing for a while can you look at it, im trying to upload a new version to ubuntu and we use the tarball jobs to build the packages15:33
jeblairzul: sure thing15:33
*** supriya has joined #openstack15:33
*** maplebed has joined #openstack15:34
*** supriya has quit IRC15:34
*** Leander has quit IRC15:34
zuljeblair: thanks15:35
*** davepigott has quit IRC15:35
*** krow has joined #openstack15:35
*** RobertLaptop has joined #openstack15:35
*** RobertLaptop has left #openstack15:41
jeblairzul: don't trigger any jobs manually for a bit; i'm going to be changing the configuration and i'll run it when done15:42
*** bengrue has joined #openstack15:42
*** sandywalsh has quit IRC15:42
zuljeblair: k cool thanks can you let me know when its done?15:42
*** sevgin has quit IRC15:42
*** Hakon|mbp has joined #openstack15:42
jeblairthe glance tarball job is a casualty of glance being halfway migrated to tox15:42
jeblairzul: will do15:42
*** aspiers has joined #openstack15:42
*** Kylie has joined #openstack15:43
KylieGood morning.15:43
*** krow has quit IRC15:44
*** lebowski has quit IRC15:44
*** lebowski has joined #openstack15:44
*** stuntmachine has quit IRC15:44
*** hhoover has joined #openstack15:45
*** zzed has joined #openstack15:46
*** zykes has joined #openstack15:47
*** al-maisan is now known as almaisan-away15:47
uvirtbot`New bug: #940394 in openstack-ci "Parameterized swift doc site build keeps 1.4.7-dev even though 1.4.6 is the parameter" [Undecided,New] https://launchpad.net/bugs/94039415:51
*** Yak-n-Yeti has quit IRC15:53
*** mrjazzcat has joined #openstack15:54
*** hub_cap has joined #openstack15:55
*** cp16net has quit IRC15:55
*** cp16net has joined #openstack15:55
*** sandywalsh has joined #openstack15:56
*** natea has quit IRC15:57
*** zzed has quit IRC15:57
*** zzed has joined #openstack15:57
eglynn_jaypipes: hey, did you want to discuss queued images?15:58
*** dolphm has quit IRC15:59
*** hhoover has quit IRC15:59
*** Glacee has quit IRC16:01
*** lookup has joined #openstack16:01
*** lookup has quit IRC16:02
*** dolphm_ has joined #openstack16:02
*** arBmind has joined #openstack16:03
*** dolphm_ has quit IRC16:04
*** hhoover has joined #openstack16:04
*** dolphm_ has joined #openstack16:05
*** jj0hns0n has joined #openstack16:05
*** B1ackavar has quit IRC16:06
*** marrusl has quit IRC16:07
*** marrusl has joined #openstack16:07
*** nati2 has joined #openstack16:07
*** zykes- has joined #openstack16:12
*** zykes has quit IRC16:12
jeblairzul: https://jenkins.openstack.org/view/Glance/job/glance-tarball/392/16:12
*** Glacee has joined #openstack16:13
zuljeblair: cool thanks16:13
jeblairzul: that's the first build where we make a .venv from the pip bundle we use for tox16:13
jeblairzul: let me know if you see anything out of the ordinary16:13
zuljeblair: sweet thanks16:14
*** natea has joined #openstack16:15
*** reed_ is now known as reed16:16
*** mindpixel has quit IRC16:18
*** Hakon|mbp has quit IRC16:20
uvirtbot`New bug: #940416 in openstack-manuals "On api.openstack.org site, image API doesn't have a version number like v1 similar to the other APIs" [Undecided,New] https://launchpad.net/bugs/94041616:21
*** dolphm_ has quit IRC16:21
*** derekh has quit IRC16:22
*** dolphm has joined #openstack16:22
*** Kylie has quit IRC16:23
uvirtbot`New bug: #940407 in nova "TestMigrations does not work with latest migrate and sqlaclhemy" [Undecided,In progress] https://launchpad.net/bugs/94040716:23
*** mindpixel has joined #openstack16:23
*** dachary has joined #openstack16:24
*** gyee has joined #openstack16:25
*** tguest has quit IRC16:26
*** hhoover has quit IRC16:28
*** rnorwood has quit IRC16:29
*** exekias has quit IRC16:30
*** exekias has joined #openstack16:30
*** eirikbb has quit IRC16:30
*** cryptk|offline is now known as cryptk16:31
*** randomubuntuguy has quit IRC16:31
*** sannes has joined #openstack16:32
*** rnorwood has joined #openstack16:32
*** ldlework has joined #openstack16:36
*** mher has quit IRC16:36
*** hggdh has quit IRC16:38
*** FlipFlop_ has joined #openstack16:38
*** guigui1 has quit IRC16:38
*** martines has joined #openstack16:39
*** armaan has joined #openstack16:39
*** Kylie has joined #openstack16:40
*** jakkudanieru has quit IRC16:40
KylieHello. I am trying to figure out what the default login is for instances I boot with Dashboard.16:40
uvirtbot`New bug: #940430 in nova "nova-api should check UTF8 char in parameters" [Undecided,New] https://launchpad.net/bugs/94043016:41
*** dolphm has quit IRC16:41
*** dolphm has joined #openstack16:42
*** hggdh has joined #openstack16:42
*** jdg has joined #openstack16:43
*** hhoover has joined #openstack16:43
*** armaan has quit IRC16:44
*** krow has joined #openstack16:45
*** daysmen has quit IRC16:45
*** armaan has joined #openstack16:45
*** armaan has left #openstack16:46
*** armaan has joined #openstack16:46
uvirtbot`New bug: #940432 in nova "novaclient API version shouldn't include NOVA in the name" [Undecided,New] https://launchpad.net/bugs/94043216:46
*** dubsquared1 has quit IRC16:48
*** corXi has quit IRC16:48
*** zykes- has quit IRC16:51
*** mine3 has joined #openstack16:51
mine3hi all16:51
mine3when can i change scheduling in openstack?16:51
KylieHello. I am trying to figure out what the default login is for instances I boot with Dashboard.16:52
mine3when can i change scheduling in openstack?16:52
mine3how can i change scheduling in openstack?16:53
*** bradhedlund has joined #openstack16:53
*** caryp has joined #openstack16:53
*** armaan has quit IRC16:53
*** wilmoore has joined #openstack16:53
mine3how can i change scheduling in openstack?16:53
*** rickfoosusa has joined #openstack16:54
mine3no one knows?16:55
*** nati2 has quit IRC16:55
*** davepigott has joined #openstack16:55
*** thingee has joined #openstack16:55
*** zigo has quit IRC16:56
*** mine3 has quit IRC16:56
carypjust installed using devstack and we are noticing that public IP addresses are not being released.  Has anyone else experienced this?16:57
*** shang has quit IRC16:57
*** aspiers has quit IRC17:00
*** krow has quit IRC17:01
*** Leseb_ has quit IRC17:02
*** daysmen has joined #openstack17:02
zynzelcaryp: check in database, table fixed_ips17:02
*** rnorwood has quit IRC17:03
annegentlewell, mine3 left, but here's an example scheduler https://github.com/openstack/nova/blob/stable/diablo/nova/scheduler/chance.py. Also ask in #openstack-dev17:04
*** eirikbb has joined #openstack17:04
*** dubsquared has joined #openstack17:06
*** frankS2 has quit IRC17:06
*** anotherjesse has quit IRC17:06
*** clauden_ has quit IRC17:06
*** clauden has joined #openstack17:06
*** eglynn_ has quit IRC17:07
*** dxd828 has quit IRC17:09
*** nid0 has quit IRC17:10
*** frankS2 has joined #openstack17:10
*** nid0 has joined #openstack17:11
uvirtbot`New bug: #940447 in glance "Ignore E202 pep8 warnings" [Undecided,In progress] https://launchpad.net/bugs/94044717:11
*** aspiers has joined #openstack17:12
*** davepigott has quit IRC17:12
*** zykes has joined #openstack17:13
*** joearnold has joined #openstack17:15
*** jog0 has joined #openstack17:17
*** GheRivero_ has quit IRC17:21
*** ppradhan has joined #openstack17:23
*** Blackavar has joined #openstack17:23
*** rsanchez has joined #openstack17:24
*** katkee_ has quit IRC17:25
*** dachary has quit IRC17:29
*** eglynn_ has joined #openstack17:30
*** thingee has quit IRC17:31
*** joearnold has quit IRC17:32
*** joearnold has joined #openstack17:33
*** lopakad has joined #openstack17:34
*** warik has joined #openstack17:35
*** bepernoot has joined #openstack17:36
*** rnorwood has joined #openstack17:37
*** joearnold has quit IRC17:38
*** asavu has quit IRC17:40
carypzynzel: thanks!  Yeah it looks like the fixed ip stays associated with the VM even after it is shutdown.  Is this a known issue?17:41
*** frankS2 has quit IRC17:42
*** bepernoot has quit IRC17:43
*** shevek_ has quit IRC17:43
*** maplebed has quit IRC17:45
*** maplebed has joined #openstack17:45
*** Gordonz has quit IRC17:47
*** Gordonz has joined #openstack17:48
*** frankS2 has joined #openstack17:48
*** eglynn_ has quit IRC17:49
*** serkamil has quit IRC17:49
*** darraghb has quit IRC17:50
*** freeflyi1g has joined #openstack17:52
*** freeflyi1g has quit IRC17:53
zynzelcaryp: dont know, i patch nova :)17:53
*** aweiss has joined #openstack17:53
*** aweiss has left #openstack17:53
*** freeflyi1g has joined #openstack17:53
*** ohnoimdead has joined #openstack17:56
*** aweiss has joined #openstack17:57
*** MarkAtwood has quit IRC17:57
*** jdurgin has joined #openstack17:57
*** nati has joined #openstack17:58
*** jtanner has quit IRC17:59
*** jtanner has joined #openstack17:59
*** yshh has quit IRC18:01
*** ecarlin has joined #openstack18:04
*** marrusl has quit IRC18:05
uvirtbot`New bug: #940500 in nova "List detail of non-existent floating ip fails" [Undecided,New] https://launchpad.net/bugs/94050018:06
*** stuntmachine has joined #openstack18:07
*** shraddha has joined #openstack18:09
*** littleidea has quit IRC18:09
*** bengrue has quit IRC18:11
*** cloudvirt has joined #openstack18:12
*** littleidea has joined #openstack18:12
*** uvirtbot` has quit IRC18:12
*** CaptTofu has quit IRC18:13
*** uvirtbot has joined #openstack18:14
*** alrs has joined #openstack18:14
lopakadworking with caryp: are entries in virtual_interfaces suppose to be deleted when an instance is terminated?18:15
lopakadentries in virtual_interfaces are referenced in fixed_ip18:16
*** kodapa has quit IRC18:18
*** nati has quit IRC18:18
*** kodapa has joined #openstack18:19
*** esker has joined #openstack18:23
*** katkee has joined #openstack18:25
*** adjohn has joined #openstack18:26
*** eglynn_ has joined #openstack18:27
*** shadowe989 has quit IRC18:28
*** arBmind has quit IRC18:29
*** andrewbogott_afk is now known as andrewbogott18:29
*** aspiers has quit IRC18:30
*** egant has joined #openstack18:31
*** EDevil has left #openstack18:31
*** adjohn has quit IRC18:31
*** eglynn_ has quit IRC18:32
*** eglynn_ has joined #openstack18:32
*** CaptTofu has joined #openstack18:33
*** hggdh has quit IRC18:34
*** Hakon|mbp has joined #openstack18:35
*** CaptTofu has quit IRC18:36
*** bladernr_afk is now known as bladernr_18:36
*** dneary has quit IRC18:37
*** hggdh has joined #openstack18:38
*** Hakon|mbp has quit IRC18:39
*** alekibango_ has quit IRC18:41
*** aspiers has joined #openstack18:42
*** heckj has joined #openstack18:44
*** shadowe989 has joined #openstack18:45
*** sgd has joined #openstack18:45
*** lebowski has quit IRC18:45
*** lxu_ has quit IRC18:45
*** lebowski has joined #openstack18:46
sgdTrying to configure keystone to use mysql: even though my connection string is of the form 'mysql:///user:pass@host/db', it seems to be trying to connect as root @ localhost with no password.18:46
uvirtbotNew bug: #940521 in keystone "glance_auth_token has incorrect 'admin' role name" [Undecided,In progress] https://launchpad.net/bugs/94052118:48
*** mnewby has joined #openstack18:49
*** clopez has quit IRC18:50
uvirtbotNew bug: #940532 in tempest "test_list_images fails" [Undecided,New] https://launchpad.net/bugs/94053218:51
*** MarkAtwood has joined #openstack18:51
*** wilmoore has quit IRC18:52
*** alekibango_ has joined #openstack18:54
*** praefect has joined #openstack18:57
*** aweiss has quit IRC18:58
*** morfeas has quit IRC19:01
*** stuntmachine has quit IRC19:01
sgdresolved.  should be two '/', not three, mysql://...  The whole string starting with the third '/' was getting passed as the 'db' argument.19:02
*** sgd has left #openstack19:02
*** dpippenger has joined #openstack19:02
*** jtanner has quit IRC19:05
uvirtbotNew bug: #940539 in nova "libvirt deletes VM configuration file after edit" [Undecided,New] https://launchpad.net/bugs/94053919:06
*** Ryan_Lane has joined #openstack19:06
*** dpippenger has quit IRC19:09
*** dpippenger has joined #openstack19:09
*** tmichael_ has joined #openstack19:10
*** stuntmachine has joined #openstack19:10
*** cloudvirt has quit IRC19:11
*** egant has quit IRC19:13
*** dubsquared has quit IRC19:13
*** tmichael has quit IRC19:13
*** tmichael_ is now known as tmichael19:13
*** albert23 has joined #openstack19:14
*** ecarlin has quit IRC19:14
*** tmichael has quit IRC19:14
*** heckj has quit IRC19:15
*** jtanner has joined #openstack19:15
*** jtanner has quit IRC19:16
*** zykes- has joined #openstack19:17
*** jtanner has joined #openstack19:17
*** zykes has quit IRC19:17
*** heckj has joined #openstack19:18
*** cloudvirt has joined #openstack19:23
*** Blackavar has quit IRC19:26
*** Blackavar has joined #openstack19:27
*** lebowski has quit IRC19:32
*** krow has joined #openstack19:32
*** js42 has joined #openstack19:33
*** ayoung has joined #openstack19:34
*** bengrue has joined #openstack19:37
mjforkis there a redhat version of devstack?19:39
*** wilmoore has joined #openstack19:42
*** ches has quit IRC19:43
technologov_Fedora folks did experimental version: https://review.openstack.org/#change,436419:44
*** ches has joined #openstack19:44
*** ark_ has quit IRC19:44
*** randomubuntuguy has joined #openstack19:53
*** anticw_ has quit IRC19:57
*** anticw has joined #openstack19:57
*** heckj has quit IRC19:58
*** ohnoimdead has quit IRC19:58
*** ohnoimdead has joined #openstack19:59
*** ohnoimdead has quit IRC19:59
*** aspiers has quit IRC20:00
*** zzed has quit IRC20:01
uvirtbotNew bug: #940581 in nova "Can't rescue previously rescued instance" [Undecided,New] https://launchpad.net/bugs/94058120:01
*** esker has quit IRC20:02
*** maplebed is now known as maplebedBUSY20:03
*** andrewbogott is now known as andrewbogott_afk20:04
*** Lumiere has joined #openstack20:04
*** zzed has joined #openstack20:04
*** andrewbogott_afk is now known as andrewbogott20:05
*** xlbrlx has joined #openstack20:06
*** xlbrlx has left #openstack20:08
*** zigo has joined #openstack20:10
*** randomubuntuguy has quit IRC20:11
*** krow has quit IRC20:11
*** aspiers has joined #openstack20:12
*** tmichael has joined #openstack20:12
*** dachary has joined #openstack20:13
*** andrewsmedina has quit IRC20:14
*** krow has joined #openstack20:16
*** rcc has joined #openstack20:17
*** rcc has left #openstack20:17
*** marrusl has joined #openstack20:19
*** warik_ has joined #openstack20:21
*** warik has quit IRC20:21
*** warik_ is now known as warik20:21
*** igustin has joined #openstack20:22
*** andrewbogott is now known as andrewbogott_afk20:27
*** dachary has quit IRC20:30
*** shraddha has quit IRC20:30
*** Kylie has quit IRC20:32
*** ggi_ has joined #openstack20:33
*** hermy is now known as hermy|away20:36
*** jakedahn has quit IRC20:38
*** stuntmachine has quit IRC20:38
*** jakedahn has joined #openstack20:39
*** jakedahn has quit IRC20:40
*** jakedahn has joined #openstack20:40
*** dhellmann has quit IRC20:40
*** dhellmann has joined #openstack20:40
*** maplebedBUSY is now known as maplebed20:41
*** marrusl has quit IRC20:42
*** marrusl has joined #openstack20:42
*** clauden has quit IRC20:42
*** ggi_ has quit IRC20:43
*** stuntmachine has joined #openstack20:44
*** martine has quit IRC20:44
*** wilmoore has quit IRC20:47
*** littleidea has quit IRC20:48
*** NashTrash has joined #openstack20:49
NashTrashHello Stackers20:49
NashTrashIs anyone using swift-information with statsd and graphite?20:50
*** littleidea has joined #openstack20:50
claygNashTrash: this? https://github.com/pandemicsyn/swift-informant20:50
NashTrashYes.  I am trying to get that working and running into some problems.20:50
*** dpippenger has quit IRC20:51
NashTrashAfter installing it I modify my proxy.conf per the directions, when I restart proxy (it takes forever to start) and stops responding to all client requests20:52
clayghmm.. wow.. timeouts connecting to statsd?20:53
NashTrashmaybe, but I see no logging output anywhere indicating problems20:53
*** zigo has quit IRC20:53
claygI honestly havn't used it much - I'm trying to get pandemicsyn's attention, but he's acctually (oddly enough) looking at our graphs!20:54
pandemicsynNashTrash: no errors in proxy.error ?20:55
pandemicsynor where ever you're logging swift error's too20:56
*** zigo has joined #openstack20:57
*** ik04ka has quit IRC20:59
*** krow has quit IRC20:59
*** krow has joined #openstack21:01
uvirtbotNew bug: #940616 in nova "snapshots detail view broken" [High,In progress] https://launchpad.net/bugs/94061621:01
*** j^2 has quit IRC21:04
NashTrashpandemicsyn: Sorry, got pulled away for a moment.  No, the proxy appeared running but everything I threw at it timed out.21:07
NashTrashpandemicsyn: Everything logs to syslog and nothing odd was appearing there21:07
NashTrashpandemicsyn: Here is what my proxy.conf looks like: http://paste.openstack.org/show/4996/21:09
*** ayoung has quit IRC21:10
*** Tristan|i3D has quit IRC21:11
uvirtbotNew bug: #940619 in nova "Tempest resize test fails with kvm/libvirt" [Undecided,New] https://launchpad.net/bugs/94061921:12
*** aim-On has joined #openstack21:13
*** praefect has quit IRC21:14
*** mrjazzcat has quit IRC21:17
pandemicsynNashTrash: looks ok, if you pull informant out of the pipeline i assume everything's good ?21:17
*** dpippenger has joined #openstack21:17
NashTrashpandemicsyn: It still takes a very long time (~2min) for the proxy to start (swift-init proxy start), but it does serve requests at least21:18
*** markvoelker has quit IRC21:18
NashTrashpandemicsyn: Should I be restarting memcached on any/all of the proxy servers too?21:19
pandemicsyndoesn't hurt but generally you don't need to21:19
NashTrashpandemicsyn: Ah, just got a big error dump…one moment...21:20
*** mrjazzcat has joined #openstack21:22
NashTrashpandemicsyn: Nope.  It says: proxy-server Client disconnected on read21:22
NashTrash… proxy-server STDOUT: error: [Errno 32] Broken pipe21:22
NashTrashlooks like the client just broke connection after it timed out21:22
*** mrjazzcat has quit IRC21:23
*** mrjazzcat has joined #openstack21:23
NashTrashhuh…now things are working21:23
NashTrashlooks like it just needed a bunch of time to get things sorted out (question mark?)21:23
pandemicsynheh, weird. not sure what happened there.21:24
*** lborda_ has quit IRC21:25
*** lborda has joined #openstack21:25
*** nelson1234 has quit IRC21:28
*** nelson1234 has joined #openstack21:28
*** nelson1234 has left #openstack21:28
*** nelson1234 has joined #openstack21:29
*** aspiers has quit IRC21:30
*** hhoover has quit IRC21:34
NashTrashpandemicsyn: Yeah.  It all appears to be working nicely now.21:34
NashTrashpandemicsyn: I take it that in graphite, stats vs. stat_counts is values vs. occurance21:35
js42question about hypervisor support: Is there a document or pointer somewhere comparing kvm and xen for private cloud deployments in openstack?  It looks like kvm is in the reference architecture as the default, but I saw references that Rackspace will be using Xen.  Is that true-ish?21:35
*** marrusl has quit IRC21:38
*** marrusl has joined #openstack21:38
pandemicsynNashTrash: stats.whatever is rate count/sec , count as the asbolute value for your flush interval21:41
pandemicsyncount is the absolute value*21:41
*** dprince has quit IRC21:42
*** aspiers has joined #openstack21:42
*** jakedahn_ has joined #openstack21:44
*** jtanner has quit IRC21:44
*** jakedahn_ is now known as zomgwtfbbq21:45
*** zomgwtfbbq has quit IRC21:45
*** adjohn has joined #openstack21:46
*** cloudvirt has quit IRC21:48
*** CaptTofu has joined #openstack21:48
uvirtbotNew bug: #940637 in keystone "Default compute port should be 8774" [Undecided,In progress] https://launchpad.net/bugs/94063721:51
*** andrewsmedina has joined #openstack21:52
*** dubsquared has joined #openstack21:52
*** sannes has quit IRC21:52
phschwartzCan I use CMake to generate an RPM spec file and DEB control file but not create a package?21:53
*** julian_c has joined #openstack21:55
*** stuntmachine has quit IRC21:55
NashTrashpandemicsyn: Cool.  I am liking it so far.  Thanks for the great tool.21:55
*** nelson1234 has quit IRC21:58
*** nelson1234 has joined #openstack21:59
*** robbiew has quit IRC22:00
*** mnabil has quit IRC22:01
*** clauden has joined #openstack22:03
*** NashTrash has left #openstack22:06
*** epim has joined #openstack22:10
*** CaptTofu has quit IRC22:11
*** nati has joined #openstack22:11
*** bradhedlund has quit IRC22:11
*** rnorwood has quit IRC22:12
*** aweiss has joined #openstack22:14
*** aweiss has left #openstack22:14
*** aweiss has joined #openstack22:14
*** deshantm_ has joined #openstack22:15
*** rods has quit IRC22:15
*** mdomsch_ has quit IRC22:15
*** deshantm has quit IRC22:16
*** almaisan-away is now known as al-maisan22:16
*** hub_cap has quit IRC22:19
*** nati has quit IRC22:21
Kiallphschwartz: pong (28,800 second ping time is pretty damn crap)22:21
mutexis there a 'clean old zombie vms' command for nova ?22:21
*** dneary has joined #openstack22:21
*** nati has joined #openstack22:21
Kiall"zombie vms"?22:21
mutexI rebooted my nova-manager and now it shows a bunch of old vms running that are clearly not running22:21
mutexi'd rather not have to login to mysql and drop them all from teh instances table22:22
mutexmaybe something is wrong and the system shouldn't do this22:23
mutexrunning euca-terminate does not yield any results22:23
*** caryp has quit IRC22:24
phschwartzkiall: lol.22:27
*** al-maisan has left #openstack22:27
phschwartzI figured out the issue earlier. ty though :)22:27
*** caryp has joined #openstack22:27
*** al-maisan has joined #openstack22:27
phschwartzIt was questions about running with your scripts but with an external gateway for the instances22:27
*** rcc has joined #openstack22:27
*** al-maisan is now known as almaisan-away22:28
*** rcc has left #openstack22:28
*** msavy has quit IRC22:30
*** jog0 has left #openstack22:30
*** bradhedlund has joined #openstack22:31
*** kbringard has quit IRC22:32
sniperdIm getting tons of "unable to open database file" issues from my new swift install, https://gist.github.com/033694668df53ba32b4d -- Permissions are fine on /etc/swift22:38
sniperd1.4.6-0ubuntu0~ppa1~maverick1 installed from packages22:39
*** hhoover has joined #openstack22:40
*** hhoover has left #openstack22:41
*** dubsquared has quit IRC22:42
*** clauden has quit IRC22:46
*** lts has quit IRC22:55
*** Glacee has quit IRC22:55
*** hhoover has joined #openstack22:59
*** hhoover has left #openstack22:59
*** dubsquared has joined #openstack22:59
*** aspiers has quit IRC23:00
*** Gordonz has quit IRC23:02
*** cryptk is now known as cryptk|offline23:05
*** hermy|away is now known as hermy23:05
*** bradhedlund has quit IRC23:05
*** littleidea has quit IRC23:06
*** littleidea has joined #openstack23:06
*** dneary has quit IRC23:08
*** jastr has joined #openstack23:09
*** lborda has quit IRC23:12
*** aspiers has joined #openstack23:12
*** alrs has quit IRC23:13
*** andrewsmedina has quit IRC23:15
uvirtbotNew bug: #940689 in horizon "Unicode support for swift" [Undecided,In progress] https://launchpad.net/bugs/94068923:16
*** sandywalsh has quit IRC23:18
*** zzed has quit IRC23:21
*** ppradhan has left #openstack23:23
*** zigo has quit IRC23:23
*** e1mer has joined #openstack23:24
*** rnorwood has joined #openstack23:27
*** julian_c has quit IRC23:27
*** bsza has quit IRC23:29
*** alrs has joined #openstack23:37
technologov_Is there Nova PDF Docs for essex ?23:40
*** littleidea has quit IRC23:41
uvirtbotNew bug: #940693 in devstack "Default VM images do not inject private IPs on secondary interfaces for quantum network manager" [Undecided,In progress] https://launchpad.net/bugs/94069323:41
*** mattray has quit IRC23:42
*** jakedahn has quit IRC23:42
*** Leseb_ has joined #openstack23:46
*** sandywalsh has joined #openstack23:52
*** jastr has quit IRC23:53
*** Leseb_ has quit IRC23:54
*** deshantm_ has quit IRC23:54
*** dolphm has quit IRC23:56

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!