From owner-freebsd-questions@FreeBSD.ORG Tue Sep 9 16:14:08 2014 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 68F552C1 for ; Tue, 9 Sep 2014 16:14:08 +0000 (UTC) Received: from mail-qc0-f175.google.com (mail-qc0-f175.google.com [209.85.216.175]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1F87B19E for ; Tue, 9 Sep 2014 16:14:07 +0000 (UTC) Received: by mail-qc0-f175.google.com with SMTP id c9so17583351qcz.20 for ; Tue, 09 Sep 2014 09:14:01 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:message-id:date:user-agent:mime-version:to :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=nrEdYHmzN7SGNNuGZD5k+v1lT0MzzAWS4OOYZnF6K/A=; b=OGdIZH+uNObQ0CGKCAjBQ12RQ0sglVio38G6HCjRvPST16fiaBleQFVgwJ/9W31E9T o/hkF2n302MaM64jYfBojH9Av/Fo06yB9becmS0b3KuvouG65fHjEdl6kXAdD0/9MEkx afaJJ1oNBM6np9iJ1epXg8Yjni9L+x01FriAcMk+kYgiE0fpt/1u/Vr7pFN5oWLVvfTY /Dw2sqD+De+E1fLAC6Orf1VJQioSX1M6jY9usLUoFLfbezOD1pdrsUWc9P0yFXrDuZo9 UFRfIXb5I9DJxpgMtiXP2FJ2VY5opXjvis06IbGYDtvlj+fdCbC1TOaCxROD3tgLCOBf KfbA== X-Gm-Message-State: ALoCoQn8L2zeJeY65oofRjh21IIHP/+iklVUGK6ApljcZxUK9Av7tVasNzfpjvYTj74WKJI0wqDd X-Received: by 10.140.16.194 with SMTP id 60mr13725609qgb.105.1410277460894; Tue, 09 Sep 2014 08:44:20 -0700 (PDT) Received: from MBP-1.local ([96.236.21.80]) by mx.google.com with ESMTPSA id o6sm10564184qag.40.2014.09.09.08.44.19 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 09 Sep 2014 08:44:20 -0700 (PDT) From: Paul Kraus X-Google-Original-From: Paul Kraus Message-ID: <540F2054.3040808@brandywine.kraus-haus.org> Date: Tue, 09 Sep 2014 11:44:20 -0400 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:31.0) Gecko/20100101 Thunderbird/31.1.0 MIME-Version: 1.0 To: "bsd@todoo.biz" , Liste FreeBSD Subject: Re: ZFS Zpool upgrade question References: <6DE95A84-47F5-405B-8860-41C3D483D7CF@todoo.biz> In-Reply-To: <6DE95A84-47F5-405B-8860-41C3D483D7CF@todoo.biz> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Sep 2014 16:14:08 -0000 On 9/9/14 11:21, bsd@todoo.biz wrote: > Hi folks, > > We have moved our server from 9.2 to 9.3 and there seem to be a new version of ZFS available with a new feature set. > > We are backing up our data on FreeNAS which has the same ZFS version for the moment. >> ZFS filesystem version: 5 >> ZFS storage pool version: features support (5000) > • Can we leave with a non updated version of a ZPool on a server? What are the risks ? You can leave the zpool (and zfs) at a lower version. I am not aware of any risks per-se, but you will not get the additional features of the newer version. In some cases the features fix bugs (usually for corner cases, but bugs just the same). So if you run into a situation where you need a fix a feature provides you may get into trouble. A past example I have ran into was poor zfs destroy performance with _lots_ of snapshots. IIRC the specific problem I was having on zpool 15 was fixed by the time zpool 28 was out. > • Can my server zfs send | receive It’s data on different version of ZFS on send <> receive side ? According to the man page, the format of the zfs stream is committed and you are supposed to be able to zfs send / zfs recv between different versions of ZFS. Just be aware that if you are using a specific feature on one end you may not have that functionality on the other. I kept my zpools at version 28 for over a year so I would have a the flexibility of moving the zpool to a different OS system (zpool 28 was the last version completely supported by Solaris / Illumos / FreeBSD, after that there have been added features that may or may not be on one OS or the other).