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 invoke Azure Scheduled Job by a webrequest

How do i invoke a Microsoft Azure Scheduled Job from my serverside code? I have a running Scheduled Job, that calls an endpoint, to send out some emails and sync some data. I have a system, where users can send emails out to lists of emails. So…
Djensen
  • 1,337
  • 1
  • 22
  • 32
0
votes
0 answers

Azure Logic App - Recurring Trigger Not Recurring

I have a simple Azure logic app that starts with a trigger step, which is "When One or More BLOBS are Added" to a specific Azure storage container. It has an interval setting to check for new files every 3 minutes. It then calls one more step to…
DanielG
  • 1,669
  • 1
  • 12
  • 26
0
votes
1 answer

What is the recommended way to schedule azure jobs for SSIS packages

If i am not wrong Azure Portal Database not have The SQL Agent.My azure database Integration Service Catalogs is bellow. What is the recommended way to schedule SSIS routine jobs. What is the recommended way to schedule routine jobs? Is it possible…
shamim
  • 6,640
  • 20
  • 85
  • 151
0
votes
0 answers

AzureRM template Microsoft.Scheduler/jobCollections/jobs request uri with arguments fails

I'm facing a problem when I deploy a template to build a scheduler job with an URI in which I want to pass two arguments. I want to set as the uri something like "/api/triggeredwebjobs/MyJob/run?arguments=arg1%20arg2" This works well when typing…
0
votes
1 answer

Use Azure Scheduler with management certificate

The newest version of the Azure Scheduler sdk for .NET has some limited documentation on how to get started with it using AD credentials, but the documentation on how to get that set up is not up to date. I'd like to instead make this easier, how…
The Muffin Man
  • 19,585
  • 30
  • 119
  • 191
0
votes
1 answer

Issue creating Azure scheduler SchedulerClient class

There is an argument called cloudServiceName when creating a new instance of SchedulerClient, but there's no documentation available on where that value comes from and the Azure portal isn't helpful either. Here's the code I have so far: var store =…
The Muffin Man
  • 19,585
  • 30
  • 119
  • 191
0
votes
1 answer

how to submit form in Azure Scheduler

I have a web-service running at AWS (lets say example.com) . I would like to transfer data to the web-service once per hour. I also have Azure account, and I would like to use Azure's Scheduler to transfer data to my web-service. I can use my…
eneski
  • 1,575
  • 17
  • 40
0
votes
2 answers

Mechanism to scheduling a message to Azure queue

Let us consider an device(s) which continuously send its activity message to a azure queue as Q1 .On that each message,i have 2 properties one is MessageContent and another one is time when we need to push that MessageContent into another queue as…
0
votes
1 answer

Run scheduler on Azure based on user specific scheduled time

We have an API to fetch the latest transaction data of the user based on the scheduled Next_Refresh_Time. Each user has different scheduled refresh time. Since we have thousands of users we have to run the scheduler to fetch the data. Please suggest…
Sarva
  • 313
  • 1
  • 3
  • 13
0
votes
2 answers

Azure WebJobs Scheduler

Can we have multiple Schedules in a Single web Job of Microsoft Azure. We have certain functionalities to happen in a single job within particular time i.e multiple schedules so we have tried through the timer but i need to know is there any other…
Inayat
  • 3
  • 4
0
votes
1 answer

How do I use a bearer authorization token in a Azure Scheduler job?

I want to create a scheduler job in Azure where i will perform a GET request of a URL with an authorization header with a bearer token but I cant get it to work. I've looked at this similar problem but it's not applicable for my issue. Today its a…
0
votes
2 answers

Best option to schedule payments: azure scheduler, WebJob or Azure Functions or a Worker Role?

I've hosted my website on azure and now I want to schedule payments on a monthly basis. I am using Authorize.net for payments but I cannot use their recurring billing feature as it gives very little control. I've to perform checks in the database,…
0
votes
2 answers

Azure Scheduled Job Fails to Execute

I had two scheduled jobs running in my developer program benefit subscription. I had set them up originally using the classic portal. I set them to run every hour since I am on Free Tier. Everything was working fine until I had to redeploy the…
erotavlas
  • 4,274
  • 4
  • 45
  • 104
0
votes
1 answer

How to check number of jobs remaining in job collection of Azure scheculer

I have implemented Azure scheduler by following below blog http://fabriccontroller.net/a-complete-overview-to-get-started-with-the-windows-azure-scheduler/ Now I am able to create/update/delete jobs in the scheduler but how can I check whether the…
rahulshr
  • 181
  • 1
  • 16
0
votes
1 answer

Azure Scheduler: Put Message to a Storage Queue

I'm creating a Job in Azure Scheduler Job Collection. The idea is to drop a message to a queue at a scheduled time. I followed this link to configure the https job but I'm stuck at a point where I need to add a Request Header x-ms-date (or Date)…