I've been working on an international deployment of Sitecore recently, and resolving some problems around how publishing raises remote events has demonstrated that there are some things about the publishing process that I didn't entirely understand... I doubt this is a common scenario, but it still seems worth writing down what I've learned – So here's another crib sheet for my future self:
So authors log in to the Sitecore instance that's geographically closest to them, and do their editing there. When they're done they hit "publish" and the changes are sent to Publishing Targets for both the EU and AU web databases.
Since there's a WAN link between the central Master DB and the local Web DBs, this seemed like a use-case for Publishing Service, as it's much faster processing should be much better at dealing with the network latency involved in this scenario.
And mostly this works ok...
But it was noticable that when an author published in Europe, it updated fine, but caches and indexes did not update in Australia. And that made sense, as checking under the surface the Events tables in the Australian databases did not get any "a publish has happened" messages written to them...
So clearly I got something wrong – and after failing to fix it myself I spent some time discussing the scenario with Sitecore Support.
So Publishing Service can be configured to see the "web" Publishing Target databases in EU and AU, plus the central Master. But the CM and CD instances only care about their local web database and Master. So they don't need to know about the remote web databases at all.
That seems logical – and the publish operations largely work. But the "events don't happen remotely" thing suggested it wasn't right.
That means that this scenario requires you have to have all your remote databases configured as Publishing Targets for both the CM role and for Publishing Service.
So fix my issue, I had to change the configuration so that:
Once both Publishing Service and all of the CM boxes knew about all of the databases, the events started to appear in the remote database after a publish, and magically caches cleared and indexes updated after each publish.
You don't appear to need to change the CD server config to match the CM changes.
Once again, Sitecore Support saves my bacon – Thank you!
↑ Back to top