Jump to content

Hi all, I'm looking over some multihost storage, by multihost means the storage can be connected to several motherboards and all of them have access to the data, so I can have one pc with linux, other with windows, and both have access to the same devices.

 

Ideal SSD mode than NVME, to avoid PCIe transfer with GPU.

 

Why multihost? Well, I usually uses a lot of data (maybe not that much, lets put 7TB), but..., is common that I need to access to it from several devices, and with high speeds, so is not ideal do this via web/NAS. But SSD/NVME to replicate the data in all the devices is not great...

 

Someone knows how to do this? If there is the case, this only can be done via PCIe, well that would be the solution.

 

Thx!

Link to comment
https://linustechtips.com/topic/1490664-ssdnvme-multihost/
Share on other sites

Link to post
Share on other sites

You probablay want a nas. Then mount the network share and all the systems can access storage at the same time. Depending on how much performance you want, you can get some pretty high speed network connections for very high speeds.

Link to comment
https://linustechtips.com/topic/1490664-ssdnvme-multihost/#findComment-15818305
Share on other sites

Link to post
Share on other sites

I would like to avoid it...., Well I can build a NAS, but..., before say anything more, what would be the difference in speed? In my check, Wifi 6 handles 75MB/s, while NVME can reach at least 1GB/s, while Ethernet with Cat6 can reach at max 1GB/s. Seems no fast enough.

Link to comment
https://linustechtips.com/topic/1490664-ssdnvme-multihost/#findComment-15818679
Share on other sites

Link to post
Share on other sites

One of the main reasons why multihost, is that I need to be able to access to the data from windows and linux, to be able to backup my data I need windows for the cloud service and linux to work in the data.

 

Actually Sync.com does not have linux support, so I need the data to be able to be accessed all the time, if by accident the NAS is turn off and the windows pc is on, can be a mess with the data, in the worse case I can lost all the data. The othercase would be a NAS with windows....

 

In a similar context, I want to try split workstations, like one pc for server and other for data analysis, this process reads a lot of data from the disks, so I need high speed for read/write, and from more than one pc, because the data can be used by the server and the pc that analyze it....

 

This is Why I try to avoid NAS, multihost seems to be the ideal for this type of implementation.

Link to comment
https://linustechtips.com/topic/1490664-ssdnvme-multihost/#findComment-15818691
Share on other sites

Link to post
Share on other sites

25 minutes ago, latot said:

I would like to avoid it...., Well I can build a NAS, but..., before say anything more, what would be the difference in speed? In my check, Wifi 6 handles 75MB/s, while NVME can reach at least 1GB/s, while Ethernet with Cat6 can reach at max 1GB/s. Seems no fast enough.

You can get extremly fast ethernet connections. You can get network cards up to 400gbe, or about 10x what a normal nvme ssd can do. If you want more pratical, you can get a nas with 2x 100gbe connection, cables and 2 100gbit nics to put in 2 pcs for sub $1000 dollars. 

 

13 minutes ago, latot said:

One of the main reasons why multihost, is that I need to be able to access to the data from windows and linux, to be able to backup my data I need windows for the cloud service and linux to work in the data.

 

Actually Sync.com does not have linux support, so I need the data to be able to be accessed all the time, if by accident the NAS is turn off and the windows pc is on, can be a mess with the data, in the worse case I can lost all the data. The othercase would be a NAS with windows....

 

In a similar context, I want to try split workstations, like one pc for server and other for data analysis, this process reads a lot of data from the disks, so I need high speed for read/write, and from more than one pc, because the data can be used by the server and the pc that analyze it....

 

This is Why I try to avoid NAS, multihost seems to be the ideal for this type of implementation.

If your using multiple oses you really want to have a nas. While there are multihost nvme enclosures, they need special drives, and need the same os running in a cluster with the other system. Since both systems see one block device, they need to make sure they don't write on the same data used by the other system. 

 

A nas should be able to provide extremely fast performance here and allow multiple users if configured correctly.

Link to comment
https://linustechtips.com/topic/1490664-ssdnvme-multihost/#findComment-15818709
Share on other sites

Link to post
Share on other sites

30 minutes ago, Electronics Wizardy said:

If your using multiple oses you really want to have a nas. While there are multihost nvme enclosures, they need special drives, and need the same os running in a cluster with the other system. Since both systems see one block device, they need to make sure they don't write on the same data used by the other system. 

 

A nas should be able to provide extremely fast performance here and allow multiple users if configured correctly.

Good point.

 

31 minutes ago, Electronics Wizardy said:

You can get extremly fast ethernet connections. You can get network cards up to 400gbe, or about 10x what a normal nvme ssd can do. If you want more pratical, you can get a nas with 2x 100gbe connection, cables and 2 100gbit nics to put in 2 pcs for sub $1000 dollars. 

Mmm, that is great!, Now I'm thinking how to do that, actually for one access, the bottleneck would be... the cable, the fastest cable I found is the Cat8, has 5GB/s, so even if the card can get 400GB/s the cable will limit this, but with 5GB/s is a lot more decent now. In some years can be a bottleneck again, but maybe there is a new ethernet cable.

 

The last issue, would be the software access to the NAS, a lot of software starts with the system, the NAS should be mounted before anything, and in case the connection is lost to the NAS..., still can be difficult to handle.... is not like we design the software, so they don't necessarily support this type of configurations....

Link to comment
https://linustechtips.com/topic/1490664-ssdnvme-multihost/#findComment-15818757
Share on other sites

Link to post
Share on other sites

10 minutes ago, latot said:

Mmm, that is great!, Now I'm thinking how to do that, actually for one access, the bottleneck would be... the cable, the fastest cable I found is the Cat8, has 5GB/s, so even if the card can get 400GB/s the cable will limit this, but with 5GB/s is a lot more decent now. In some years can be a bottleneck again, but maybe there is a new ethernet cable.

With this networking, your not using CAT cabling, there is fiber cables and dacs that you will be using.  Here is a 5m DAC cable that will work with 100GBE(check with the card your uisng though) https://www.fs.com/products/50483.html?attribute=10068&id=196685

 

I have configured many systems running linux and windows to mount nfs/smb shares automatically and programs start after. If there is issues of programs starting before the network share is up, you can configure a delay, or have it check for the network. Normally these connections are pretty reliable, so I woudln't worry too much about network link failure.

Link to comment
https://linustechtips.com/topic/1490664-ssdnvme-multihost/#findComment-15818775
Share on other sites

Link to post
Share on other sites

Ufff, I feel so old talking about RJ45... I forgot to check new tech for network, maybe is not that new anyway, I'm checking the cables, seems the ideal solution to this, is great!, Where can I found cards of 400GB? I'll need to learn more about networking, seems to be very important for what I does, is not the first time I need to do this type of things.

 

3 hours ago, Electronics Wizardy said:

I have configured many systems running linux and windows to mount nfs/smb shares automatically and programs start after. If there is issues of programs starting before the network share is up, you can configure a delay, or have it check for the network. Normally these connections are pretty reliable, so I woudln't worry too much about network link failure.

That is great!, just to confirm, I'll probable ask to Sync.com about it.

 

I was thinking, is possible..., use a NAS with DAC for high speeds, but also LVM with lines for several drives, LVM has a performance prince, NAS too, is there any tips for an ideal mix of this two things?

Link to comment
https://linustechtips.com/topic/1490664-ssdnvme-multihost/#findComment-15818989
Share on other sites

Link to post
Share on other sites

8 hours ago, latot said:

 

I was thinking, is possible..., use a NAS with DAC for high speeds, but also LVM with lines for several drives, LVM has a performance prince, NAS too, is there any tips for an ideal mix of this two things?

Id personally run zfs here, cause I'm a fan of zfs. 

 

LVM has a pretty small performance penalty. Your gonna get slower speed that local nvme drives, but really depends on how much your putting into this server.

Link to comment
https://linustechtips.com/topic/1490664-ssdnvme-multihost/#findComment-15819474
Share on other sites

Link to post
Share on other sites

Where can we found the network cards? I'm checking cards that uses DAC or Fiber...

 

18 hours ago, Electronics Wizardy said:

You can get extremly fast ethernet connections. You can get network cards up to 400gbe, or about 10x what a normal nvme ssd can do. If you want more pratical, you can get a nas with 2x 100gbe connection, cables and 2 100gbit nics to put in 2 pcs for sub $1000 dollars. 

I'm checking cards, but are pretty expensive when we want over 100gbe... the total with other pc components can go easily over $1000 dollars.

Link to comment
https://linustechtips.com/topic/1490664-ssdnvme-multihost/#findComment-15819649
Share on other sites

Link to post
Share on other sites

6 hours ago, latot said:

Where can we found the network cards? I'm checking cards that uses DAC or Fiber...

 

I'm checking cards, but are pretty expensive when we want over 100gbe... the total with other pc components can go easily over $1000 dollars.

I'm checking ebay for the cards. I'd probably stick with 100gbe here as it gets much more pricy beyond that.

Link to comment
https://linustechtips.com/topic/1490664-ssdnvme-multihost/#findComment-15820098
Share on other sites

Link to post
Share on other sites

10 minutes ago, latot said:

Like... going back, by the price, maybe multihost is still a good option? but I can't found hardware for that....

Your not going to want to do 100 gigabit… that’s 12GB per second, no NAS you’re going to build will be able to read or write that fast anyways. If the price of the NIC is what scares you away, the cost of the machine to move data that quickly is out of the question. 
 

You can very easily and cheaply do 10 gigabit, conectX3 or 4’s are pretty cheap, and the fiber transceivers are also cheap. You can buy 2 cards and 2 transceivers for easily under 100 bucks. 10 gigabit is 1.2 GB/s which is already going to be faster then your system will be able to continually send data at, unless it’s nvme based storage which gets expensive quickly.

 

But, you can likely do this for a couple grand. 

Rig: i7 13700k +Contact Frame - - Asus Z790-P Wifi - - RTX 4080 - - 4x16GB 6000MHz - - Samsung 990 Pro 2TB NVMe Boot + Main Programs - - Crucial P3 2TB NVMe for photo work - - Corsair RM850x - - Sound BlasterX EA-5 - - Corsair XC8 JTC Edition - - Corsair GPU Full Cover GPU Block - - PTM 7950 - - XT45 X-Flow 420 + UT60 280 rads externally mounted - - EK XRES RGB PWM - - Fractal Define S2 - - DellAlienware AW3423DWF 34" -- Logitech Pro X Superlight - - Logitech G710+ - - LTT Northern Lights Deskpad

 

Headphones/amp/dac: Schiit Bifrost Multibit - -  Schiit Lyr 3 - - Fostex TR-X00 - - Sennheiser HD 6xx

 

Homelab/Media Server: Proxmox VE host - - 512 NVMe Samsung 980 RAID Z1 for VM's/Proxmox boot - - Xeon e5 2660 V4- - Supermicro X10SRF-i - - 128 GB ECC 2133 - - 10x8TB WD Red RAID Z2 - - 2x 800 GB SAS SSD’s (1 SLOG, 1 L2Arc) - - 45 HomeLab HL15 15 Drive 4U - - Corsair RM650i - - LSI 9305-16i HBA - - TreuNAS + many other VM’s

 

Unifi UDM Pro in front of full unifi network infrastructure

 

iPhone 17 Pro - - MacBook Air M3

Link to comment
https://linustechtips.com/topic/1490664-ssdnvme-multihost/#findComment-15822025
Share on other sites

Link to post
Share on other sites

1 hour ago, latot said:

It is possible, run two network cards as one?

Technically yes there are ways to do this. But… what is your use case here? What is the data you’re trying to edit? Why can’t you just use a nas and some NVME storage in each machine?

 

Use syncthing, instal that on all devices and the NAS, it will keep data the same across all devices, and since the NAS will always be on, even if the other devices are off it will always be available to push the newest data to devices that were off while edits were made. If you truly need NVME speeds… you are not going to get that on an “economically priced” server and network setup. You basically need to just put nvme devices in each system you need that performance on. 

Rig: i7 13700k +Contact Frame - - Asus Z790-P Wifi - - RTX 4080 - - 4x16GB 6000MHz - - Samsung 990 Pro 2TB NVMe Boot + Main Programs - - Crucial P3 2TB NVMe for photo work - - Corsair RM850x - - Sound BlasterX EA-5 - - Corsair XC8 JTC Edition - - Corsair GPU Full Cover GPU Block - - PTM 7950 - - XT45 X-Flow 420 + UT60 280 rads externally mounted - - EK XRES RGB PWM - - Fractal Define S2 - - DellAlienware AW3423DWF 34" -- Logitech Pro X Superlight - - Logitech G710+ - - LTT Northern Lights Deskpad

 

Headphones/amp/dac: Schiit Bifrost Multibit - -  Schiit Lyr 3 - - Fostex TR-X00 - - Sennheiser HD 6xx

 

Homelab/Media Server: Proxmox VE host - - 512 NVMe Samsung 980 RAID Z1 for VM's/Proxmox boot - - Xeon e5 2660 V4- - Supermicro X10SRF-i - - 128 GB ECC 2133 - - 10x8TB WD Red RAID Z2 - - 2x 800 GB SAS SSD’s (1 SLOG, 1 L2Arc) - - 45 HomeLab HL15 15 Drive 4U - - Corsair RM650i - - LSI 9305-16i HBA - - TreuNAS + many other VM’s

 

Unifi UDM Pro in front of full unifi network infrastructure

 

iPhone 17 Pro - - MacBook Air M3

Link to comment
https://linustechtips.com/topic/1490664-ssdnvme-multihost/#findComment-15822248
Share on other sites

Link to post
Share on other sites

8 hours ago, latot said:

It is possible, run two network cards as one?

There is smb 3.0 multipath, but it’s experimental

there the iscsi mpio but as I run it daily on Windows 10, the Windows implementation is just bad, multipath works only on the setup, later when i look at it, it’s broken, and the performance is not even, sometimes I get 1200/900 MBps, sometimes i get 600/600MBps, but well that could be my qnap.    
 

and in iscsi, only one client can be connected to share,  so everyone would have to have their own share.    

  

 

 

   

 

 

 

   
 
 
 
Spoiler
CPU : Intel 14gen i7-14700K
COOLER :  Thermalright Peerless Assassin 120 White + Thermaltake toughfan 12 white + Thermal Grizzly - CPU Contact Frame Intel 13./14. +  Coollaboratory Liquid Ultra
GPU : MSI RTX 2070 Armor @GPU 2050MHz Mem 8200MHz -> USB C 10Gb/s cable 2m -> Unitek 4x USB HUB 10 Gb/s (Y-HB08003)
MOBO : MSI MEG Z690 UNIFY
RAM :  Corsair VENGEANCE DDR5 RAM 64 GB (2 x 32 GB) 6400 MHz CL32 (CMK64GX5M2B6400C32)
SSD : Intel Optane 905P 960GB U.2 (OS) + 2 x WD SN850X 4TB + 2 x PNY CS3140 2TB + PLX88024 PCIe switch (PCIE 4.0 x8 -> 4 x M.2 PCIe 4.0 x4) -> 4 x Plextor M8PeG 1TB + flexiDOCK MB014SP-B -> Crucial MX500 2TB + GoodRam Iridium PRO 960GB + Samsung 850 Pro 512GB
HDD : WD White 18TB WD180EDFZ + SATA port multiplier adp6st0-j05 (JMB575) ->  WD Gold 8TB WD8002FRYZ + WD Gold 4TB WD4002FYYZ + WD Red PRO 4TB WD4001FFSX + WD Green 2TB WD20EARS
EXTERNAL
HDD/SSD : 
XT-XINTE LM906 (JMS583) -> Plextor M8PeG 1TB + WD My Passport slim 1TB + LaCie Porsche Design Mobile Drive 1TB USB-C + Zalman ZM-VE350 -> Goodram IRDM PRO 240GB
PSU :  Super Flower leadex platinum 750 W biały -> Bitfenix alchemy extensions białe/białe + AsiaHorse 16AWG White 
UPS :  CyberPower CP1500EPFCLCD -> Brennenstuhl primera-line 8 -> Brennenstuhl primera-line 10
LCD : LG 32UD59-B + LG flatron IPS236 -> Silverstone SST-ARM11BC
CASE :  Fractal R5 Biały + Lian Li BZ-H06A srebrny + flexiDOCK MB014SP-B + 6 x Thermaltake toughfan 14 white + Thermalright TL-B8W
SPEAKERS :  PC -> TOSLINK 2m -> Linkfor ULK073 1x4 Digital SPDIF Splitter (B07MJ4TLWQ) -> TOSLINK 0.5m -> Aiyima A80 ( or Aune S6 Pro -> RCA ->  Aiyima A80 ) -> Polk S20e black -> Monoprice stand 16250
HEADPHONES : PC -> TOSLINK 2m -> Linkfor ULK073 1x4 Digital SPDIF Splitter (B07MJ4TLWQ) -> TOSLINK 0.5m -> Aune S6 Pro -> 2 x Monoprice Premier 1.8m 16AWG 3-pin XLR -> Monoprice Monolith THX AAA 887 -> 4-pin XLR na 2 x 3.5mm 16 cores OCC 2m Cable -> HiFiMAN Edition XS -> sheepskin pads + 4-pin XLR na 2 x 2.5mm ABLET silver 2m  Cable -> Monoprice Monolith M1060 + Brainwavz HM100 -> Brainwavz sheepskin oval pads + Wooden double Ɪ Stand + Audio-Technica ATH-MSR7BK -> sheepskin pads + Multibrackets MB1893 + Sennheiser Momentum 3 +  Philips Fidelio X2HR/00 + JBL J88 White
MIC :  Tonor TC30 -> Mozos SB38
KEYBOARD : Corsair STRAFE RGB Cherry MX Silent (EU) + Glorious PC Gaming Race Stealth Slim - Full Size Black + Kensington VeriMark / PQI MyLockey
MOUSE :  Logitech MX ERGO + 2 x Logitech MX Performance + Logitech G Pro wireless + Logitech G Pro Gaming -> Hotline Games 2.0 Plus + Corsair MM500 3xl + Corsair MM300 Extended + Razer goliathus control
CONTROLLERS :  Razer Wolverine V3 Tournament Edition 8K PC (B0F94C9C43) -> brainwavz audio Controller Holder UGC2 + Microsoft xbox series x controller pc (1VA-00002) + Ravcore Javelin
NET :  Intel E810-XXVDA2 2 x 25GbE SFP28 (PCIE 4.0 x8) -> 2 x FTLX8571D3BCV-IT -> 2 x Digitus (DK-HD2533-05/3) -> Qnap TS-932X-2G + 2 x ASUS ZenWiFi Pro XT12
NAS :  Qnap TS-932X-2G -> Kingston 16GB 2400Mhz CL14 (HX424S14IB/16) -> 9 x Crucial MX500 2TB -> 2 x FTLX8571D3BCV-IT -> Noctua NF-P14s redux 1200 PWM -> QNAP TR-004
Link to comment
https://linustechtips.com/topic/1490664-ssdnvme-multihost/#findComment-15822632
Share on other sites

Link to post
Share on other sites

On 2/28/2023 at 6:22 PM, LIGISTX said:

Technically yes there are ways to do this. But… what is your use case here? What is the data you’re trying to edit? Why can’t you just use a nas and some NVME storage in each machine?

Well.. the point is.... The data I use, can be used bu several types of programs, so I need access across several devices, and the data is heavy, maybe instead of heavy dense would be better, as an example, a pc that handles a web server, other for data analysis, and both need fast access to exactly the same data, so... a way to handle the sync from several devices seems... complicated, I want to avoid that, while if the SSD has multihost, all the devices can have exactly the same access, if something changes will change for everyone... Well if two devices try to write in the same file at the same time, I excpect or at least, the result to be closer to two apps doing the same from the same device. For me is fine while the hardware/software has a filesystem uses a lock system? just avoid the sync problem over several edits.

Link to comment
https://linustechtips.com/topic/1490664-ssdnvme-multihost/#findComment-15825383
Share on other sites

Link to post
Share on other sites

19 minutes ago, latot said:

Well.. the point is.... The data I use, can be used bu several types of programs, so I need access across several devices, and the data is heavy, maybe instead of heavy dense would be better, as an example, a pc that handles a web server, other for data analysis, and both need fast access to exactly the same data, so... a way to handle the sync from several devices seems... complicated, I want to avoid that, while if the SSD has multihost, all the devices can have exactly the same access, if something changes will change for everyone... Well if two devices try to write in the same file at the same time, I excpect or at least, the result to be closer to two apps doing the same from the same device. For me is fine while the hardware/software has a filesystem uses a lock system? just avoid the sync problem over several edits.

Two devices writing the same data at the same time will almost always cause corruption and issues like that. 
 

Can whatever you are running not just all be VM’s on a single machine, and mount the storage via local, virtual network mounts? If you need fast networking and don’t want to pay for fast networking, you can always virtualize everything and allow the VM’s communicate with the storage appliance via virtual NIC’s (that’s how VM’s work unless you provide them with physical PCIe NIC’s), and virtio virtual NIC’s more or less transfer data at the kernel level; data would transfer from VM to VM as fast as RAM can move data… which will instantly make your harddrives or SSD’s the bottleneck. You just need to run everything virtually under a single hypervisor. 

Rig: i7 13700k +Contact Frame - - Asus Z790-P Wifi - - RTX 4080 - - 4x16GB 6000MHz - - Samsung 990 Pro 2TB NVMe Boot + Main Programs - - Crucial P3 2TB NVMe for photo work - - Corsair RM850x - - Sound BlasterX EA-5 - - Corsair XC8 JTC Edition - - Corsair GPU Full Cover GPU Block - - PTM 7950 - - XT45 X-Flow 420 + UT60 280 rads externally mounted - - EK XRES RGB PWM - - Fractal Define S2 - - DellAlienware AW3423DWF 34" -- Logitech Pro X Superlight - - Logitech G710+ - - LTT Northern Lights Deskpad

 

Headphones/amp/dac: Schiit Bifrost Multibit - -  Schiit Lyr 3 - - Fostex TR-X00 - - Sennheiser HD 6xx

 

Homelab/Media Server: Proxmox VE host - - 512 NVMe Samsung 980 RAID Z1 for VM's/Proxmox boot - - Xeon e5 2660 V4- - Supermicro X10SRF-i - - 128 GB ECC 2133 - - 10x8TB WD Red RAID Z2 - - 2x 800 GB SAS SSD’s (1 SLOG, 1 L2Arc) - - 45 HomeLab HL15 15 Drive 4U - - Corsair RM650i - - LSI 9305-16i HBA - - TreuNAS + many other VM’s

 

Unifi UDM Pro in front of full unifi network infrastructure

 

iPhone 17 Pro - - MacBook Air M3

Link to comment
https://linustechtips.com/topic/1490664-ssdnvme-multihost/#findComment-15825411
Share on other sites

Link to post
Share on other sites

19 hours ago, LIGISTX said:

Can whatever you are running not just all be VM’s on a single machine, and mount the storage via local, virtual network mounts? If you need fast networking and don’t want to pay for fast networking, you can always virtualize everything and allow the VM’s communicate with the storage appliance via virtual NIC’s (that’s how VM’s work unless you provide them with physical PCIe NIC’s), and virtio virtual NIC’s more or less transfer data at the kernel level; data would transfer from VM to VM as fast as RAM can move data… which will instantly make your harddrives or SSD’s the bottleneck. You just need to run everything virtually under a single hypervisor. 

Personally, that sounds great, there is just a few hard points.

To run all of VM's, if we want to get more cpu/ram the only option would be at least Threadripper, and go over 128gb of ram, for that the price go over... a lot...

 

But...., the option to can help to get other organization, like two devices with 16 cores, connect them with network cards, and in each of them use VM's, that would be the ideal mix in this case to minimize costs...

Link to comment
https://linustechtips.com/topic/1490664-ssdnvme-multihost/#findComment-15826774
Share on other sites

Link to post
Share on other sites

21 minutes ago, latot said:

Personally, that sounds great, there is just a few hard points.

To run all of VM's, if we want to get more cpu/ram the only option would be at least Threadripper, and go over 128gb of ram, for that the price go over... a lot...

 

But...., the option to can help to get other organization, like two devices with 16 cores, connect them with network cards, and in each of them use VM's, that would be the ideal mix in this case to minimize costs...

What are the workloads..? What do you need these servers for?

Rig: i7 13700k +Contact Frame - - Asus Z790-P Wifi - - RTX 4080 - - 4x16GB 6000MHz - - Samsung 990 Pro 2TB NVMe Boot + Main Programs - - Crucial P3 2TB NVMe for photo work - - Corsair RM850x - - Sound BlasterX EA-5 - - Corsair XC8 JTC Edition - - Corsair GPU Full Cover GPU Block - - PTM 7950 - - XT45 X-Flow 420 + UT60 280 rads externally mounted - - EK XRES RGB PWM - - Fractal Define S2 - - DellAlienware AW3423DWF 34" -- Logitech Pro X Superlight - - Logitech G710+ - - LTT Northern Lights Deskpad

 

Headphones/amp/dac: Schiit Bifrost Multibit - -  Schiit Lyr 3 - - Fostex TR-X00 - - Sennheiser HD 6xx

 

Homelab/Media Server: Proxmox VE host - - 512 NVMe Samsung 980 RAID Z1 for VM's/Proxmox boot - - Xeon e5 2660 V4- - Supermicro X10SRF-i - - 128 GB ECC 2133 - - 10x8TB WD Red RAID Z2 - - 2x 800 GB SAS SSD’s (1 SLOG, 1 L2Arc) - - 45 HomeLab HL15 15 Drive 4U - - Corsair RM650i - - LSI 9305-16i HBA - - TreuNAS + many other VM’s

 

Unifi UDM Pro in front of full unifi network infrastructure

 

iPhone 17 Pro - - MacBook Air M3

Link to comment
https://linustechtips.com/topic/1490664-ssdnvme-multihost/#findComment-15826803
Share on other sites

Link to post
Share on other sites

Well..., I usually plays analyzing data, and trying to upload to the cloud (which only works on windows).

 

Is hard to me tell the workload, I usually handles too different project, and is common to reach the limit of read/write speeds of disks or ram or use of the CPU.

 

So I try to keep the things most open/flexible possible, but with lowing cost or they will go to the moon.

 

Due to this, and limitated resources, if I try for example, be able to have more space from a NAS, I would try to get at least the bandwith I already have locally, close to it, and i is possible more than that.

Link to comment
https://linustechtips.com/topic/1490664-ssdnvme-multihost/#findComment-15827329
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×