Try our conversational search powered by Generative AI!

Allowing an individual scheduled job to run on all servers

Vote:
 

Is there a way to have all servers in a multi-server environment (DXC production) to run a scheduled job?  At the moment only one server at random appears to run the job.

https://world.episerver.com/documentation/developer-guides/CMS/scheduled-jobs/

I have some jobs that generate local XML files and application caches, but I want that to apply to all servers when the job runs not just the one that managed to run the job.

#196820
Sep 12, 2018 16:05
Vote:
 

As an example you might have the sitemap.xml being updated once a day.  The problem is it will only update on the one server that ran that job.

#196821
Sep 12, 2018 16:10
Vote:
 

Hi Dave,

As far as I'm aware, you can't set an Episerver scheduled job to run on all servers but you do have other options available to you.

In my view, the beter of the options would be to use centralised resources such as blob storage to store your generated files then have each server read from blob storage (possibly cached locally if response time is a concern - the inbuilt Episerver cache will handle remote cache invalidation). This approach avoids duplicating work on each of the servers.

If you want to run a task on all servers I think you'd need to take a look at 3rd party libraries such as quartz.net or hangfire.

#196858
Sep 13, 2018 13:57
Vote:
 

Ok thanks for your answer.  I might try and write a file into the cms media area that they can use if need be.  Might be easier than the blob storage, but that is an option too.  My main thing was to use cache first, then a fall back file, and web service last.  In case the web service stops or the server goes down with that on, I then still have a good file I can use until the web service server is back up.

#196898
Sep 14, 2018 17:03
Vote:
 

If budget allows, it may be worth you taking a look at the Azure Redis Cache service as that gives you a persistent cache accessible from all servers so you wouldn't necessarily need the fallback file. 

#196919
Sep 17, 2018 11:07
Vote:
 
#196936
Sep 18, 2018 2:49
Vote:
 

in dxc (or in cloud infra in general) i would try to avoid any server specific local file features. just because you might be "re-located" to different physical server (due to some failovers in azure or whatever reasons) and then your app becomes in invalid state until your job is ran and local files are produced. the most easiest way (and used that myself to "sync" up multiple servers) is to use azure storage tables and/or blob storage. much cheaper than redis cache and have VERY SIMILAR performance characteristics.

#196940
Sep 18, 2018 9:16
Vote:
 

I'll look into the DXC azure blob storage.  Episerver limit our access to anything but integration so hard to easily see if what I'm doing would work.

#196972
Sep 18, 2018 16:59
Vote:
 
#196973
Sep 18, 2018 17:01
Vote:
 

well, if they provide with connection to particular storage account (it's needed for blobs anyway) - and you can access to that storage (even via code) it should work

#196978
Sep 18, 2018 21:38
Vote:
 

Episerver refuse to let us have access to preproduction and production azure blob storage areas.  There must be some way to use them though otherwise it's pointless having them.

#196999
Sep 19, 2018 12:09
Vote:
 

As Valdis mentioned, if you want to access the BLOB storage directly, the connection strings will be in your web.config (probably as "EPiServerAzureBlobs") as the Episerver BLOB provider will need access to it. As I recall though, Episerver doesn't recommend using the DXC BLOB storage account directly as they may periodically update/migrate/move/recreate the storage and they'll won't include anything which diverges from their standard structure (though I can't find any documentation to back that up). I think their suggestion was to create your own BLOB storage account outside of DXC for any customised uses of BLOB storage which go beyond what Episerver APIs make available.

The alternative to accessing the BLOB storage directly is to use the BLOB storage provider which provides a wrapper around the underlying BLOB storage as described here:
https://world.episerver.com/documentation/developer-guides/CMS/blob-storage-and-providers/ 

#197006
Sep 19, 2018 13:18
Vote:
 

and just a note, table access is much faster compared to blob storage. but overall - reusing dxc storage might not be the offically supported best way to use it :)

#197028
Edited, Sep 19, 2018 15:39
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.