Configuring Scheduler
Infiniti Scheduler can be deployed as a webjob in the Azure App Service.
Here a step by step tutorial that will guide you through this process.
-
Create a zip file, IntelledoxScheduler.zip, which contains all the files present inside the IntelledoxScheduler folder.
-
Go to Azure Portal. Click on App Services and select the App Service where you want to install the Intelledox Scheduler. Search for WebJobs in the App Service and click on the WebJobs blade.
-
Click on Add option in the Webjobs and provide the following parameters and press OK
- Name: IntelledoxScheduler (Name for the scheduler)
- File Upload: Select the IntelledoxScheduler.zip created in Step-1
- Type: Triggered
- CRON Expression: Duration for scheduler
CRON Expression
Refer to the following link for more information about CRON Expression: https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-timer
Azure Application Settings
Set the Always On option to ON in the Application Settings of the App Service. It is recommended this feature be enabled when you have web jobs running on the web app.
- You will see a Adding WebJob message in the notification. Once the deployment is completed you will see the scheduler configured to your App Service.
Update Intelledox Scheduler and Azure WebJob
When Continuous Deployment is enabled and Intelledox Scheduler is configured as an Azure WebJob a folder will be created typically under App_Data\jobs\triggered\IntelledoxScheduler
.
Intelledox upgrade .exe file will now search for for the IntelledoxScheduler.exe
underneath this folder and if found will run the scheduler upgrade here as well.
Syncing the new files will ensure the WebJob uses the new Intelledox Scheduler files.
Azure Continuous Deployment
More information can be found here: https://docs.microsoft.com/en-us/azure/app-service/deploy-continuous-deployment
Updated almost 6 years ago