Re: [pve-devel] [PATCH] bump sheepdog 0.6 + add new features v2

2013-06-09 Thread Dietmar Maurer
applied - thanks. > -Original Message- > From: pve-devel-boun...@pve.proxmox.com [mailto:pve-devel- > boun...@pve.proxmox.com] On Behalf Of Alexandre Derumier > Sent: Freitag, 07. Juni 2013 15:05 > To: pve-devel@pve.proxmox.com > Subject: [pve-devel] [PATCH] bump sheepdog 0.6 + add new fea

Re: [pve-devel] tasks / ressources

2013-06-09 Thread Dietmar Maurer
> > The same use connect sometime over fast local network, later using slow > VPN. > > > > Maybe we can auto-detect network speed? would that help > > Not really but latency / load time of the current / tasks is checkable. So if > it > takes 1s it doesn't make sense to query it every s. The Ext

Re: [pve-devel] tasks / ressources

2013-06-09 Thread Dietmar Maurer
> >>It does not matter if that is slow - why? > > It was related to my last point for vm status (stop/start) refresh, where it's > matter to have fast refresh. yes - but I guess we could do that with a client side hack (because we already poll the VM status directly each second if we show the VM

Re: [pve-devel] tasks / ressources

2013-06-09 Thread Dietmar Maurer
> > What I would like to have, is: > > > > - vm status : pooling each second (pvestatd / pve-manager) The VM GUI directly pools the VM status each second, so you gain not much here ( well, the resource store gets newer values). > > - vm,storage,node stats : pooling each X (10?) seconds (pvestatd/

Re: [pve-devel] ZFSPlugin: New patch series to pve-storage.git

2013-06-09 Thread Alexandre DERUMIER
I'll try to test it this week. (sorry for the delay, I'm a bit busy at work) - Mail original - De: m...@datanom.net À: pve-devel@pve.proxmox.com Envoyé: Dimanche 9 Juin 2013 23:44:02 Objet: [pve-devel] ZFSPlugin: New patch series to pve-storage.git Replace patches below with previ

Re: [pve-devel] [PATCH] create_disks : avoid storage scan v2

2013-06-09 Thread Alexandre DERUMIER
Ok, I'll look a this today, thank for the report. - Mail original - De: "Dietmar Maurer" À: "Alexandre Derumier" , pve-devel@pve.proxmox.com Envoyé: Lundi 10 Juin 2013 07:00:33 Objet: RE: [pve-devel] [PATCH] create_disks : avoid storage scan v2 This does not work for me: old code

Re: [pve-devel] tasks / ressources

2013-06-09 Thread Alexandre DERUMIER
>>It does not matter if that is slow - why?  It was related to my last point for vm status (stop/start) refresh, where it's matter to have fast refresh. (One other thing not related, it's that an hanging storage can sometime delay/block the others update, like node_update, which can give us ta

Re: [pve-devel] tasks / ressources

2013-06-09 Thread Dietmar Maurer
> >>You have up to 16 different cluster nodes, and they update at different > times. > >> > >>But I simply never had problems polling each second. > Ok for a big cluster, now if you have a only a single node, it doesn't make > sense. Maximal time to get new values is 11seconds. This time will incr

Re: [pve-devel] [PATCH] create_disks : avoid storage scan v2

2013-06-09 Thread Dietmar Maurer
This does not work for me: old code: # qm set 100 -ide0 /dev/pve/test1 ==> ide0: /dev/pve/test1,size=1G your code: ==> ide0: /dev/pve/test1 > -Original Message- > From: pve-devel-boun...@pve.proxmox.com [mailto:pve-devel- > boun...@pve.proxmox.com] On Behalf Of Alexandre Derumier > Se

Re: [pve-devel] tasks / ressources

2013-06-09 Thread Alexandre DERUMIER
>>You have up to 16 different cluster nodes, and they update at different >>times.  >> >>But I simply never had problems polling each second.  Ok for a big cluster, now if you have a only a single node, it doesn't make sense. in pvestatd, my $updatetime = 10; so update status occur each 10sec

Re: [pve-devel] tasks / ressources

2013-06-09 Thread Dietmar Maurer
> Also, I don't known for you, but my pvestatd daemon refresh values each 10 > seconds. > So why pve-manager is pooling each second ? You have up to 16 different cluster nodes, and they update at different times. But I simply never had problems polling each second. > > I have around 50vms on th

Re: [pve-devel] create_disks : avoid storage scan v2

2013-06-09 Thread Alexandre DERUMIER
Any news for this patch ? (Just to be sure it's not lost ) - Mail original - De: "Alexandre Derumier" À: pve-devel@pve.proxmox.com Envoyé: Mercredi 5 Juin 2013 08:52:33 Objet: [pve-devel] create_disks : avoid storage scan v2 changelog : use volume_size_info to check if the volume

Re: [pve-devel] tasks / ressources

2013-06-09 Thread Alexandre DERUMIER
Also, I don't known for you, but my pvestatd daemon refresh values each 10 seconds. So why pve-manager is pooling each second ? I have around 50vms on this host, Polling vm status is fast, but the storage status take around 2s (could be great have a seperate worker/thread/something parallel for

[pve-devel] [PATCH] Added support for ZFS Storage Plugin

2013-06-09 Thread mir
From: Michael Rasmussen Signed-off-by: Michael Rasmussen --- www/manager/Makefile |1 + www/manager/Utils.js |2 + www/manager/dc/StorageView.js | 11 +++ www/manager/qemu/Clone.js |3 +- www/manager/qemu/HDEdit.js |3 +- www/manager/storage/ZFSE

[pve-devel] ZFSPlugin: New patch series to pve-manager.git

2013-06-09 Thread mir
Replace patches below with previous patch series. ___ pve-devel mailing list pve-devel@pve.proxmox.com http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] [PATCH 3/4] Remove unnecessary output from error message.

2013-06-09 Thread mir
From: Michael Rasmussen Signed-off-by: Michael Rasmussen --- PVE/Storage/ZFSPlugin.pm |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/Storage/ZFSPlugin.pm b/PVE/Storage/ZFSPlugin.pm index b02a87a..0addd0b 100644 --- a/PVE/Storage/ZFSPlugin.pm +++ b/PVE/Storage/ZFSPlu

[pve-devel] [PATCH 4/4] Fix small variable name conflict.

2013-06-09 Thread mir
From: Michael Rasmussen Signed-off-by: Michael Rasmussen --- PVE/Storage/ZFSPlugin.pm |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/PVE/Storage/ZFSPlugin.pm b/PVE/Storage/ZFSPlugin.pm index 0addd0b..e39b965 100644 --- a/PVE/Storage/ZFSPlugin.pm +++ b/PVE/Storag

[pve-devel] [PATCH 1/4] Added support for ZFS Storage Plugin

2013-06-09 Thread mir
From: Michael Rasmussen Signed-off-by: Michael Rasmussen --- PVE/Storage.pm |2 + PVE/Storage/Makefile |2 +- PVE/Storage/Plugin.pm|2 +- PVE/Storage/ZFSPlugin.pm | 646 ++ 4 files changed, 650 insertions(+), 2 deletion

[pve-devel] [PATCH 2/4] If remove of a base-image fails because of dependent clones we must recreate the lun since dependent clones require access to the image.

2013-06-09 Thread mir
From: Michael Rasmussen Signed-off-by: Michael Rasmussen --- PVE/Storage/ZFSPlugin.pm | 14 ++ 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/PVE/Storage/ZFSPlugin.pm b/PVE/Storage/ZFSPlugin.pm index 909f71f..b02a87a 100644 --- a/PVE/Storage/ZFSPlugin.pm +++ b/PVE

[pve-devel] ZFSPlugin: New patch series to pve-storage.git

2013-06-09 Thread mir
Replace patches below with previous patch series. ___ pve-devel mailing list pve-devel@pve.proxmox.com http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel