Hi,
I was wondering if someone could shed some light on a few questions i have.
Currently have a test lab with 32 gigs of ram 4 disks each disk has 4tb raid 10 zfs.
I wanted to start using a slog so i had 2 spares SSD 240 (i know just for testing im going to get the intel verison ssd)
1) I was reading that L2ARC should not be implemented on proxmox and just the ssd for the ZIL not sure if its true
2) i was reading that the intel optane would be the best option Intel M.2 Optane 4801x and maybe adding this https://www.supermicro.com/products/accessories/addon/AOC-SLG3-2M2.cfm to have dual ssd
and not sure if 32gigs should be enough for the ZIL
https://www.amazon.com/Intel-Optane...e+4801x&qid=1566693334&s=gateway&sr=8-1-fkmr0
With the testing two disks i found around the house which were 240 gigs not sure if what i did was correct i did see a better fsync
created two partitions
and this is the zpool
Thank you
I was wondering if someone could shed some light on a few questions i have.
Currently have a test lab with 32 gigs of ram 4 disks each disk has 4tb raid 10 zfs.
I wanted to start using a slog so i had 2 spares SSD 240 (i know just for testing im going to get the intel verison ssd)
1) I was reading that L2ARC should not be implemented on proxmox and just the ssd for the ZIL not sure if its true
2) i was reading that the intel optane would be the best option Intel M.2 Optane 4801x and maybe adding this https://www.supermicro.com/products/accessories/addon/AOC-SLG3-2M2.cfm to have dual ssd
and not sure if 32gigs should be enough for the ZIL
https://www.amazon.com/Intel-Optane...e+4801x&qid=1566693334&s=gateway&sr=8-1-fkmr0
With the testing two disks i found around the house which were 240 gigs not sure if what i did was correct i did see a better fsync
created two partitions
Code:
cfdisk /dev/sde
created partition 190G
converted to GPT
type Solaris /usr & Apple ZFS
then created the other partition 5GB and the same procedure from above
then added to the rpool
zpool add rpool cache /dev/sde1 /dev/dev/sdf1
then add the log pool
zpool add rpool log mirror /dev/sde2 /dev/sdf2
and this is the zpool
Code:
root@prometheus4:~# zpool status -v
pool: rpool
state: ONLINE
scan: none requested
config:
NAME STATE READ WRITE CKSUM
rpool ONLINE 0 0 0
mirror-0 ONLINE 0 0 0
sda3 ONLINE 0 0 0
sdb3 ONLINE 0 0 0
mirror-1 ONLINE 0 0 0
sdc ONLINE 0 0 0
sdd ONLINE 0 0 0
logs
mirror-2 ONLINE 0 0 0
sde2 ONLINE 0 0 0
sdf2 ONLINE 0 0 0
cache
sde1 ONLINE 0 0 0
sdf1 ONLINE 0 0 0
Thank you