Questions tagged [azure-scheduler]

Windows Azure Scheduler allows you to invoke actions—such as calling HTTP/S endpoints or posting a message to a storage queue—on any schedule. With Scheduler, you create jobs in the cloud that reliably call services both inside and outside of Windows Azure and run those jobs on demand, on a regularly recurring schedule, or designate them for a future date.

99 questions
0
votes
1 answer

How to create a JSON POST job in Azure Scheduler

I'm used to using Fiddler, so am probably missing something simple, however... I need to create a scheduled job in Azure to POST to an API monthly. Everything goes well until I try to enter the BODY content: When Azure tries to create the job, it…
EvilDr
  • 8,943
  • 14
  • 73
  • 133
0
votes
1 answer

How do you update Scheduled Jobs?

I have two scheduled jobs each running their own console application (.exe) I updated the code for the executables and now I want to deploy them to Azure. In the past I have deleted the old jobs and republished the new ones from scratch. But I…
erotavlas
  • 4,274
  • 4
  • 45
  • 104
0
votes
1 answer

Simulating Azure Scheduler with Basic Authentication

How can I locally reproduce the https GET call that my Azure Scheduler job would execute that uses Basic Authentication with a username/password? I know I can just type in the URL in the browser to hit the action in my MVC controller, but how does…
0
votes
1 answer

Azure Webjob Authorization errors

I can get a WebJob work from azure protal. I tried to deploy it from VS, and the result was: 401 - Unauthorized: Access is denied due to invalid credentials. I tried set the URL like this article suggested…
Sebastián Rojas
  • 2,776
  • 1
  • 25
  • 34
0
votes
1 answer

Is it possible to create a recurring job for period of time in the day using Azure Scheduler?

I am trying azure scheduler and could not find a way to set below scenarios in azure scheduler's job, Job run every 60 min between 8 am to 8 pm job run every 40-80 min (shoud be random) between 7 am to 7 pm Any above scenario possible by…
Arun Rana
  • 8,426
  • 14
  • 67
  • 107
0
votes
1 answer

Handling Cleanup jobs using Azure storage Queues

In order to process cleanup jobs, that will run for every 8 hours, currently we have implemented as : Create scheduled Job using Azure Scheduler that puts message in storage queue when it is triggered. Implement client in such a way that it will…
0
votes
2 answers

Azure Queues: Enqueue a message periodically from only one worker role instance

I want to do a certain task periodically (per day) on our Web/Worker role. I have multiple instances in my Cloud Service, and I want only one of these instances to do this task per day (for example Instance0 can do it one day, next day it could be…
0
votes
1 answer

Mimicking Schedule function in Webjob in Worker Role

I have an Azure web app that includes some web jobs to run some background tasks. These tasks need to run on a schedule (every 6 hours). Using a WebJob it was pretty easy to achieve the goal. However, recently we decided to use Web Roles instead of…
0
votes
1 answer

Converting FTP data sync to Azure services

I have an old legacy application built on .NET remoting, and transferring data via XML via with FTP. Esentially, a CRM system is sending XML files to a directory on the web server, which has a windows service that uses a filewatcher to process the…
0
votes
2 answers

How to schedule Batch Execution Service of Azure Machine Learning in Azure Scheduler

In Batch execution API help page of Azure Machine Learning there are three different URI’s Submit Job (Response is Job ID) Start Job ( we need to use the above Job ID in this URI) Get Status or Result (we need to use the above Job ID in this…
0
votes
1 answer

How to write the results of Azure ML web service to the azure sql database (The output of Azure ML web service is in Json structure)

The results can be written to SQL Azure using the writer module in the experiment but after publishing the web service the output comes in the Json Structure and it doesn't go to the writer module
0
votes
1 answer

Azure Schedule Long Running Tasks

We use azure and we have a lot of schedules that run. Schedules that send emails, do database processing and similar. Now we were using the Azure scheduler, however if the schedule doesnt finish in the timeout period, it runs it again, this causes…
Dale Fraser
  • 4,623
  • 7
  • 39
  • 76
0
votes
1 answer

Scheduling Azure Worker Role

I am writing a small azure worker role that remove old files from my Azure-Storage account. I am planning to run this code one time per month. The duration of task execution is less the 10 minutes. What I'm planning is to run this worker role and…
No1Lives4Ever
  • 6,430
  • 19
  • 77
  • 140
0
votes
1 answer

Invoking a simple worker role

I'm trying to gain some understanding and experience in creating background processes on Azure. I've created a simple console app and converted it to Azure Worker Role. How do I invoke it? I tried to use Azure Scheduler but looks like the scheduler…
Sam
  • 26,817
  • 58
  • 206
  • 383
0
votes
1 answer

Azure - Scheduled Long Running Task - Scale Down Worker Role To Zero

Ok Azure Experts, I have a task that only needs to run once every week - this is a long running task that can take 2-3 days to run. I have set up a worker role to scale based on a queue. On the day that we want the task to start - we populate the…