[Openstack] listing extensions in Openstack Nova

2012-09-27 Thread Trinath Somanchi
Hi-

How to get the list of Controller and Resource extensions which exists with
the wsgi.routing_args in the Openstack Nova API.

Can any one please guide me on the same.

Thanks in advance

-- 
Regards,
--
Trinath Somanchi,
+91 9866 235 130
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Swift reliability

2012-09-27 Thread Phil Holden
Hello,

In 
https://lists.launchpad.net/openstack/msg16969.html
John Dickinson wrote 

 The 404s on object PUTs are probably related to the timeout errors you 
 are seeing on the container servers. This may be because of IO 
 contention on your hardware (eg overtaxed drives). How does the disk IO 
 look on your physical hardware?

I should have clarified that one or two of the threads, where each thread 
has its own container to work on, gets stuck like this, while the other 
threads continue OK.  For a transient problem on one container it will 
retry and eventually continue.  If it was an overload issue I would 
expect it to move from container to container, but all threads would make
some kind of progress as they retry.  

 The disk full errors may be because you are running out of inodes on 
 the filesystem. You can check this with `df -i`. This is possible if 
 you are using many small files.

This occurred with the filesystems configured with 
mkfs.xfs -i size=1024,maxpct=0
maxpct=0 is unlimited inodes.  The filesystem is mounted with the inode64 
option, although as each filesystem in this test system is only 10 Gbytes 
32-bit inode numbers should be adequate.  df on the filesystems reported 
59% space usage and 31% inode usage (+/- 1% or 2%).  

As ext4, the filesystems are configured with 5 million inodes, but only 
~25% of them are used as the filesystems get near to full, so this is a 
bit over-provisioned.  


 Regards
   - Phil -



NOTICE: Cognito Limited. Benham Valence, Newbury, Berkshire, RG20 8LU.  UK. 
Company number 02723032.  This e-mail message and any attachment is 
confidential. It may not be disclosed to or used by anyone other than the 
intended recipient. If you have received this e-mail in error please notify the 
sender immediately then delete it from your system. Whilst every effort has 
been made to check this mail is virus free we accept no responsibility for 
software viruses and you should check for viruses before opening any 
attachments. Opinions, conclusions and other information in this email and any 
attachments which do not relate to the official business of the company are 
neither given by the company nor endorsed by it.

This email message has been scanned for viruses by Mimecast


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


[Openstack] Updating Metadata for an instance.

2012-09-27 Thread Srikanth Kumar Lingala
Hi,
I created an instance with the following command:

*#   nova boot  --meta creator=srikanth --meta desc='This is a Test
Description' --flavor=1 --image=4671e99b-1c01-42e8-94d6-2405a59bab57
testserver*
*
*
I am able to see  a file - 'meta.js' in '/' directory of instance file
system, with the given metadata values. And, I can be able to see those
meta values under 'Instance Detail' of that particular instance in Horizon.
Now, I want to modify the metadata, for example here...I want to change the
metadata value for the key 'creator'.

I used the following CURL command to modify the metadata

*#  curl -k -D - -H X-Auth-Token: fba5f4286dc245b4b3c4112d770afe29 -X
'POST' -v
http://10.232.0.3:8774/v2/7a6bf89048d04871bb9b46b4f8509198/servers/329ead9d-7cb9-425c-a0c6-a6175a23aa88/metadata-d
'{ metadata : { creator : kumar }}'  -H 'Content-type:
application/json'*
*
*
I got HTTP/1.1 200 OK response, with the modified metadata values. I am
able to see the same on Horizon. But, when I reboot the instance, and see
/meta.js, it has the old values. Why it is showing old values? Metadata
really modified? Please let me know.

-- 

Srikanth.
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] openstack -- xcp - devstack

2012-09-27 Thread John Garbutt
Hi,

I suspect the problem is that your VM was unable to access the internet on the 
VM's interface specified by: HOST_IP_IFACE

You can see how the Ubuntu install parameters are specified here:
https://github.com/openstack-dev/devstack/blob/master/tools/xen/scripts/install_ubuntu_template.sh#L53

What version of XCP are you running? Are you using any tools to connect to the 
console of the VM?

I hope that helps,
John

From: openstack-bounces+john.garbutt=citrix@lists.launchpad.net 
[mailto:openstack-bounces+john.garbutt=citrix@lists.launchpad.net] On 
Behalf Of Afef MDHAFFAR
Sent: Wednesday, September 26, 2012 9:39 AM
To: openstack@lists.launchpad.net
Subject: Re: [Openstack] openstack -- xcp - devstack

Actually, when I deeply looked on the problem, I found that  there is no 
partition in the device that could be mapped by the kpartx command.

Any ideas how to solve it?

Thank you,
Afef
2012/9/26 Afef MDHAFFAR 
afef.mdhaf...@gmail.commailto:afef.mdhaf...@gmail.com
Hi all,

I am trying to install openstack via devstack.
I use Ubuntu Server 12.04 and XCP.
I mainly followed this link : 
https://github.com/openstack-dev/devstack/blob/master/tools/xen/README.md.
The execution of the script hangs in this state:

+ echo 'Waiting for DevStackOSDomU to finish installation...'
Waiting for DevStackOSDomU to finish installation...
+ sleep 20
+ true
++ xe_min vm-list name-label=DevStackOSDomU power-state=halted
++ local cmd=vm-list
++ shift
++ xe vm-list --minimal name-label=DevStackOSDomU power-state=halted
+ state=
+ '[' -n '' ']'
***
I thought that installing DomU from the scratch could take time, and I waited 
more 1H and 30 min. Unfortunately, nothing happened.

Then, I tried to shutdown the machine manually via : xe vm-shutdown 
name-label=DevStackOSDomU force=true. The script continues working, but it then 
exits while showing a mapping error : Failed to find mapping

Would you please help to fix this problem?

Thank you

Best regards,
Afef




--
Afef MDHAFFAR
http://www.redcad.org/members/mdhaffar/


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Regarding Tempest for Integration testing of Openstack Environment

2012-09-27 Thread David Kranz

On 9/26/2012 2:55 AM, Girija Sharan wrote:

Hello all,

I am using Tempest *stable/essex* not master. And in stable/essex 
there are very less number of tests as compared to tests in master. 
Would you please suggest me which one should I use.


One important thing is that in master version there are couple of 
tests in network directory but there are no such tests in 
stable/essex. Please explain little bit about purpose of these tests.


Actually I want to test Quantum networks. Will these tests in Tempest 
master be sufficient for that ??


Thanks and Regards,
Girija Sharan Singh


Tempest stable/essex is tracking the stable/essex releases of the 
projects being tested. It is basically the state of tempest as of when 
essex was released with a few updates after that. The main line of 
tempest work since then has been on master which is why there are a lot 
more tests. You should use master. A number of people are working on 
tempest/quantum testing. There was a discussion a week or two ago based 
on this http://etherpad.openstack.org/quantum-tempest. I suggest you 
coordinate with those folks so as to not duplicate effort.


 -David
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


[Openstack] OpenStack 2012.2 (Folsom) released !

2012-09-27 Thread Thierry Carrez
Hello everyone,

It is my great pleasure to announce the immediate release of OpenStack
2012.2, codenamed Folsom. This release includes two new services:
OpenStack Networking (Quantum) and OpenStack Block Storage (Cinder).

You can find source tarballs for each component, together with lists of
features and bugfixes introduced during this 6-month development cycle, at:

OpenStack Compute:https://launchpad.net/nova/folsom/2012.2
OpenStack Object Storage: https://launchpad.net/swift/folsom/1.7.4
OpenStack Image Service:  https://launchpad.net/glance/folsom/2012.2
OpenStack Networking: https://launchpad.net/quantum/folsom/2012.2
OpenStack Block Storage:  https://launchpad.net/cinder/folsom/2012.2
OpenStack Identity:   https://launchpad.net/keystone/folsom/2012.2
OpenStack Dashboard:  https://launchpad.net/horizon/folsom/2012.2

You're strongly encouraged to read the Release Notes, available at:
http://wiki.openstack.org/ReleaseNotes/Folsom

We hope you will enjoy this release as much as we have enjoyed creating it.

-- 
Thierry Carrez (ttx)
Release Manager, OpenStack

___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] [Docs] Documentation set for Folsom

2012-09-27 Thread Bontala, Vibhuvardhan
Hi,

Could someone send me a reference to my request below?

Thanks
Vibhu

-Original Message-
From: openstack-bounces+vibhuvardhan.bontala=emc@lists.launchpad.net 
[mailto:openstack-bounces+vibhuvardhan.bontala=emc@lists.launchpad.net] On 
Behalf Of Bontala, Vibhuvardhan
Sent: Wednesday, September 26, 2012 5:47 PM
To: Anne Gentle
Cc: openstack@lists.launchpad.net (openstack@lists.launchpad.net)
Subject: Re: [Openstack] [Docs] Documentation set for Folsom

Hi Anne,

Do you have a similar pointer to the Image Service for Folsom? I am interested 
in the API reference specifically.

Thanks
Vibhu

-Original Message-
From: openstack-bounces+vibhuvardhan.bontala=emc@lists.launchpad.net 
[mailto:openstack-bounces+vibhuvardhan.bontala=emc@lists.launchpad.net] On 
Behalf Of Anne Gentle
Sent: Tuesday, September 25, 2012 11:40 AM
To: Patrick Petit
Cc: openstack@lists.launchpad.net (openstack@lists.launchpad.net)
Subject: Re: [Openstack] [Docs] Documentation set for Folsom

Hi Patrick -

The Quantum admin guide in its current state is publishing here:
http://docs.openstack.org/trunk/openstack-network/admin/content/

You can review the ongoing work here:
https://review.openstack.org/#/q/status:open+project:openstack/openstack-manuals,n,z

For documentation, we typically keep the master branch publishing to
docs.openstack.org/trunk/ and will cut a docs.openstack.org/folsom/
set of documents about a month after the software release.

Hope this is helpful -
Anne

On Tue, Sep 25, 2012 at 10:16 AM, Patrick Petit
patrick.michel.pe...@gmail.com wrote:
 Hi There,

 Can someone tell me what is current plan regarding the release of the
 documentation set for Folsom?
 Of particular interest is the admin guide extension covering Quantum.
 Thanks
 Patrick

 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] [Docs] Documentation set for Folsom

2012-09-27 Thread Anne Gentle
Hello Vibhu -

Apologies for a delayed response. I'm having trouble automatically
publishing the Image API specs right now.
Here is the 1.1 API spec for the Image service (glance).

http://docs.openstack.org/api/openstack-image-service/1.1/content/

Thanks,
Anne


On Wed, Sep 26, 2012 at 4:46 PM, Bontala, Vibhuvardhan
vibhuvardhan.bont...@emc.com wrote:
 Hi Anne,

 Do you have a similar pointer to the Image Service for Folsom? I am 
 interested in the API reference specifically.

 Thanks
 Vibhu

 -Original Message-
 From: openstack-bounces+vibhuvardhan.bontala=emc@lists.launchpad.net 
 [mailto:openstack-bounces+vibhuvardhan.bontala=emc@lists.launchpad.net] 
 On Behalf Of Anne Gentle
 Sent: Tuesday, September 25, 2012 11:40 AM
 To: Patrick Petit
 Cc: openstack@lists.launchpad.net (openstack@lists.launchpad.net)
 Subject: Re: [Openstack] [Docs] Documentation set for Folsom

 Hi Patrick -

 The Quantum admin guide in its current state is publishing here:
 http://docs.openstack.org/trunk/openstack-network/admin/content/

 You can review the ongoing work here:
 https://review.openstack.org/#/q/status:open+project:openstack/openstack-manuals,n,z

 For documentation, we typically keep the master branch publishing to
 docs.openstack.org/trunk/ and will cut a docs.openstack.org/folsom/
 set of documents about a month after the software release.

 Hope this is helpful -
 Anne

 On Tue, Sep 25, 2012 at 10:16 AM, Patrick Petit
 patrick.michel.pe...@gmail.com wrote:
 Hi There,

 Can someone tell me what is current plan regarding the release of the
 documentation set for Folsom?
 Of particular interest is the admin guide extension covering Quantum.
 Thanks
 Patrick

 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp


 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] [Docs] Documentation set for Folsom

2012-09-27 Thread Bontala, Vibhuvardhan
Thanks Anne.

-Original Message-
From: annegen...@justwriteclick.com [mailto:annegen...@justwriteclick.com] On 
Behalf Of Anne Gentle
Sent: Thursday, September 27, 2012 2:23 PM
To: Bontala, Vibhuvardhan
Cc: openstack@lists.launchpad.net (openstack@lists.launchpad.net)
Subject: Re: [Openstack] [Docs] Documentation set for Folsom

Hello Vibhu -

Apologies for a delayed response. I'm having trouble automatically
publishing the Image API specs right now.
Here is the 1.1 API spec for the Image service (glance).

http://docs.openstack.org/api/openstack-image-service/1.1/content/

Thanks,
Anne


On Wed, Sep 26, 2012 at 4:46 PM, Bontala, Vibhuvardhan
vibhuvardhan.bont...@emc.com wrote:
 Hi Anne,

 Do you have a similar pointer to the Image Service for Folsom? I am 
 interested in the API reference specifically.

 Thanks
 Vibhu

 -Original Message-
 From: openstack-bounces+vibhuvardhan.bontala=emc@lists.launchpad.net 
 [mailto:openstack-bounces+vibhuvardhan.bontala=emc@lists.launchpad.net] 
 On Behalf Of Anne Gentle
 Sent: Tuesday, September 25, 2012 11:40 AM
 To: Patrick Petit
 Cc: openstack@lists.launchpad.net (openstack@lists.launchpad.net)
 Subject: Re: [Openstack] [Docs] Documentation set for Folsom

 Hi Patrick -

 The Quantum admin guide in its current state is publishing here:
 http://docs.openstack.org/trunk/openstack-network/admin/content/

 You can review the ongoing work here:
 https://review.openstack.org/#/q/status:open+project:openstack/openstack-manuals,n,z

 For documentation, we typically keep the master branch publishing to
 docs.openstack.org/trunk/ and will cut a docs.openstack.org/folsom/
 set of documents about a month after the software release.

 Hope this is helpful -
 Anne

 On Tue, Sep 25, 2012 at 10:16 AM, Patrick Petit
 patrick.michel.pe...@gmail.com wrote:
 Hi There,

 Can someone tell me what is current plan regarding the release of the
 documentation set for Folsom?
 Of particular interest is the admin guide extension covering Quantum.
 Thanks
 Patrick

 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp


 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp



___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Doc on nova-volume

2012-09-27 Thread Anne Gentle
Hi Ahmed -

Some thoughts below.

On Wed, Sep 26, 2012 at 4:49 PM, Ahmed Al-Mehdi ah...@coraid.com wrote:
 Hello,

 I recently setup an OpenStack environment using two servers.  I read-up the
 document Object Storage Administration Guide at the OpenStack site.  I
 have two questions:
  - I love the first few chapters of this document that talks about
 conceptual parts of a cloud OS, and then maps the components in it to what
 is provided by OpenStack.  However, this document refers to the Cactus
 release.  Is there an updated document for the Essex release  (containing
 similar chapters)?

I believe the only reference to Cactus in the Object Storage Admin
Guide is that Glance has been stable since Cactus. Please re-read the
sections starting here:
For folsom: 
http://docs.openstack.org/trunk/openstack-object-storage/admin/content/logical-architecture.html

For essex: 
http://docs.openstack.org/essex/openstack-object-storage/admin/content/logical-architecture.html

  - I am trying to understand (detail wise) the difference in services
 provided by swift (object store) and nova-volume.  For example, if I wanted
 to provide storage/volumes/LUNs via FCoE, should I be pretty much focusing
 on the nova-volume module.

Object Storage is Swift, Block storage is Cinder as of the Folsom
release. Please read:
http://docs.openstack.org/trunk/openstack-object-storage/admin/content/overview-block-storage-arch.html

We don't yet have a separate Block Storage Admin guide to point to.

Hope this helps.
Anne


 Any pointers to documents would be most appreciated.

 Thank you,
 Ahmed.



 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


[Openstack] multi-process-api-service

2012-09-27 Thread Nandavar, Divakar Padiyar (STSD)
From the information available in the blueprint for 
multi-process-api-service I see that implementation has been completed and 
would be available as part of Folsom release  
https://blueprints.launchpad.net/nova/+spec/multi-process-api-service

I see the advantage in back porting this to ESSEX as well.  Any thoughts on 
this?   Were there any discussion earlier on this topic for back porting to 
ESSEX?  

Thanks,
Divakar


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] OpenStack 2012.2 (Folsom) released !

2012-09-27 Thread Razique Mahroua
Congratulations to all of you guys
Nuage  Co - Razique Mahrouarazique.mahr...@gmail.com

Le 27 sept. 2012 à 18:05, Thierry Carrez thie...@openstack.org a écrit :Hello everyone,It is my great pleasure to announce the immediate release of OpenStack2012.2, codenamed "Folsom". This release includes two new services:OpenStack Networking ("Quantum") and OpenStack Block Storage ("Cinder").You can find source tarballs for each component, together with lists offeatures and bugfixes introduced during this 6-month development cycle, at:OpenStack Compute: https://launchpad.net/nova/folsom/2012.2OpenStack Object Storage: https://launchpad.net/swift/folsom/1.7.4OpenStack Image Service: https://launchpad.net/glance/folsom/2012.2OpenStack Networking: https://launchpad.net/quantum/folsom/2012.2OpenStack Block Storage: https://launchpad.net/cinder/folsom/2012.2OpenStack Identity: https://launchpad.net/keystone/folsom/2012.2OpenStack Dashboard: https://launchpad.net/horizon/folsom/2012.2You're strongly encouraged to read the Release Notes, available at:http://wiki.openstack.org/ReleaseNotes/FolsomWe hope you will enjoy this release as much as we have enjoyed creating it.-- Thierry Carrez (ttx)Release Manager, OpenStack___Mailing list: https://launchpad.net/~openstackPost to : openstack@lists.launchpad.netUnsubscribe : https://launchpad.net/~openstackMore help : https://help.launchpad.net/ListHelp___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] multi-process-api-service

2012-09-27 Thread Narayan Desai
On Thu, Sep 27, 2012 at 2:20 PM, Nandavar, Divakar Padiyar (STSD)
divakar.padiyar-nanda...@hp.com wrote:
 From the information available in the blueprint for 
 multi-process-api-service I see that implementation has been completed and 
 would be available as part of Folsom release  
 https://blueprints.launchpad.net/nova/+spec/multi-process-api-service

 I see the advantage in back porting this to ESSEX as well.  Any thoughts on 
 this?   Were there any discussion earlier on this topic for back porting to 
 ESSEX?

I'm not sure this is particularly needed for Essex. We're successfully
running a bunch of discrete nova-api process across a few systems with
Essex, load balanced using nginx, and it works great. This requires a
little more work on the setup side, but it has proven stable for us.
(it also allows us to service any of our machines that service
nova-api requests without taking a user-visible hit, which is an added
plus)
 -nld

___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


[Openstack] Quantum network configurations for individual VMs

2012-09-27 Thread Jānis Ģeņģeris
Hello,

What are the limitations that can be done with quantum related to NIC
configuration for individual VMs?

For example, is it possible to have multiple floating IPs and multiple
fixed IPs assigned to the same
VM (the IPs might come from the same and/or different subnets)? How much
does it depend on the chosen hypervisor?

Quantum documentation is quite recent and is still full of 'TBD', but in
the current version there is nothing about
the features/limitations Quantum brings to the individual VM instance
network configuration in comparison to legacy
nova-network.

Regards,
--janis
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


[Openstack] Providing a Unified View of OpenStack Projects

2012-09-27 Thread Stefano Maffulli
Hi all,

You are invited to learn about and provide feedback regarding an
integration project we are undertaking to achieve interoperability of
content within and between OpenStack projects with dashboards, reports,
traceability, and faceted search. We have embarked on a pilot project
with zAgile, using their open source Wikidsmart platform, which is an
integration platform for software engineering tools as well as other
applications like Help Desk and CRM.

I'm excited to share with you the results of the pilot and solicit your
feedback in the following ways:

 * Blog post with more details:

http://www.openstack.org/blog/2012/09/providing-a-unified-view-of-openstack-projects/

 *  Webinar, Friday, October 5, 9am PDT / Noon EDT / 6pm CEST: we will
present the pilot and gather feedback: Register here
http://openstack.enterthemeeting.com/m/1GQI39PC

 * OpenStack Summit: Wednesday, October 17 in San Diego. Confirm the
time slot and full agenda at the website
http://openstacksummitfall2012.sched.org/event/a5194145c6d2667d3e9d83a5d012bf83

 * Survey: tell us what you think by answering four short questions. You
can respond either before or after attending the webinar or Summit slot.
 Fill out the survey here https://www.surveymonkey.com/s/78JXGLC

I hope that you may participate in the discussion, and I forward to your
feedback.

Best regards,
Stefano Maffulli
OpenStack Community Manager

___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


[Openstack] Blog post: OpenStack Nova Internals - Pt2 - Services

2012-09-27 Thread Sandy Walsh
Went a little crazy on this one ... please let me know about the many blatant 
mistakes so I can edit quickly :)

http://www.sandywalsh.com/2012/09/openstack-nova-internals-pt2-services.html

Thanks!
-S
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


[Openstack] [OpenStack][Swift] Does .meta file is using for storing extended metadat in Swift?

2012-09-27 Thread Kuo Hugo
Hi folks ,

We would like to add more metadata to an object .
In my memory , there's a file will be created named .meta

I'm not sure if this file is for storing more metadata ?

Could someone share more information ?

When will a .meta file be produced ?


-- 
+Hugo Kuo+
tonyt...@gmail.com
+ tonyt...@gmail.com886 935004793
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


[Openstack-qa-team] Proposals for the Design Summit QA track

2012-09-27 Thread David Kranz
Folks, there are already a number of proposals for sessions that can be 
seen at http://summit.openstack.org/.  I will be reviewing them early 
next week so I encourage any one who wants to lead a session, or has a 
topic that should be discussed, to make a proposal at that page. If you 
want to propose a session topic, but are not going to be at the summit, 
please contact me. Remember that these sessions are not presentations 
with slides, but are intended to be discussions of current or future 
QA-related work or processes.


 -David

--
Mailing list: https://launchpad.net/~openstack-qa-team
Post to : openstack-qa-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-qa-team
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack-qa-team] PyVows proof of concept

2012-09-27 Thread David Kranz
We discussed this a bit at the meeting today. Monty has proposed a 
session on the QA track about parallelizing some of the CI stuff. He 
believes tempest could share the parallelization code. See 
http://summit.openstack.org/cfp/details/69.
Parallelizing the tempest gate job is as much of a ci issue as a tempest 
issue and working with them, and their proposal, could make things much 
easier for us IMO.


 -David

On 9/27/2012 8:10 PM, Daryl Walleck wrote:

I agree on the issue with the output from generated tests. That is troublesome, 
but from what I've seen in the source code, probably something that could be 
remedied. It's also very generous in it's parallel execution which is fine 
client-side, but can overwhelm a test environment since there's no 
configuration to throttle back the number of tests being executed at a time. 
Unfortunately I haven't seen a Python test runner that meets all the criteria 
that I'd like to have, thus this and other little proof of concepts I've been 
tossing around to see if any better approaches are out there.

Daryl

From: openstack-qa-team-bounces+daryl.walleck=rackspace@lists.launchpad.net 
[openstack-qa-team-bounces+daryl.walleck=rackspace@lists.launchpad.net] on 
behalf of Jaroslav Henner [jhen...@redhat.com]
Sent: Monday, September 24, 2012 7:28 AM
To: openstack-qa-team@lists.launchpad.net
Subject: [Openstack-qa-team] PyVows proof of concept

In reply to:
https://lists.launchpad.net/openstack-qa-team/msg00236.html, which
didn't came to my mailbox for some reason (attachment?)

I tried pyVows myself. I kinda liked the concept, but I didn't like the
way it is reporting to JUnit format XML when using generative testing:
http://heynemann.github.com/pyvows/#-using-generative-testing

In Jenkins, it looked like:

Test Result : Add
-
should_be_numeric   0 msPassed
should_be_numeric   0 msPassed
should_be_numeric   0 msPassed
should_be_numeric   0 msPassed
should_be_numeric   0 msPassed
should_be_numeric   0 msPassed

The parameters to the testing method are important when using generative
testing, so I think they should be included in the name of the test. But
some funny characters like
()%* I don't remember which
are causing problems in Jenkins. I was investigating some problems with
them months ago with some other testing framework. I don't know how to
address this problem. It may be worthy to consider making some Robot
framework outputs plugin if generative testing is needed, or use Robot
Framework

https://wiki.jenkins-ci.org/display/JENKINS/Robot+Framework+Plugin

J.H.

--
Mailing list: https://launchpad.net/~openstack-qa-team
Post to : openstack-qa-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-qa-team
More help   : https://help.launchpad.net/ListHelp





--
Mailing list: https://launchpad.net/~openstack-qa-team
Post to : openstack-qa-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-qa-team
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack-qa-team] PyVows proof of concept

2012-09-27 Thread David Kranz

Agreed. Daryl, is there a  list of these issues some where?



On 9/27/2012 10:54 PM, Daryl Walleck wrote:

I'm certainly all for anything that makes things easier. However, I do want to 
make sure that if we migrate runners, we should make sure that the new 
implementation solves all the issues we're trying to address.

Daryl

From: openstack-qa-team-bounces+daryl.walleck=rackspace@lists.launchpad.net 
[openstack-qa-team-bounces+daryl.walleck=rackspace@lists.launchpad.net] on 
behalf of David Kranz [david.kr...@qrclab.com]
Sent: Thursday, September 27, 2012 8:11 PM
To: openstack-qa-team@lists.launchpad.net
Subject: Re: [Openstack-qa-team] PyVows proof of concept

We discussed this a bit at the meeting today. Monty has proposed a
session on the QA track about parallelizing some of the CI stuff. He
believes tempest could share the parallelization code. See
http://summit.openstack.org/cfp/details/69.
Parallelizing the tempest gate job is as much of a ci issue as a tempest
issue and working with them, and their proposal, could make things much
easier for us IMO.

   -David

On 9/27/2012 8:10 PM, Daryl Walleck wrote:

I agree on the issue with the output from generated tests. That is troublesome, 
but from what I've seen in the source code, probably something that could be 
remedied. It's also very generous in it's parallel execution which is fine 
client-side, but can overwhelm a test environment since there's no 
configuration to throttle back the number of tests being executed at a time. 
Unfortunately I haven't seen a Python test runner that meets all the criteria 
that I'd like to have, thus this and other little proof of concepts I've been 
tossing around to see if any better approaches are out there.

Daryl

From: openstack-qa-team-bounces+daryl.walleck=rackspace@lists.launchpad.net 
[openstack-qa-team-bounces+daryl.walleck=rackspace@lists.launchpad.net] on 
behalf of Jaroslav Henner [jhen...@redhat.com]
Sent: Monday, September 24, 2012 7:28 AM
To: openstack-qa-team@lists.launchpad.net
Subject: [Openstack-qa-team] PyVows proof of concept

In reply to:
https://lists.launchpad.net/openstack-qa-team/msg00236.html, which
didn't came to my mailbox for some reason (attachment?)

I tried pyVows myself. I kinda liked the concept, but I didn't like the
way it is reporting to JUnit format XML when using generative testing:
http://heynemann.github.com/pyvows/#-using-generative-testing

In Jenkins, it looked like:

Test Result : Add
-
should_be_numeric   0 msPassed
should_be_numeric   0 msPassed
should_be_numeric   0 msPassed
should_be_numeric   0 msPassed
should_be_numeric   0 msPassed
should_be_numeric   0 msPassed

The parameters to the testing method are important when using generative
testing, so I think they should be included in the name of the test. But
some funny characters like
()%* I don't remember which
are causing problems in Jenkins. I was investigating some problems with
them months ago with some other testing framework. I don't know how to
address this problem. It may be worthy to consider making some Robot
framework outputs plugin if generative testing is needed, or use Robot
Framework

https://wiki.jenkins-ci.org/display/JENKINS/Robot+Framework+Plugin

J.H.

--
Mailing list: https://launchpad.net/~openstack-qa-team
Post to : openstack-qa-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-qa-team
More help   : https://help.launchpad.net/ListHelp




--
Mailing list: https://launchpad.net/~openstack-qa-team
Post to : openstack-qa-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-qa-team
More help   : https://help.launchpad.net/ListHelp




--
Mailing list: https://launchpad.net/~openstack-qa-team
Post to : openstack-qa-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-qa-team
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Fixed: precise_folsom_nova_trunk #648

2012-09-27 Thread openstack-testing-bot
Title: precise_folsom_nova_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_nova_trunk/648/Project:precise_folsom_nova_trunkDate of build:Thu, 27 Sep 2012 13:42:08 -0400Build duration:13 minBuild cause:Started by user adamBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 3 out of the last 5 builds failed.40ChangesNo ChangesConsole Output[...truncated 18887 lines...]deleting and forgetting pool/main/n/nova/nova-compute-lxc_2012.2+git201209250431~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-qemu_2012.2+git201209250431~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-uml_2012.2+git201209250431~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-xcp_2012.2+git201209250431~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-xen_2012.2+git201209250431~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute_2012.2+git201209250431~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-console_2012.2+git201209250431~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-consoleauth_2012.2+git201209250431~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-doc_2012.2+git201209250431~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-network_2012.2+git201209250431~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-novncproxy_2012.2+git201209250431~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-objectstore_2012.2+git201209250431~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-scheduler_2012.2+git201209250431~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-volume_2012.2+git201209250431~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-xcp-network_2012.2+git201209250431~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-xcp-plugins_2012.2+git201209250431~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-xvpvncproxy_2012.2+git201209250431~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/python-nova_2012.2+git201209250431~precise-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/nova/precise-folsom']Pushed up to revision 392.2 tags updated.INFO:root:Storing current commit for next build: 1fae8cea1d745f7756e77916b23c52bf4f05e87bINFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/precise-folsom-proposed /tmp/tmp3ujYW6/novamk-build-deps -i -r -t apt-get -y /tmp/tmp3ujYW6/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 929222705ef52ab2f644a075dd8ad723590f747f..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/precise-folsom --forcedch -b -D precise --newversion 2012.2+git201209271343~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [1fae8ce] Fixes remove_export for IetAdmdch -a [076cb9d] Fix issues with device autoassignment in xenapidch -a [fba1312] Fix NetAppCmodeISCSIDriver._get_lun_handle() methoddch -a [53a598f] Revert explicit usage of tgt-adm --conf option.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2012.2+git201209271343~precise-0ubuntu1_source.changessbuild -d precise-folsom -n -A nova_2012.2+git201209271343~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/folsom-trunk-testing nova_2012.2+git201209271343~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-folsom nova_2012.2+git201209271343~precise-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/nova/precise-folsom+ [ ! 0 ]+ jenkins-cli build precise_folsom_deployEmail was triggered for: FixedTrigger Success was overridden by another trigger and will not send an email.Sending email for trigger: Fixed-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_folsom_swift_trunk #83

2012-09-27 Thread openstack-testing-bot
Title: precise_folsom_swift_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_swift_trunk/83/Project:precise_folsom_swift_trunkDate of build:Thu, 27 Sep 2012 14:00:34 -0400Build duration:3 min 37 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0Changesreplace a value set with utils.TRUE_VALUESby meizu647editswift/obj/replicator.pyConsole Output[...truncated 3677 lines...]dch -a [7e0c4eb] Fixed leak on 499sdch -a [57b10cd] Restore old SIGPIPE handler in a proxy server test.dch -a [87c1c5d] Gracefully handle stdin flush failure on BSDdch -a [da99c33] Only set TCP_KEEPIDLE where supporteddch -a [8a7afa5] 1.7.2. changelog and version bump to 1.7.3-devdch -a [c97fb37] Fix bug where serialization_format is ignoreddch -a [568b61a] replace a value set with utils.TRUE_VALUESdch -a [411c7cb] Add README.md to the tarball.dch -a [c4f5761] builder.add_devs gets next id if not provideddch -a [bfc114b] new more helpful READMEdch -a [343968b] added disable_fallocate info to docsdch -a [2ca379d] added errno.EINVAL check to fallocatedch -a [463da7e] Adds Error Handling to swift-drive-audit for missing or unreadable /var/log/kern.logdch -a [d24e280] obj replicator speed updch -a [063789b] container_info returns a dictdch -a [a2ac5ef] swift constraints are now settable via configdch -a [3139760] Fix pep8 issuesdch -a [cde6d59] Fix pep8 issuesdch -a [c0537ac] Breakout search_devs & add get_builder() for reusedch -a [54e28fa] fix some formatdch -a [4d6ae96] fix some format issuredch -a [edaaa47] format some code according to pep8dch -a [46a093f] Obj replicator cleans up files where part dirs should be.dch -a [d56772a] Fix pep8 issues in test_memcached.py.dch -a [314d3b7] Fall back to UDP if /dev/log does not exist.dch -a [ed3b12d] Can run swift-bench across multiple cores/servers.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC swift_1.7.5+git201209271401~precise-0ubuntu1_source.changessbuild -d precise-folsom -n -A swift_1.7.5+git201209271401~precise-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'swift_1.7.5+git201209271401~precise-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'swift_1.7.5+git201209271401~precise-0ubuntu1.dsc']' returned non-zero exit status 2Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp