Super Fast Local Workloads with LXD, ZFS, and Juju
jorgecastro.org
Super Fast Local Workloads with LXD, ZFS, and Juju
1–10 of 32 posts
Re: Super Fast Local Workloads with LXD, ZFS, and Juju
#2Re: Super Fast Local Workloads with LXD, ZFS, and Juju
#3Is that a 4 disk mirror? You'd be much faster using a raid10 there.
ZFS 'cache' devices are't for write cache either, you'd want a log device for write perf reasons if that's your constraint... Even then it's unlikely to make a difference on a workstation workload with 16GB of memory..
Re: Super Fast Local Workloads with LXD, ZFS, and Juju
#4LXD is great. It lowers significantly the mental burden of running something in containers because they behave essentially like a VM. That being said LXD and juju are very Ubuntu things. LXD needs wide adoption for it to be attractive as a serious workload.
Re: Super Fast Local Workloads with LXD, ZFS, and Juju
#5I don't think the author of this post really understands ZFS. Is that a 4 disk mirror? You'd be much faster using a raid10 there. ZFS 'cache' devices are't for write cache either, you'd want a log device for write perf reasons if that's your constraint... Even then it's unlikely to make a difference on a workstation workload with 16GB of memory..
zpool create home mirror a b c d cache e
and zpool create home mirror a b mirror c d cache eRe: Super Fast Local Workloads with LXD, ZFS, and Juju
#6Re: Super Fast Local Workloads with LXD, ZFS, and Juju
#7I don't think the author of this post really understands ZFS. Is that a 4 disk mirror? You'd be much faster using a raid10 there. ZFS 'cache' devices are't for write cache either, you'd want a log device for write perf reasons if that's your constraint... Even then it's unlikely to make a difference on a workstation workload with 16GB of memory..
Yeah.. it is a subtle difference between zpool create home mirror a b c d cache e and zpool create home mirror a b mirror c d cache e
Re: Super Fast Local Workloads with LXD, ZFS, and Juju
#8I don't think the author of this post really understands ZFS. Is that a 4 disk mirror? You'd be much faster using a raid10 there. ZFS 'cache' devices are't for write cache either, you'd want a log device for write perf reasons if that's your constraint... Even then it's unlikely to make a difference on a workstation workload with 16GB of memory..
Re: Super Fast Local Workloads with LXD, ZFS, and Juju
#9This is a great development experience for distributed software. I'm really looking forward to Ubuntu 16.10 -- a lot of things seem to be coming together there.
Re: Super Fast Local Workloads with LXD, ZFS, and Juju
#10Earlier quoted context omitted.
Yeah.. it is a subtle difference between zpool create home mirror a b c d cache e and zpool create home mirror a b mirror c d cache e
Could you elaborate on the semantics of "cache"? I do understand the mirror keyword, but I know next to nothing about ZFS and don't really get what "cache" means, considering bouth your and OPs comment.