Re: [Engine-devel] Watchdog support Feature

2013-02-06 Thread Laszlo Hornyak
Hi everyone,

I hope everyone is satisfied with the spec, please read it through for the last 
time and I will move it to implementation phase soon.

Thx,
Laszlo

- Original Message -
 From: Laszlo Hornyak lhorn...@redhat.com
 To: engine-devel engine-devel@ovirt.org
 Sent: Thursday, January 24, 2013 3:19:57 PM
 Subject: Watchdog support Feature
 
 Hi,
 
 Watchdog support in engine will add watchdog to the ovirt UI and REST
 API. Watchdog cards will be mainly used in HA vm's.
 
 http://www.ovirt.org/Features/Watchdog_engine_support
 
 Your feedback is welcome!
 
 Thank you,
 Laszlo
___
Engine-devel mailing list
Engine-devel@ovirt.org
http://lists.ovirt.org/mailman/listinfo/engine-devel


[Engine-devel] ovirt_engine_find_bugs failing

2013-02-06 Thread David Caro
Hi,

the ovirt_engine_find_bugs job is failing very likely to a commit you
made:
http://gerrit.ovirt.org/gitweb?p=ovirt-engine.git;a=commitdiff;h=1bf0e9f59e2208215f729cde32b0829152fef219;hp=6f238e7ee3d25fa28e85a55646bbbf739b49ef1f

Can you please take a look at it?

Thanks!

-- 
David Caro

Red Hat Czech s.r.o.
Continuous Integration Engineer - EMEA ENG Virtualization RD

Tel.: +420 532 294 605
Email: dc...@redhat.com
Web: www.cz.redhat.com
Red Hat Czech s.r.o., Purkyn(ova 99/71, 612 45, Brno, Czech Republic
RHT Global #: 82-62605

___
Engine-devel mailing list
Engine-devel@ovirt.org
http://lists.ovirt.org/mailman/listinfo/engine-devel


[Engine-devel] NPE during addStorageServer command

2013-02-06 Thread Deepak C Shetty

Hi All,
   I am trying to compile ovirt engine after applying sharad's 
glusterfs domain support patches @

http://gerrit.ovirt.org/#/q/project:ovirt-engine+branch:master+topic:glusterfs,n,z

After compiling, deploying the engine ( by following the steps in 
wiki.ovirt.org/Building_Ovirt_Engine )
I connect to the weadmin GUI, add a VDSM host ( this is my own vdsm host 
with VDSM glsuter domain support ) and the host is Up state.


Then I select New SD-None in DC - select my vdsm host-provide the 
args (remote path = volfileserver:volume, vfstype=glusterfs, mount = 
left blank) and click on OK


I see NPE in the engine side during addStorageServer cmd ( IIUC ) and 
then engine tries to send disconnectStorageServer, which reaches my VDSM 
host and it throws a excp, since the domain is not mounted at all.


I have captured the logs on the engien and vdsm side and attached here.

I am looking for some help on why the NPE is being seen on the engien 
side during adding a new SD ?


thanx,
deepak



oe-debug.gz
Description: GNU Zip compressed data
___
Engine-devel mailing list
Engine-devel@ovirt.org
http://lists.ovirt.org/mailman/listinfo/engine-devel


Re: [Engine-devel] NPE during addStorageServer command

2013-02-06 Thread Sahina Bose
Looking at the code, it looks like you need a Storage helper called 
GLUSTERFSStorageHelper in package org.ovirt.engine.core.bll.storage. The 
NPE seems to be because the Storage helper is null for the storage type.


On 02/06/2013 04:42 PM, Deepak C Shetty wrote:

Hi All,
   I am trying to compile ovirt engine after applying sharad's 
glusterfs domain support patches @
http://gerrit.ovirt.org/#/q/project:ovirt-engine+branch:master+topic:glusterfs,n,z 



After compiling, deploying the engine ( by following the steps in 
wiki.ovirt.org/Building_Ovirt_Engine )
I connect to the weadmin GUI, add a VDSM host ( this is my own vdsm 
host with VDSM glsuter domain support ) and the host is Up state.


Then I select New SD-None in DC - select my vdsm host-provide the 
args (remote path = volfileserver:volume, vfstype=glusterfs, mount = 
left blank) and click on OK


I see NPE in the engine side during addStorageServer cmd ( IIUC ) and 
then engine tries to send disconnectStorageServer, which reaches my 
VDSM host and it throws a excp, since the domain is not mounted at all.


I have captured the logs on the engien and vdsm side and attached here.

I am looking for some help on why the NPE is being seen on the engien 
side during adding a new SD ?


thanx,
deepak



___
Engine-devel mailing list
Engine-devel@ovirt.org
http://lists.ovirt.org/mailman/listinfo/engine-devel


___
Engine-devel mailing list
Engine-devel@ovirt.org
http://lists.ovirt.org/mailman/listinfo/engine-devel


Re: [Engine-devel] NPE during addStorageServer command

2013-02-06 Thread Yair Zaslavsky
- Original Message -

 From: Sahina Bose sab...@redhat.com
 To: engine-devel@ovirt.org
 Sent: Wednesday, February 6, 2013 1:25:05 PM
 Subject: Re: [Engine-devel] NPE during addStorageServer command

 Looking at the code, it looks like you need a Storage helper called
 GLUSTERFSStorageHelper in package org.ovirt.engine.core.bll.storage.
 The NPE seems to be because the Storage helper is null for the
 storage type.
 Corret, this is based on reflection - if you have an enum literal of
 X then you must have an XStorageHelper, even if it has no meaningful
 functionality of its own (as in the case of POSIXFSStorageHelper). I
 assume such class can extend BaseFsStorageHelper
 I

 9
 On 02/06/2013 04:42 PM, Deepak C Shetty wrote:

  Hi All,
 
  I am trying to compile ovirt engine after applying sharad's
  glusterfs
  domain support patches @
 
  http://gerrit.ovirt.org/#/q/project:ovirt-engine+branch:master+topic:glusterfs,n,z
 

  After compiling, deploying the engine ( by following the steps in
  wiki.ovirt.org/Building_Ovirt_Engine )
 
  I connect to the weadmin GUI, add a VDSM host ( this is my own vdsm
  host with VDSM glsuter domain support ) and the host is Up state.
 

  Then I select New SD-None in DC - select my vdsm host-provide
  the
  args (remote path = volfileserver:volume, vfstype=glusterfs, mount
  = left blank) and click on OK
 

  I see NPE in the engine side during addStorageServer cmd ( IIUC )
  and
  then engine tries to send disconnectStorageServer, which reaches my
  VDSM host and it throws a excp, since the domain is not mounted at
  all.
 

  I have captured the logs on the engien and vdsm side and attached
  here.
 

  I am looking for some help on why the NPE is being seen on the
  engien
  side during adding a new SD ?
 

  thanx,
 
  deepak
 

  ___
 
  Engine-devel mailing list Engine-devel@ovirt.org
  http://lists.ovirt.org/mailman/listinfo/engine-devel
 
 ___
 Engine-devel mailing list
 Engine-devel@ovirt.org
 http://lists.ovirt.org/mailman/listinfo/engine-devel
___
Engine-devel mailing list
Engine-devel@ovirt.org
http://lists.ovirt.org/mailman/listinfo/engine-devel


[Engine-devel] Current oVirt 3.2 blockers

2013-02-06 Thread Moran Goldboim
attached is the list of current blockers as appears on version tracker 
bug [1]
maintainers please see that the below issues are fixed (unless not 
really blockers).
users, if there are any additional blockers you are facing - let's 
discuss it in the meeting today.


network
===
Bug IDProductWhiteboardComponentAssignee Status
ResolutionSummary
906289oVirtnetworkovirt-engine-webadmin 
alkap...@redhat.comPOST---[oVirt-webadmin] [network] Non-VM 
networks shown as VM networks on cluster attachment dialog
906291oVirtnetworkovirt-engine-webadmin lp...@redhat.com
POST---[oVirt-webadmin] [network] Non-VM networks not being 
detached from cluster
906383oVirtnetworkvdsmdan...@redhat.comPOST ---
[vdsm] [setupNetworks] Error while attaching non-VM network to interface 
on Fedora 18


DWH/integration
=
oVirtintegrationovirt-dwhyd...@redhat.comPOST ---dwh 
setup fails to create db on fedora18


Gluster
==
oVirtglusterovirt-engine-coreshire...@redhat.com MODIFIED
---Deleting one gluster volume from gluster cli triggers deletion of 
all volumes in engine
oVirtglusterovirt-engine-installeravish...@redhat.com 
MODIFIED---engine-setup should prompt for application mode


oVirt-node

oVirtovirt-nodefdeut...@redhat.comASSIGNED--- 
configure kdump fail
oVirtovirt-nodembu...@redhat.comPOST--- problem to 
make /etc/hosts persistent
oVirtovirt-nodefdeut...@redhat.comNEW---DNS info 
is missed after reboot rhev-h
oVirtovirt-nodembu...@redhat.comNEW--- Migrate Node 
to Fedora 18
oVirtovirt-nodejbo...@redhat.comPOST---[F18] 
Firewalld problem
oVirtovirt-nodejbo...@redhat.comPOST---[F18] 
Failed to copy EFI files, no EFI Support will be included.
oVirtovirt-nodembu...@redhat.comPOST---[F18] 
snmpd.conf wasn't found
oVirtovirt-nodejbo...@redhat.comPOST---[F18] 
useradd: group 'sfcb' does not exist
oVirtovirt-nodejbo...@redhat.comPOST---[F18] 
SELinux problems
oVirtovirt-nodefdeut...@redhat.comPOST--- [F18] All 
qemu architectures are pulled in and increase the size of the image / 
What arches are required?
oVirtovirt-nodembu...@redhat.comNEW---[F18] 
journal is full of collectd messages



please be ready with it's status for today's weekly meeting, packages 
should be built by the end of this week fixing the above bugs


I'm still missing some packages on the beta repo:
-dwh/reports
-docs
-engine-sdk-java

please let us know it's status with respect to 3.2 release.


[1] 
https://bugzilla.redhat.com/showdependencytree.cgi?id=881006hide_resolved=1


thanks,
Moran.
___
Engine-devel mailing list
Engine-devel@ovirt.org
http://lists.ovirt.org/mailman/listinfo/engine-devel


Re: [Engine-devel] Current oVirt 3.2 blockers

2013-02-06 Thread Dan Kenigsberg
On Wed, Feb 06, 2013 at 02:17:04PM +0200, Moran Goldboim wrote:
 attached is the list of current blockers as appears on version
 tracker bug [1]
 maintainers please see that the below issues are fixed (unless not
 really blockers).
 users, if there are any additional blockers you are facing - let's
 discuss it in the meeting today.
 
 network
 ===
 Bug IDProductWhiteboardComponentAssignee Status
 ResolutionSummary
 906289oVirtnetworkovirt-engine-webadmin
 alkap...@redhat.comPOST---[oVirt-webadmin] [network]
 Non-VM networks shown as VM networks on cluster attachment dialog
 906291oVirtnetworkovirt-engine-webadmin lp...@redhat.com
 POST---[oVirt-webadmin] [network] Non-VM networks not being
 detached from cluster

These two bugs have patches, needing only merge to master (and later to
ovirt-3.2). Alona, could you take care of them asap?

 906383oVirtnetworkvdsmdan...@redhat.comPOST ---
 [vdsm] [setupNetworks] Error while attaching non-VM network to
 interface on Fedora 18

Already pushed to ovirt-3.2 branch, would be in next vdsm build.

___
Engine-devel mailing list
Engine-devel@ovirt.org
http://lists.ovirt.org/mailman/listinfo/engine-devel


Re: [Engine-devel] NPE during addStorageServer command

2013-02-06 Thread Sahina Bose


On 02/06/2013 05:36 PM, Shireesh Anjal wrote:

On 02/06/2013 04:55 PM, Sahina Bose wrote:
Looking at the code, it looks like you need a Storage helper called 
GLUSTERFSStorageHelper in package org.ovirt.engine.core.bll.storage. 


Which is introduced by Sharad's this patch: http://gerrit.ovirt.org/8834
I guess you don't have this patch in your local repository.
In this patch, you will need to rename the file as it's case sensitive 
on linux- GlusterFsStorageHelper should be GLUSTERFSStorageHelper.


Hope this helps,
cheers
sahina


The NPE seems to be because the Storage helper is null for the 
storage type.


On 02/06/2013 04:42 PM, Deepak C Shetty wrote:

Hi All,
   I am trying to compile ovirt engine after applying sharad's 
glusterfs domain support patches @
http://gerrit.ovirt.org/#/q/project:ovirt-engine+branch:master+topic:glusterfs,n,z 



After compiling, deploying the engine ( by following the steps in 
wiki.ovirt.org/Building_Ovirt_Engine )
I connect to the weadmin GUI, add a VDSM host ( this is my own vdsm 
host with VDSM glsuter domain support ) and the host is Up state.


Then I select New SD-None in DC - select my vdsm host-provide the 
args (remote path = volfileserver:volume, vfstype=glusterfs, mount 
= left blank) and click on OK


I see NPE in the engine side during addStorageServer cmd ( IIUC ) 
and then engine tries to send disconnectStorageServer, which reaches 
my VDSM host and it throws a excp, since the domain is not mounted 
at all.


I have captured the logs on the engien and vdsm side and attached here.

I am looking for some help on why the NPE is being seen on the 
engien side during adding a new SD ?


thanx,
deepak



___
Engine-devel mailing list
Engine-devel@ovirt.org
http://lists.ovirt.org/mailman/listinfo/engine-devel




___
Engine-devel mailing list
Engine-devel@ovirt.org
http://lists.ovirt.org/mailman/listinfo/engine-devel




___
Engine-devel mailing list
Engine-devel@ovirt.org
http://lists.ovirt.org/mailman/listinfo/engine-devel


___
Engine-devel mailing list
Engine-devel@ovirt.org
http://lists.ovirt.org/mailman/listinfo/engine-devel