The current DEV environment that I'm using when I play with Service Fabric had a SSD of 256GB and a normal HDD (512GB).
The problem with the current configuration is that I don't have enough space on SSD for everything I would like to put there. Service Fabric Development Cluster can use a lot of this space and you might want to put it on another partition or HDD, where there is enough space.
The location where the cluster data are stored can be specified through the Power Shell script that is used to setup the DEV environment for our cluster.
In the above example, I specify that all the data for my local cluster to be copied to D:\cluster\data and logs to D:\cluster\logs.
In the above example, I specify that all the data for my local cluster to be copied to D:\cluster\data and logs to D:\cluster\logs.
C:\Program Files\Microsoft SDKs\Service Fabric\ClusterSetup>
.\DevClusterSetup.ps1
-PathToClusterLogRoot D:\cluster\log
-PathToClusterDataRoot D:\cluster\data
Comments
Post a Comment