Re: [Openstack] Automatically boot VM after server crash

2014-12-16 Thread abhishek jain
Hi Fiorenza Which parameter needs to be set true? I can check that at my end. On Tue, Dec 16, 2014 at 1:13 PM, Fiorenza Meini wrote: > > Il 16/12/2014 07:08, abhishek jain ha scritto: > >> Hi Fiorenza >> >> I'm also able to run openstack on ubuntu server and now I'm looking to >> boot VM up au

Re: [Openstack] [ceph-users] Unable to download files from ceph radosgw node using openstack juno swift client.

2014-12-16 Thread Vivek Varghese Cherian
Hi, On Tue, Dec 16, 2014 at 12:54 PM, pushpesh sharma wrote: > > Vivek, > > The problem is swift client is only downloading a chunk of object not > the whole object so the etag mismatch. Could you paste the value of > 'rgw_max_chunk_size'. Please be sure you set this to a sane > value(<4MB, atlea

Re: [Openstack] Automatically boot VM after server crash

2014-12-16 Thread abhishek jain
Thanks Fiorenza and Mad engineer. I'll test and let you know if any progress regarding this. On Tue, Dec 16, 2014 at 3:36 PM, Fiorenza Meini wrote: > > Il 16/12/2014 10:26, abhishek jain ha scritto: > >> Hi Fiorenza >> >> Which parameter needs to be set true? I can check that at my end. >> >> >

Re: [Openstack] Automatically boot VM after server crash

2014-12-16 Thread Fiorenza Meini
Il 16/12/2014 10:26, abhishek jain ha scritto: Hi Fiorenza Which parameter needs to be set true? I can check that at my end. Hi, the parameter is this one: resume_guests_state_on_host_boot=True You can find it in nova.conf file. Regards Fiorenza _

Re: [Openstack] Automatically boot VM after server crash

2014-12-16 Thread mad Engineer
there is a libvirt way to do this,using "virsh autostart" or creating symlinks manually,but i don't know what its impact in an openstack environment. On Tue, Dec 16, 2014 at 2:56 PM, abhishek jain wrote: > Hi Fiorenza > > Which parameter needs to be set true? I can check that at my end. > > On T

Re: [Openstack] [ceph-users] Unable to download files from ceph radosgw node using openstack juno swift client.

2014-12-16 Thread Vivek Varghese Cherian
Hi, root@ppm-c240-ceph3:/var/run/ceph# ceph --admin-daemon /var/run/ceph/ceph-osd.11.asok config show | less | grep rgw_max_chunk_size "rgw_max_chunk_size": "524288", root@ppm-c240-ceph3:/var/run/ceph# And the value is above 4 MB. Regards, -- Vivek Varghese Cherian

[Openstack] How to use jsp project in openstack

2014-12-16 Thread kyawthu win
Hi, I am writing a web-based program using Apache Tomcat Server. The program code are jsp codes. If I may build and use OpenStack, how to apply my current jsp project in openstack. Thanks! ___ Mailing list: http://lists.openstack.org/cgi-bin/mailman/lis

[Openstack] How to download Cinder volume to Host OS

2014-12-16 Thread varun bhatnagar
Hi, I have created a cinder volume of 50GB. I want to download this volume to my host machine (may be by using scp). Can anyone please tell me how can I do that. BR, Varun ___ Mailing list: http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack P

Re: [Openstack] (Juno) Multiple rings Swift

2014-12-16 Thread Amit Anand
Hi John thank you! So I went ahead and added two more storage nodes to the existing rings (object, account, container) and tried to rebalance on the controller I got this: [root@controller swift]# swift-ring-builder object.builder rebalance Reassigned 1024 (100.00%) partitions. Balance is now 38.

[Openstack] Network speed issue

2014-12-16 Thread Georgios Dimitrakakis
Hi all! In my OpenStack installation (Icehouse and use nova legacy networking) the VMs are talking to each other over a 1Gbps network link. My issue is that although file transfers between physical (hypervisor) nodes can saturate that link transfers between VMs reach very lower speeds e.g.

Re: [Openstack] Network speed issue

2014-12-16 Thread Adrián Norte Fernández
Disable offloading on the nodes with: ethtool -K interfaceName gro off gso off tso off And then try it again El 16/12/2014 18:36, "Georgios Dimitrakakis" escribió: > > Hi all! > > In my OpenStack installation (Icehouse and use nova legacy networking) the > VMs are talking to each other over a 1G

Re: [Openstack] (Juno) Multiple rings Swift

2014-12-16 Thread John Dickinson
That's normal. See the "...or none can be due to min_part_hours". Swift is refusing to move more data until the stuff likely currently in flight has settled. See https://swiftstack.com/blog/2012/04/09/swift-capacity-management/ --John > On Dec 16, 2014, at 9:09 AM, Amit Anand wrote: > >

Re: [Openstack] (Juno) Multiple rings Swift

2014-12-16 Thread John Dickinson
Assuming your regions are pretty close to the same size, that's exactly what you'll get with 3 replicas across 2 regions. Some data will have 2 replicas in region 1 and one in region 2. Other data will have 1 in region 1 and 2 in region 2. --John > On Dec 16, 2014, at 9:39 AM, Amit Anand w

Re: [Openstack] (Juno) Multiple rings Swift

2014-12-16 Thread Amit Anand
Ok cool Ill wait it out see what happens. So now I have another stupid question - after all is said and done, how many copies of my data will I have?! What I am aiming for is something like 2 regions and 3 replicas ie, 2 copies of the data in region one and one copy in region 2. On Tue, Dec 16, 20

Re: [Openstack] Network speed issue

2014-12-16 Thread Adrián Norte Fernández
That shows that those 3 offload settibgs are enabled. El 16/12/2014 19:01, "Georgios Dimitrakakis" escribió: > I believe that they are already disabled. > > Here is the ethtool output: > > # ethtool --show-offload eth1 > Features for eth1: > rx-checksumming: on > tx-checksumming: on > tx-

Re: [Openstack] Network speed issue

2014-12-16 Thread Georgios Dimitrakakis
I believe that they are already disabled. Here is the ethtool output: # ethtool --show-offload eth1 Features for eth1: rx-checksumming: on tx-checksumming: on tx-checksum-ipv4: off tx-checksum-unneeded: off tx-checksum-ip-generic: on tx-checksum-ipv6: off

Re: [Openstack] Network speed issue

2014-12-16 Thread Rick Jones
On 12/16/2014 09:38 AM, Adrián Norte Fernández wrote: Disable offloading on the nodes with: ethtool -K interfaceName gro off gso off tso off And then try it again That should only make things better if there was some sort of actual functional problem no? When diagnosing "network" performanc

Re: [Openstack] Network speed issue

2014-12-16 Thread Adrián Norte Fernández
Disabling it only on the nodes should boost the speed but disabling it in the vms too improves greatly the speed El 16/12/2014 19:13, "Georgios Dimitrakakis" escribió: > Ooops...It seems that I have been confused.. > > The pasted part is indeed from the node when I was looking somewhere > else...

Re: [Openstack] Network speed issue

2014-12-16 Thread Georgios Dimitrakakis
Ooops...It seems that I have been confused.. The pasted part is indeed from the node when I was looking somewhere else Thanks a lot for noticing that Adrian I will turn it off on the nodes and test again! Should it be off on both the nodes and the VMs? Regards, George That shows

Re: [Openstack] Network speed issue

2014-12-16 Thread Georgios Dimitrakakis
I have changed that on both the node and the VMs and actually made things worse. I did that on both eth1 and br100 interfaces on the physical node. The transfer speed now is 15MB/s half of the one I had before! Have I missed something? I believe that this is not an expected behaviour? Here

Re: [Openstack] Network speed issue

2014-12-16 Thread Adrián Norte Fernández
Try enabling the gso and the tso but keeping the gro disabled El 16/12/2014 19:38, "Georgios Dimitrakakis" escribió: > I have changed that on both the node and the VMs and actually made things > worse. > > I did that on both eth1 and br100 interfaces on the physical node. > > The transfer speed n

Re: [Openstack] Network speed issue

2014-12-16 Thread Georgios Dimitrakakis
Changing gso on tso on gro off got me back to the initial status. Although now it starts with approximately 65-70MB/s for a few seconds but then it drops down to 30MB/s Regards, George Try enabling the gso and the tso but keeping the gro disabled El 16/12/2014 19:38, "Georgios Dimitrak

Re: [Openstack] Network speed issue

2014-12-16 Thread Adrián Norte Fernández
Try with the rtl8139 driver and try again El 16/12/2014 20:09, "Georgios Dimitrakakis" escribió: > Changing > > gso on > tso on > gro off > > > got me back to the initial status. > > > Although now it starts with approximately 65-70MB/s for a few seconds but > then it drops down to 30MB/s > > Re

Re: [Openstack] Network speed issue

2014-12-16 Thread Rick Jones
On 12/16/2014 11:09 AM, Georgios Dimitrakakis wrote: Changing gso on tso on gro off got me back to the initial status. Although now it starts with approximately 65-70MB/s for a few seconds but then it drops down to 30MB/s What do you see if you use a "pure" networking benchmark such as ne

Re: [Openstack] Network speed issue

2014-12-16 Thread Adrián Norte Fernández
I use Neutron so.. El 16/12/2014 20:27, "Rick Jones" escribió: > On 12/16/2014 11:09 AM, Georgios Dimitrakakis wrote: > >> Changing >> >> gso on >> tso on >> gro off >> >> >> got me back to the initial status. >> >> >> Although now it starts with approximately 65-70MB/s for a few seconds >> but

Re: [Openstack] Network speed issue

2014-12-16 Thread Georgios Dimitrakakis
Rick, I haven't tried that yet I 'll do it asap and post the results. Can you recommend any specific tests that I should run on netperf? Regards, George On 12/16/2014 11:09 AM, Georgios Dimitrakakis wrote: Changing gso on tso on gro off got me back to the initial status. Although n

Re: [Openstack] Network speed issue

2014-12-16 Thread Rick Jones
On 12/16/2014 11:37 AM, Adrián Norte Fernández wrote: Read the names carefully again :) I was suggesting what I used to do in the past when on a new OpenStack install I had this problem. Indeed, I got the names crossed. Anyway, running netperf is worthwhile even in a Neutron environment. Run

Re: [Openstack] Network speed issue

2014-12-16 Thread Rick Jones
On 12/16/2014 11:33 AM, Georgios Dimitrakakis wrote: Rick, I haven't tried that yet I 'll do it asap and post the results. Can you recommend any specific tests that I should run on netperf? I would start with this on the VM from which you are executing the scp: netperf -t TCP_STREAM -H I

Re: [Openstack] Network speed issue

2014-12-16 Thread Adrián Norte Fernández
Read the names carefully again :) I was suggesting what I used to do in the past when on a new OpenStack install I had this problem. El 16/12/2014 20:35, "Rick Jones" escribió: > On 12/16/2014 11:28 AM, Adrián Norte Fernández wrote: > >> I use Neutron so.. >> > > I thought you said you were using

Re: [Openstack] Network speed issue

2014-12-16 Thread Rick Jones
On 12/16/2014 11:28 AM, Adrián Norte Fernández wrote: I use Neutron so.. I thought you said you were using Nova legacy networking: In my OpenStack installation (Icehouse and use nova legacy networking) In any event what I am suggesting is you install either netperf or iperf into both of th

Re: [Openstack] (Juno) Multiple rings Swift

2014-12-16 Thread Amit Anand
Thanks again John. Out of curiosity, is it possible to see what is where? Lets say I have uploaded a video and wanted to see where the three copies like out of the 4 nodes I have? And you guys dont have a free version of Swiftstack available per chance do you :-) On Tue, Dec 16, 2014 at 12:48

Re: [Openstack] Network speed issue

2014-12-16 Thread Georgios Dimitrakakis
Rick, I will do that and I am on Nova Legacy networking. Adrian is the guy that was trying to help with the "ethtool" adjustments and probably he is on Neutron. As soon as I have on two VMs the netperf and can run a test I will be back with the results. Thanks for your time! Best regard

[Openstack] Migrating instances according to load on host

2014-12-16 Thread Sławek Kapłoński
Hello, I'm wondering is ther some solution (maybe separate project or some plugin) which allow to automatically live-migrate (or migrate when instances are stopped) instances between hosts according to load which instance generate on host. For example if there are 10 instances on host and all o

Re: [Openstack] [Openstack-operators] Migrating instances according to load on host

2014-12-16 Thread Sławek Kapłoński
Hello, Thanks for show me some direction what I should look for :) I search blueprints of nova with 'drs' and I found somethink like this: https://blueprints.launchpad.net/nova/+spec/resource-optimization-service It would be nice to have it in nova :) --- Best regards Slawek Kaplonski sla...@kap

Re: [Openstack] [openstack-dev] [Nova] RemoteError: Remote error: OperationalError (OperationalError) (1048, "Column 'instance_uuid' cannot be null")

2014-12-16 Thread Matt Riedemann
On 12/12/2014 3:36 AM, joejiang wrote: Hi folks, when i launch instance use cirros image in the new openstack environment(juno version & centos7 OS base), the following piece is error logs from compute node. anybody meet the same error? 2014-12-12 17:16:52.481

Re: [Openstack] (Juno) Multiple rings Swift

2014-12-16 Thread John Dickinson
> On Dec 16, 2014, at 12:06 PM, Amit Anand wrote: > > Thanks again John. Out of curiosity, is it possible to see what is where? > Lets say I have uploaded a video and wanted to see where the three copies > like out of the 4 nodes I have? You can find this with the swift-get-nodes tool. It doe

Re: [Openstack] [Openstack-operators] Migrating instances according to load on host

2014-12-16 Thread Claudio Pupparo
Hi Slawek, there is also Openstack Neat http://openstack-neat.org/ "An extension to OpenStack implementing dynamic consolidation of Virtual Machines (VMs) using live migration" I believe it is exactly what you're looking for. By the way I am currently working on it for my thesis :) Claudio Il

[Openstack] openstack Nova and Oslo error

2014-12-16 Thread Roman Mashak
Hello, I am installing OpenStack with DPDK patches from Intel; it uses devstack scripts in a two-node configuration, i.e. a controller/network node and a separate compute node. Everything seems have started properly, I see the services running on the nodes. However when trying to start an instanc

[Openstack] Upgrade Procedure from Icehouse to Juno

2014-12-16 Thread Mengert, Robert
Hello All, Is there an official upgrade procedure from Icehouse to Juno? I stumbled across Thiago's procedure here, has this been entered into the official OS canon so to speak? Any help is much appreciated. Thanks, R

Re: [Openstack] Network speed issue

2014-12-16 Thread Georgios Dimitrakakis
Rick and others, I have installed netperf from the top of trunk and build it with the --enable-demo option as suggested previously. This is the output for a test performed on two VMs located at the same hypervisor: # netperf -t TCP_STREAM -H 10.0.0.6 -D 1.0 -l 30 MIGRATED TCP STREAM TEST f

Re: [Openstack] Network speed issue

2014-12-16 Thread Georgios Dimitrakakis
Here are the results from all the possible test combinations between 3VMs that are located on two different physical nodes: VM1: 10.0.0.5 (node01) —>localhost 16547.9910^6bits/sec —>10.0.0.6 2290.46 10^6bits/sec —>10.0.0.7 715.

Re: [Openstack] Network speed issue

2014-12-16 Thread Rick Jones
Both results show a really high bandwidth but I can't get that speed for file transfers. Well, at least we can more or less exonerate networking :) Though frankly I've always felt that virtio was better than an emulated NIC. How much memory to you have in the VM receiving the 4 GB file being

Re: [Openstack] Upgrade Procedure from Icehouse to Juno

2014-12-16 Thread Anne Gentle
On Tue, Dec 16, 2014 at 4:09 PM, Mengert, Robert wrote: > > Hello All, > > > > Is there an official upgrade procedure from Icehouse to Juno? I stumbled > across Thiago’s procedure here > , > has this been entered into the o