We are using Flexible Node Balancing, and are experiencing issues with content not being replicated to the slave web servers in the load balance. We have noticed in the Umbraco database that the IsMaster flag is false for our Master CMS box, and is set to true on one of the slaves. Should this flag be true for the CMS master, or does this flag have another meaning?
@Adam IsMaster flag determines the scheduling server that would be responsible for publishing scheduled content, it is not automatically tied to the server used for CMS access however as @Dan has linked to above you can make this be the case by implementing your own IServerRegistrar2 class and you most likely want to do this.
umbracoServer table - column IsMaster
We are using Flexible Node Balancing, and are experiencing issues with content not being replicated to the slave web servers in the load balance. We have noticed in the Umbraco database that the IsMaster flag is false for our Master CMS box, and is set to true on one of the slaves. Should this flag be true for the CMS master, or does this flag have another meaning?
I don't have much experience of this set-up personally, but I do recall you can explicitly set the master server via code: https://our.umbraco.org/documentation/getting-started/setup/server-setup/load-balancing/flexible-advanced#explicit-master-scheduling-server
@Adam IsMaster flag determines the scheduling server that would be responsible for publishing scheduled content, it is not automatically tied to the server used for CMS access however as @Dan has linked to above you can make this be the case by implementing your own IServerRegistrar2 class and you most likely want to do this.
Jeavon
is working on a reply...