All of lore.kernel.org
 help / color / mirror / Atom feed
From: Yehuda Sadeh Weinraub <yehudasa@gmail.com>
To: Yoshiaki Tamura <tamura.yoshiaki@gmail.com>
Cc: Stefan Hajnoczi <stefanha@gmail.com>,
	Josh Durgin <josh.durgin@dreamhost.com>,
	kvm@vger.kernel.org, qemu-devel@nongnu.org,
	ceph-devel@vger.kernel.org
Subject: Re: [PATCH v2 2/2] rbd: allow configuration of rados from the rbd filename
Date: Thu, 7 Apr 2011 09:16:02 -0700	[thread overview]
Message-ID: <BANLkTingpiVSTt6DpSwP-6hydGWDx8E=ag@mail.gmail.com> (raw)
In-Reply-To: <BANLkTin=YxkHTz6Z-sQ00gyhHxghRXZQpg@mail.gmail.com>

On Thu, Apr 7, 2011 at 2:54 AM, Yoshiaki Tamura
<tamura.yoshiaki@gmail.com> wrote:
> 2011/4/7 Stefan Hajnoczi <stefanha@gmail.com>:
>> On Thu, Apr 07, 2011 at 10:14:03AM +0900, Yoshiaki Tamura wrote:
>>> 2011/3/29 Josh Durgin <josh.durgin@dreamhost.com>:
>>> > The new format is rbd:pool/image[@snapshot][:option1=value1[:option2=value2...]]
>>> > Each option is used to configure rados, and may be any Ceph option, or "conf".
>>> > The "conf" option specifies a Ceph configuration file to read.
>>> >
>>> > This allows rbd volumes from more than one Ceph cluster to be used by
>>> > specifying different monitor addresses, as well as having different
>>> > logging levels or locations for different volumes.
>>> >
>>> > Signed-off-by: Josh Durgin <josh.durgin@dreamhost.com>
>>> > ---
>>> >  block/rbd.c |  119 ++++++++++++++++++++++++++++++++++++++++++++++++++--------
>>> >  1 files changed, 102 insertions(+), 17 deletions(-)
>>> >
>>> > diff --git a/block/rbd.c b/block/rbd.c
>>> > index cb76dd3..bc3323d 100644
>>> > --- a/block/rbd.c
>>> > +++ b/block/rbd.c
>>> > @@ -22,13 +22,17 @@
>>> >  /*
>>> >  * When specifying the image filename use:
>>> >  *
>>> > - * rbd:poolname/devicename
>>> > + * rbd:poolname/devicename[@snapshotname][:option1=value1[:option2=value2...]]
>>>
>>> I'm not sure IIUC, but currently this @snapshotname seems to be
>>> meaningless; it doesn't allow you to boot from a snapshot because it's
>>> read only.  Am I misunderstanding or tested incorrectly?
>>
>> Read-only block devices are supported by QEMU and can be useful.
>
> I agree.  My expectation was that @snapshotname is introduced to have
> writable snapshot.
>
The RADOS backend doesn't support writable snapshots. However, down
the rbd roadmap we plan to have layering which in a sense is writable
snapshots. The whole shift to librbd was done so that introducing such
new functionality will be transparent and will not require much or any
changes in the qemu code.

Yehuda
--
To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

WARNING: multiple messages have this Message-ID (diff)
From: Yehuda Sadeh Weinraub <yehudasa@gmail.com>
To: Yoshiaki Tamura <tamura.yoshiaki@gmail.com>
Cc: Stefan Hajnoczi <stefanha@gmail.com>,
	ceph-devel@vger.kernel.org,
	Josh Durgin <josh.durgin@dreamhost.com>,
	qemu-devel@nongnu.org, kvm@vger.kernel.org
Subject: [Qemu-devel] Re: [PATCH v2 2/2] rbd: allow configuration of rados from the rbd filename
Date: Thu, 7 Apr 2011 09:16:02 -0700	[thread overview]
Message-ID: <BANLkTingpiVSTt6DpSwP-6hydGWDx8E=ag@mail.gmail.com> (raw)
In-Reply-To: <BANLkTin=YxkHTz6Z-sQ00gyhHxghRXZQpg@mail.gmail.com>

On Thu, Apr 7, 2011 at 2:54 AM, Yoshiaki Tamura
<tamura.yoshiaki@gmail.com> wrote:
> 2011/4/7 Stefan Hajnoczi <stefanha@gmail.com>:
>> On Thu, Apr 07, 2011 at 10:14:03AM +0900, Yoshiaki Tamura wrote:
>>> 2011/3/29 Josh Durgin <josh.durgin@dreamhost.com>:
>>> > The new format is rbd:pool/image[@snapshot][:option1=value1[:option2=value2...]]
>>> > Each option is used to configure rados, and may be any Ceph option, or "conf".
>>> > The "conf" option specifies a Ceph configuration file to read.
>>> >
>>> > This allows rbd volumes from more than one Ceph cluster to be used by
>>> > specifying different monitor addresses, as well as having different
>>> > logging levels or locations for different volumes.
>>> >
>>> > Signed-off-by: Josh Durgin <josh.durgin@dreamhost.com>
>>> > ---
>>> >  block/rbd.c |  119 ++++++++++++++++++++++++++++++++++++++++++++++++++--------
>>> >  1 files changed, 102 insertions(+), 17 deletions(-)
>>> >
>>> > diff --git a/block/rbd.c b/block/rbd.c
>>> > index cb76dd3..bc3323d 100644
>>> > --- a/block/rbd.c
>>> > +++ b/block/rbd.c
>>> > @@ -22,13 +22,17 @@
>>> >  /*
>>> >  * When specifying the image filename use:
>>> >  *
>>> > - * rbd:poolname/devicename
>>> > + * rbd:poolname/devicename[@snapshotname][:option1=value1[:option2=value2...]]
>>>
>>> I'm not sure IIUC, but currently this @snapshotname seems to be
>>> meaningless; it doesn't allow you to boot from a snapshot because it's
>>> read only.  Am I misunderstanding or tested incorrectly?
>>
>> Read-only block devices are supported by QEMU and can be useful.
>
> I agree.  My expectation was that @snapshotname is introduced to have
> writable snapshot.
>
The RADOS backend doesn't support writable snapshots. However, down
the rbd roadmap we plan to have layering which in a sense is writable
snapshots. The whole shift to librbd was done so that introducing such
new functionality will be transparent and will not require much or any
changes in the qemu code.

Yehuda

  reply	other threads:[~2011-04-07 16:16 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-03-28 23:15 [PATCH v2 1/2] rbd: use the higher level librbd instead of just librados Josh Durgin
2011-03-28 23:15 ` [Qemu-devel] " Josh Durgin
2011-03-28 23:15 ` [PATCH v2 2/2] rbd: allow configuration of rados from the rbd filename Josh Durgin
2011-03-28 23:15   ` [Qemu-devel] " Josh Durgin
2011-04-07  1:14   ` Yoshiaki Tamura
2011-04-07  1:14     ` [Qemu-devel] " Yoshiaki Tamura
2011-04-07  8:47     ` Stefan Hajnoczi
2011-04-07  8:47       ` [Qemu-devel] " Stefan Hajnoczi
2011-04-07  9:54       ` Yoshiaki Tamura
2011-04-07  9:54         ` [Qemu-devel] " Yoshiaki Tamura
2011-04-07 16:16         ` Yehuda Sadeh Weinraub [this message]
2011-04-07 16:16           ` Yehuda Sadeh Weinraub
2011-04-08  1:07           ` Yoshiaki Tamura
2011-04-08  1:07             ` [Qemu-devel] " Yoshiaki Tamura
2011-04-08  8:43 ` [PATCH v2 1/2] rbd: use the higher level librbd instead of just librados Stefan Hajnoczi
2011-04-08  8:43   ` [Qemu-devel] " Stefan Hajnoczi
2011-04-08 16:14   ` Stefan Hajnoczi
2011-04-08 16:14     ` [Qemu-devel] " Stefan Hajnoczi
2011-04-08 18:36   ` Josh Durgin
2011-04-08 18:36     ` [Qemu-devel] " Josh Durgin
2011-04-12  0:18   ` Josh Durgin
2011-04-12  0:18     ` [Qemu-devel] " Josh Durgin
2011-04-12  8:54     ` Stefan Hajnoczi
2011-04-12  8:54       ` [Qemu-devel] " Stefan Hajnoczi
2011-04-12 15:38       ` Sage Weil
2011-04-12 15:38         ` [Qemu-devel] " Sage Weil
2011-04-12 21:14         ` Stefan Hajnoczi
2011-04-12 21:14           ` [Qemu-devel] " Stefan Hajnoczi
2011-04-12 18:28       ` Josh Durgin
2011-04-12 18:28         ` [Qemu-devel] " Josh Durgin

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='BANLkTingpiVSTt6DpSwP-6hydGWDx8E=ag@mail.gmail.com' \
    --to=yehudasa@gmail.com \
    --cc=ceph-devel@vger.kernel.org \
    --cc=josh.durgin@dreamhost.com \
    --cc=kvm@vger.kernel.org \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@gmail.com \
    --cc=tamura.yoshiaki@gmail.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.