Re: [zfs-discuss] ZFS offline ZIL corruption not detected

2010-08-26 Thread Darren J Moffat
an error back through the dsl_read() of the log block. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] Algorithm of block size estimation

2010-09-02 Thread Darren J Moffat
On 02/09/2010 11:18, Zhu Han wrote: Can anybody help me give the link on the code snippet of block size estimation? See the zfs_write() function. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org

Re: [zfs-discuss] ZFS offline ZIL corruption not detected

2010-09-03 Thread Darren J Moffat
. The L2ARC cache devices are purely caches there is NEVER data on them that isn't already in the main pool devices. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] Configuration questions for Home File Server (CPU cores, dedup, checksum)?

2010-09-08 Thread Darren J Moffat
poolname -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] resilver = defrag?

2010-09-10 Thread Darren J Moffat
a step back and ask why are you even worried about fragmentation ? do you know you have a pool that is fragmented? is it actually causing you a performance problem? -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http

Re: [zfs-discuss] Dedup relationship between pool and filesystem

2010-09-23 Thread Darren J Moffat
create tank zfs set dedup=on tank zfs create tank/1 zfs create tank/1/1 zfs create tank/2 zfs create -o dedup=off tank/2/2 zfs create tank/2/2/3 In this case all datasets in the pool will participate in deduplication with the exception of tank/2/2 and its decendents. -- Darren J Moffat

Re: [zfs-discuss] way to find out of a dataset has children

2010-09-27 Thread Darren J Moffat
destroy -d' were designed for. When using 'zfs send' holds will automatically be taken out for pool versions 18 and higher. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] zfs unmount versus umount?

2010-09-30 Thread Darren J Moffat
differences are: zfs umount will do all these things that /usr/bin/umount won't do: * It can be applied recursively down a ZFS hierarchy * It will unshare the filesystems first Both ultimately just call umount2(2) -- Darren J Moffat ___ zfs-discuss mailing

Re: [zfs-discuss] Can I upgrade a striped pool of vdevs to mirrored vdevs?

2010-10-04 Thread Darren J Moffat
are mirroring. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] Can I upgrade a striped pool of vdevs to mirrored vdevs?

2010-10-04 Thread Darren J Moffat
. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] ZFS crypto bug status change

2010-10-06 Thread Darren J Moffat
but only if there are actually people actively looking. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] Swapping disks in pool to facilitate pool growth

2010-10-07 Thread Darren J Moffat
the pool is degraded or not depends on wither you dettach an existing side of a two way mirror to do the replacement with the larger drive or if you create a three way mirror first and then dettach one of the size of the original two way mirror. -- Darren J Moffat

Re: [zfs-discuss] ZFS equivalent of inotify

2010-10-08 Thread Darren J Moffat
/file_notification_in_opensolaris_and -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] Performance issues with iSCSI under Linux

2010-10-15 Thread Darren J Moffat
box have the same issue to any other server ? What if the client box isn't Linux but Solaris or Windows or MacOS X ? -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] How to avoid striping ?

2010-10-18 Thread Darren J Moffat
guarantee that the LUN will not come from the same spindles on the SAN. That sounds like a problem with your SAN config if that matters to you. Can I force zpool to not to stripe the data ? You can't, but why do you care ? -- Darren J Moffat ___ zfs-discuss

Re: [zfs-discuss] How to avoid striping ?

2010-10-18 Thread Darren J Moffat
0 mirror-1 ONLINE 0 0 0 c7t3d0 ONLINE 0 0 0 c8t4d0 ONLINE 0 0 0 -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org

Re: [zfs-discuss] How to avoid striping ?

2010-10-18 Thread Darren J Moffat
in this example case isn't ZFS - on the SAN where the LUNs are getting allocated. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] vdev failure - pool loss ?

2010-10-18 Thread Darren J Moffat
. Can you layer vdevs hierarchically? Last time I looked, you couldn't do that. You mean like a mirror of raidz or a raidz or mirrors ? No the admin interface doesn't allow you to do that. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss

Re: [zfs-discuss] vdev failure - pool loss ?

2010-10-18 Thread Darren J Moffat
raidz2 vdev? There is no support in ZFS for nested vdevs like this. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] Finding corrupted files

2010-10-20 Thread Darren J Moffat
it require you not to use hardware raid. Some of all of which are impossible if you are using SAN or other remote block storage devices in many cases - and certainly the case if the SAN is provided by a Sun ZFS Storage appliance. -- Darren J Moffat ___ zfs

Re: [zfs-discuss] Myth? 21 disk raidz3: Don't put more than ___ disks in a vdev

2010-10-20 Thread Darren J Moffat
J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] Does a zvol use the zil?

2010-10-21 Thread Darren J Moffat
Yes, ZVOLs do use the ZIL. If the write cache has been disabled on the zvol by the DKIOCSETWCE ioctl or the sync property is set to always. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org

Re: [zfs-discuss] Does a zvol use the zil?

2010-10-21 Thread Darren J Moffat
results in DKIOCGETWCE ioctl being called on the ZVOL (though you won't see that in truss because it is called from the comstar kernel modules not directly from stmfadm in userland). -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss

Re: [zfs-discuss] zpool split how it works?

2010-11-10 Thread Darren J Moffat
#zfs_ioc_vdev_split -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] how to quiesce and unquiesc zfs and zpool for array/hardware snapshots ?

2010-11-12 Thread Darren J Moffat
because I'm not going to disclose it here in case it is miss used. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

[zfs-discuss] ZFS Crypto in Oracle Solaris 11 Express

2010-11-15 Thread Darren J Moffat
/downloads/index.html -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] ZFS Crypto in Oracle Solaris 11 Express

2010-11-16 Thread Darren J Moffat
On 11/15/10 19:36, David Magda wrote: On Mon, November 15, 2010 14:14, Darren J Moffat wrote: Today Oracle Solaris 11 Express was released and is available for download[1], this release includes on disk encryption support for ZFS. Using ZFS encryption support can be as easy

Re: [zfs-discuss] ZFS Crypto in Oracle Solaris 11 Express

2010-11-17 Thread Darren J Moffat
there is on one correct way to write files onto persistent media. Choice is important and sometimes choosing more than one is the correct thing to do. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http

Re: [zfs-discuss] ZFS Crypto in Oracle Solaris 11 Express

2010-11-17 Thread Darren J Moffat
is the correct thing to do. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] ZFS Crypto in Oracle Solaris 11 Express

2010-11-17 Thread Darren J Moffat
Express into a production environment. [1] http://www.oracle.com/technetwork/server-storage/solaris11/overview/faqs-oraclesolaris11express-185609.pdf -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org

Re: [zfs-discuss] ZFS Crypto in Oracle Solaris 11 Express

2010-11-18 Thread Darren J Moffat
/compress_encrypt_checksum_deduplicate_with Is there a URL describing the on-disk format and implementation details? It is a work in progress. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman

Re: [zfs-discuss] ZFS Crypto in Oracle Solaris 11 Express

2010-11-18 Thread Darren J Moffat
/compress_encrypt_checksum_deduplicate_with For changing the encryption key see the discussion of 'zfs key -K' in the zfs(1M) man page: http://docs.sun.com/app/docs/doc/821-1462/zfs-1m?l=ena=view -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss

Re: [zfs-discuss] ZFS Crypto in Oracle Solaris 11 Express

2010-11-19 Thread Darren J Moffat
On 19/11/2010 00:39, David Magda wrote: On Nov 16, 2010, at 05:09, Darren J Moffat wrote: Both CCM[1] and GCM[2] are provided so that if one turns out to have flaws hopefully the other will still be available for use safely even though they are roughly similar styles of modes. On systems

Re: [zfs-discuss] ZFS Crypto in Oracle Solaris 11 Express

2010-11-19 Thread Darren J Moffat
of the cryptography design were also discussed on other archived public forums as well as zfs-crypto-discuss. The design was also presented at IEEE 1619 SISWG and at SNIA. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http

Re: [zfs-discuss] ZFS Crypto in Oracle Solaris 11 Express

2010-11-23 Thread Darren J Moffat
, but obviously you lose your snapshot history that way. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] zfs on a removable device

2010-11-26 Thread Darren J Moffat
system you could have just forced the import. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] ZFS snapshot limit?

2010-12-01 Thread Darren J Moffat
On 01/12/2010 13:36, f...@ll wrote: I must send zfs snaphost from one server to another. Snapshot have size 130GB. Now I have question, the zfs have any limit of sending file? No. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss

Re: [zfs-discuss] ZFS Crypto in Oracle Solaris 11 Express

2010-12-02 Thread Darren J Moffat
-discuss). -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] ZFS ... open source moving forward?

2010-12-13 Thread Darren J Moffat
necessary for the on disk format are in the CTF data of the binaries. http://blogs.sun.com/darren/entry/zfs_encryption_what_is_on -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo

Re: [zfs-discuss] a single nfs file system shared out twice with different permissions

2010-12-20 Thread Darren J Moffat
with these resources: Oracle Solaris 11 Express Trusted Extensions Collection http://docs.sun.com/app/docs/coll/2580.1?l=en OpenSolaris Security Community pages on TX: http://hub.opensolaris.org/bin/view/Community+Group+security/tx -- Darren J

Re: [zfs-discuss] a single nfs file system shared out twice with different permissions

2010-12-21 Thread Darren J Moffat
. $ ppriv -e -s EPIL=basic,!file_write myapp If it is being started by an SMF service you can remove file_write in the method_credential section - see smf_method(5). -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http

Re: [zfs-discuss] relationship between ARC and page cache

2010-12-21 Thread Darren J Moffat
of the problem. Another alternative to try would be setting primarycache=metadata on the ZFS dataset that contains the mmap files. That way you are only turning of the ZFS ARC cache of the file content for that one dataset rather than clamping the ARC. -- Darren J Moffat

Re: [zfs-discuss] stupid ZFS question - floating point operations

2010-12-23 Thread Darren J Moffat
those optimistations for floating point don't come into play for ZFS encryption. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] stupid ZFS question - floating point operations

2010-12-23 Thread Darren J Moffat
/zfs_encryption_what_is_on where I explain all the type of keys used and how they are generated as well as how passphrases are turned into AES wrapping keys (using PKCS#5 PBE). -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http

Re: [zfs-discuss] stupid ZFS question - floating point operations

2010-12-23 Thread Darren J Moffat
/onnv/onnv-gate/usr/src/common/bignum/sun4u/ Note that there are separate kernel and user land variants of that. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] A few questions

2011-01-06 Thread Darren J Moffat
that aren't Sun hardware as well as servers. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] (Fletcher+Verification) versus (Sha256+No Verification)

2011-01-07 Thread Darren J Moffat
due to very early boot issues. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] (Fletcher+Verification) versus (Sha256+No Verification)

2011-01-07 Thread Darren J Moffat
On 07/01/2011 11:56, Sašo Kiselkov wrote: On 01/07/2011 10:26 AM, Darren J Moffat wrote: On 06/01/2011 23:07, David Magda wrote: On Jan 6, 2011, at 15:57, Nicolas Williams wrote: Fletcher is faster than SHA-256, so I think that must be what you're asking about: can Fletcher+Verification

Re: [zfs-discuss] Best choice - file system for system

2011-01-28 Thread Darren J Moffat
to work with at least the following backup applications: • Oracle Secure Backup 10.3.0.2 and above • Enterprise Backup Software (EBS) / Legato Networker 7.5 and above • Symantec NetBackup 6.5.3 and above -- Darren J Moffat ___ zfs-discuss mailing list zfs

Re: [zfs-discuss] vscand + quarantine

2011-02-09 Thread Darren J Moffat
if 'foo' was quarantined. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] vscand + quarantine

2011-02-09 Thread Darren J Moffat
script is find/ls/grep. You could write a C program that uses the same method that ls does to get the attributes but you will still have to visit every file in the file system. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org

Re: [zfs-discuss] disable zfs/zpool destroy for root user

2011-02-18 Thread Darren J Moffat
on delegated datasets ? Doing this for the global zone is a little harder but for a local zone it can be done by extending the 'zfs allow' mechanism. See: http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=7011365 -- Darren J Moffat ___ zfs-discuss

Re: [zfs-discuss] X4540 no next-gen product?

2011-04-08 Thread Darren J Moffat
appliances. They may be storage appliances, but the user can not put their own software on them. This limits the appliance to only the features that Oracle decides to put on it. Isn't that the very definition of an Appliance ? -- Darren J Moffat ___ zfs

Re: [zfs-discuss] X4540 no next-gen product?

2011-04-08 Thread Darren J Moffat
access would just be a totally useless brick). As an engineer I'm curious have you actually tried a suitably sized S7000 or are you assuming it won't perform suitably for you ? -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org

Re: [zfs-discuss] ls reports incorrect file size

2011-05-02 Thread Darren J Moffat
are a filesystem level concept that is understood my many filesystems including CIFS and ZFS and many others. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] ndmp?

2011-05-24 Thread Darren J Moffat
://download.oracle.com/docs/cd/E19963-01/html/821-1462/ndmpd-1m.html http://download.oracle.com/docs/cd/E19963-01/html/821-1462/ndmpstat-1m.html What you mean by supporting it ? I believe (though I haven't tested it) it works with Oracle Secure Backup as well as NetBackup and Networker. -- Darren J Moffat

Re: [zfs-discuss] SE11 express Encryption on - errors in the pool after Scrub

2011-06-06 Thread Darren J Moffat
systems support contract with Oracle you should be able to log a support ticket and request a backport of the fix for CR 6989185. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo

Re: [zfs-discuss] ZFS receive checksum mismatch

2011-06-10 Thread Darren J Moffat
good. Not recommended by who ? Which documentation says this ? As I pointed out last time this came up the NDMP service on Solaris 11 Express and on the Oracle ZFS Storage Appliance uses the 'zfs send' stream as what is to be stored on the tape. -- Darren J Moffat

Re: [zfs-discuss] question about COW and snapshots

2011-06-15 Thread Darren J Moffat
but at the ZPL layer that is multiple write(2) calls and maybe even some rename(2)/unlink(2)/close(2) calls as well. If you move further down then doing a snapshot on every dmu_write() call is fundamentally at odds with how ZFS works. -- Darren J Moffat ___ zfs

Re: [zfs-discuss] latest zpool version in solaris 11 express

2011-07-18 Thread Darren J Moffat
about any specific issue here but about the way your conclusion was written it doesn't follow that because the pool and version number are the same that no zfs/zpool/dedup code was changed. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss

Re: [zfs-discuss] Is oi_151 zpool version on par with sol11ex?

2011-07-19 Thread Darren J Moffat
J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] Zil on multiple usb keys

2011-07-25 Thread Darren J Moffat
make it slower. I removed the separate log device from both of those pools (by manual hacking with specially build zfs kernel modules because slog removal didn't exist back then.). -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss

Re: [zfs-discuss] zfs send/receive and ashift

2011-07-26 Thread Darren J Moffat
layer concept - ie below the DMU layer. There is nothing in the send stream format that knows what an ashift actually is. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs

Re: [zfs-discuss] zfs send/receive and ashift

2011-07-26 Thread Darren J Moffat
. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] zfs send/receive and ashift

2011-07-26 Thread Darren J Moffat
is. But basically it is not provided by ZFS itself it is up to the person building the system to secure the transport layer used for ZFS send. It could also be write directly to a T10k encrypting tape drive. -- Darren J Moffat ___ zfs-discuss mailing list

Re: [zfs-discuss] SSD vs hybrid drive - any advice?

2011-07-27 Thread Darren J Moffat
does update-in-place and UFS only does update-in-place for Note quite never, there are some very special cases where blocks are allocated ahead of time and could be written to in place more than once. In particular the special type of ZVOLs used for dump devices. -- Darren J Moffat

Re: [zfs-discuss] zfs send/receive and ashift

2011-07-27 Thread Darren J Moffat
node(Solaris) needs extra software, is it correct? I believe so, also it is more than just the T1C drive you need it needs to be in a library and you also need the Oracle Key Management system to be able to do the key management for it. -- Darren J Moffat

Re: [zfs-discuss] zfs send/receive and ashift

2011-07-27 Thread Darren J Moffat
traffic encryption. Indeed, plus you don't necessarily want to always have your backups encrypted by the same keys as the live data (ie the policy for key management and retention could be different on purpose). -- Darren J Moffat ___ zfs-discuss

Re: [zfs-discuss] Disable ZIL - persistent

2011-08-05 Thread Darren J Moffat
it to filesystems other than rpool. Which feels kludgy. Is there a better way? echo set zfs:zil_disable = 1 /etc/system -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] RBAC and zfs

2011-08-26 Thread Darren J Moffat
name of 'myrole' and a ZFS pool called 'tank' it would be something like this: # roleadd -R myrole # passwd myrole ... # useradd -R myrole cephas # zfs allow -u myrole send,receive,snapshot,mount tank -- Darren J Moffat ___ zfs-discuss mailing list

Re: [zfs-discuss] Advice with SSD, ZIL and L2ARC

2011-08-30 Thread Darren J Moffat
. Note the following is an implementation detail subject to change: It is NOT checksumed on disk only in memory, but the L2ARC data on disk is not used after reboot anyway just now. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss

Re: [zfs-discuss] Advice with SSD, ZIL and L2ARC

2011-09-20 Thread Darren J Moffat
. Can anybody confirm?. Of course if we didn't do that we would be leaking user data. 2. What happens with L2ARC?. Since ARC is not encrypted (in RAM), is it encrypted when evicted to L2ARC?. Use of the L2ARC is disabled for data from encrypted datasets at this time. -- Darren J Moffat

Re: [zfs-discuss] commercial zfs-based storage replication software?

2011-10-11 Thread Darren J Moffat
service properties. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] Any info about System attributes

2011-10-11 Thread Darren J Moffat
to be in the clear. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] commercial zfs-based storage replication software?

2011-10-13 Thread Darren J Moffat
On 10/13/11 09:27, Fajar A. Nugraha wrote: On Tue, Oct 11, 2011 at 5:26 PM, Darren J Moffat darr...@opensolaris.org wrote: Have you looked at the time-slider functionality that is already in Solaris ? Hi Darren. Is it available for Solaris 10? I just installed Solaris 10 u10 and couldn't

Re: [zfs-discuss] Thumper (X4500), and CF SSD for L2ARC = ?

2011-10-14 Thread Darren J Moffat
adaptors at the time too. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] about btrfs and zfs

2011-10-18 Thread Darren J Moffat
/fs/zfs/metaslab.c See lines 1356-1378 -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] about btrfs and zfs

2011-10-18 Thread Darren J Moffat
On 10/18/11 14:04, Jim Klimov wrote: 2011-10-18 16:26, Darren J Moffat пишет: On 10/18/11 13:18, Edward Ned Harvey wrote: * btrfs is able to balance. (after adding new blank devices, rebalance, so the data workload are distributed across all the devices.) zfs is not able to do this yet. ZFS

Re: [zfs-discuss] ZFS on Dell with FreeBSD

2011-10-19 Thread Darren J Moffat
with 2. ALWAYS let ZFS manage the redundancy otherwise it can't self-heal. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] Improving L1ARC cache efficiency with dedup

2011-12-08 Thread Darren J Moffat
be received on systems that do not support the stream deduplication feature. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] Can I create a mirror for a root rpool?

2011-12-19 Thread Darren J Moffat
not familiar with how FreeBSD is installed and boots can you explain how boot works (ie do you use GRUB at all and if so which version and where the early boot ZFS code is). -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http

Re: [zfs-discuss] S11 vs illumos zfs compatiblity

2012-01-03 Thread Darren J Moffat
have some deduplication support, it can import and read datasets in a deduped pool just fine. You can't enable dedup on a dataset and any writes won't dedup they will rehydrate. So it is more like partial dedup support rather than it not being there at all. -- Darren J Moffat

Re: [zfs-discuss] ZIL on a dedicated HDD slice (1-2 disk systems)

2012-01-09 Thread Darren J Moffat
pool devices) go for a given dataset are determined by a combination of things including (but not limited to) the presence of a SLOG device, the logbias property and the size of the data. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss

Re: [zfs-discuss] RFE: add an option/attribute to import ZFS pool without automounting/sharing ZFS datasets

2012-01-11 Thread Darren J Moffat
Import the pool without mounting any file systems. If it isn't mounted it can't be shared. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] encryption

2012-02-20 Thread Darren J Moffat
already. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] Cannot mount encrypted filesystems.

2012-02-20 Thread Darren J Moffat
is important here is understanding where the encryption and keysource properties are set and where they are inherited. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] Cannot mount encrypted filesystems.

2012-02-21 Thread Darren J Moffat
this means is that even though you have the same passphrase for each dataset the actual data encryption key is different because the passphrase value plus the hidden salt property are used together to generated the wrapping key. -- Darren J Moffat

Re: [zfs-discuss] encryption

2012-02-21 Thread Darren J Moffat
On 02/21/12 13:27, Edward Ned Harvey wrote: From: Darren J Moffat [mailto:darr...@opensolaris.org] Sent: Monday, February 20, 2012 12:46 PM GRUB2 has support for encrypted ZFS file systems already. I assume this requires a pre-boot password, right? Then I have two questions... The ZFS

Re: [zfs-discuss] zfs-discuss Digest, Vol 76, Issue 20

2012-02-22 Thread Darren J Moffat
, see zfs key. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] Cannot mount encrypted filesystems.

2012-02-22 Thread Darren J Moffat
the check that 'zfs inherit' does so I can get out of the situation and make the datasets accessible again. So this is fixable so don't abandon hope yet. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http

Re: [zfs-discuss] Solaris 11/ZFS historical reporting

2012-04-17 Thread Darren J Moffat
. For IO depends what level you want to look at, if it is the device level iostat, if it is how ZFS is using the devices look at 'zpool iostat'. If it is the filesystem level look at fsstat. Also look acctadm(1M). -- Darren J Moffat ___ zfs-discuss

Re: [zfs-discuss] Aaron Toponce: Install ZFS on Debian GNU/Linux

2012-04-19 Thread Darren J Moffat
but there is another (readonly) implementation of ZFS encryption: http://bazaar.launchpad.net/~vcs-imports/grub/grub2-bzr/view/head:/grub-core/fs/zfs/zfscrypt.c -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org

Re: [zfs-discuss] current status of SAM-QFS?

2012-05-01 Thread Darren J Moffat
On 04/30/12 04:00, Fred Liu wrote: The subject says it all. Still a fully supported product from Oracle: http://www.oracle.com/us/products/servers-storage/storage/storage-software/qfs-software/overview/index.html -- Darren J Moffat ___ zfs-discuss

Re: [zfs-discuss] current status of SAM-QFS?

2012-05-02 Thread Darren J Moffat
-tying. If you want to know Oracle's roadmap for SAM-QFS then I recommend contacting your Oracle account rep rather than asking on a ZFS discussion list. You won't get SAM-QFS or Oracle roadmap answers from this alias. -- Darren J Moffat ___ zfs

Re: [zfs-discuss] current status of SAM-QFS?

2012-05-03 Thread Darren J Moffat
if there is an effort to integrate open-sourced SAM-QFS into illumos or smartos/oi/illumian. Okay, then it would have been clearer if you had asked that question but you asked about SAM-QFS on a zfs discuss alias. -- Darren J Moffat ___ zfs-discuss mailing list zfs

Re: [zfs-discuss] Benefits of enabling compression in ZFS for the zones

2012-07-10 Thread Darren J Moffat
. No ZFS checksums are over the data as it is stored on disk so the compressed data. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Re: [zfs-discuss] New fast hash algorithm - is it needed?

2012-07-11 Thread Darren J Moffat
NIST name of that hash. With the internal enum being: ZIO_CHECKSUM_SHA512_256 CR 7020616 already exists for adding this in Oracle Solaris. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman

Re: [zfs-discuss] ZFS ok for single disk dev box?

2012-08-30 Thread Darren J Moffat
more importantly ZFS does not preclude the need for off system backups. Even with mirroring, and snaphots you still have to have a backup of important data elsewhere. No file system and more importantly no hardware is that good. -- Darren J Moffat

Re: [zfs-discuss] openindiana-1 filesystem, time-slider, and snapshots

2012-10-16 Thread Darren J Moffat
simply wrong? Initially there wouldn't have been. Are you doing the zfs send on your own or letting time-slider do it for you ? -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs

Re: [zfs-discuss] zfs send to older version

2012-10-24 Thread Darren J Moffat
the highest version supported by the running software. -- Darren J Moffat ___ zfs-discuss mailing list zfs-discuss@opensolaris.org http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

<    2   3   4   5   6   7   8   >