From: Alastair Tse <atse@xensource.com>
To: xen-devel@lists.xensource.com
Subject: Re: [patch] Improve error reporting in XenD
Date: Tue, 12 Sep 2006 16:49:52 +0100 [thread overview]
Message-ID: <1158076193.13079.2.camel@localhost> (raw)
In-Reply-To: <20060911122217.GA26811@redhat.com>
Dan,
It's a pretty trivial patch and seems like a reasonable thing for the
HTTP server to do when it fails to create a domain.
I've applied the patch to xen-unstable.
Thanks,
Alastair
On Mon, 2006-09-11 at 13:22 +0100, Daniel P. Berrange wrote:
> I've not seen this patch appear in xen-unstable. Any chance that it can make
> it into Xen 3.0.3 release. Its a really triival 1-liner which significantly
> improves error handling when talking to XenD.
>
> Regards,
> Dan.
>
> On Tue, Aug 29, 2006 at 06:12:22PM +0100, Daniel P. Berrange wrote:
> > In the XenD code which deals with dispatching of requests (SrvBase.py) the
> > dispatch process is obviously wrapped in a try/except block. Unfortunately
> > in the except block, the HTTP error code is never updated to indicate a failure
> > condition.
> >
> > So, for example, if you try to create a domain requesting 3 GB of memory,
> > and Dom0 fails to balloon, XenD will happily still return 'HTTP 202 OK'
> > even though the domain creation failed. This leaves apps talking to XenD
> > no way to discover that there was a failure in the create operation, other
> > than telling the user to look in /var/log/xend.log where the details are
> > logged.
> >
> > The attached patch sets the HTTP return code to '500 Internal Error' when
> > a request throws an exception. This lets client detect & report the failure
> > of domain creation immediately, improving the end user experiance
> >
> > As an example user interaction with current behaviour. libvirt is told by
> > XenD that domain creation succeeded, so it goes onto to wait for devices
> > where upon its told there is no such domain:
> >
> > Starting install...
> > libvir: Xen Daemon error : POST operation failed: No such domain demo12
> > Failed to get devices for domain demo12
> >
> > With the attached patch applied, the initial domain creation failure can
> > be detected & reported immediately:
> >
> > Starting install...
> > libvir: Xen Daemon error : POST operation failed: (xend.err 'Error creating domain: The privileged domain did not balloon!')
> > Failed to create domain demo12
> >
> >
> > Signed-off by: Daniel P. Berrange <berrange@redhat.com>
> >
> >
> > Regards,
> > Dan.
> > --
> > |=- Red Hat, Engineering, Emerging Technologies, Boston. +1 978 392 2496 -=|
> > |=- Perl modules: http://search.cpan.org/~danberr/ -=|
> > |=- Projects: http://freshmeat.net/~danielpb/ -=|
> > |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 -=|
>
> > diff -r 68a1b61ecd28 tools/python/xen/web/SrvBase.py
> > --- a/tools/python/xen/web/SrvBase.py Mon Aug 28 13:08:41 2006 +0100
> > +++ b/tools/python/xen/web/SrvBase.py Tue Aug 29 12:54:28 2006 -0400
> > @@ -84,6 +84,7 @@ class SrvBase(resource.Resource):
> > try:
> > return op_method(op, req)
> > except Exception, exn:
> > + req.setResponseCode(http.INTERNAL_SERVER_ERROR, "Request failed: " + op)
> > log.exception("Request %s failed.", op)
> > if req.useSxp():
> > return ['xend.err', str(exn)]
>
> > _______________________________________________
> > Xen-devel mailing list
> > Xen-devel@lists.xensource.com
> > http://lists.xensource.com/xen-devel
>
>
prev parent reply other threads:[~2006-09-12 15:49 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-08-29 17:12 [patch] Improve error reporting in XenD Daniel P. Berrange
2006-09-11 12:22 ` Daniel P. Berrange
2006-09-12 15:49 ` Alastair Tse [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1158076193.13079.2.camel@localhost \
--to=atse@xensource.com \
--cc=xen-devel@lists.xensource.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.