azure-webjobs Questions
24
Solved
First off, I have looked at the other SO posts with the same error message and none seem to resolve my issue. I have tried many permutations and options. My function builds fine but will not run in...
Missi asked 6/12, 2017 at 20:16
5
Solved
I have an issue where an Azure WebJob I created (on a Web App) is not running using the cronjob Trigger I specified. I am able to click on the WebJob, then click Run and it does run fine with no er...
Argillite asked 2/8, 2016 at 0:52
4
My WebJob is processing multiple messages from a queue which I don't want it to do. My queue has dependent messages which I want to process one after the other sequentially.
I have tried with confi...
Molech asked 19/1, 2016 at 6:2
3
i'm trying to publish a webjob to Azure but I get some errors like the following. looks like it's because in the path after 'Out' it adds two backslashes instead of one (PubTmp\Out\\app_data).
28&g...
Careerist asked 10/12, 2020 at 2:21
3
I have the following code which doesnt have any compiler warnings or errors: (its a webjob)
However in the line: builder.Build I got this exception:
System.InvalidOperationException: 'Unable to r...
Aluminium asked 3/6, 2020 at 10:3
2
Solved
I'm creating a function app in Azure and want to use a queue trigger.
I know how to configure the queue name at design time, e.g:
[FunctionName("MyTestFunction")]
public static void Run([Queu...
Animus asked 19/8, 2017 at 21:11
2
Solved
I have an Asp.Net Core Api 3.1 and an Azure WebJob, both running on an Azure App Service. Both of them have a need to send notifications and neither will be receiving messages. To break it down:
I...
Padnag asked 12/11, 2020 at 15:25
3
Solved
What will happen when I deploy a continuously running Azure WebJob with a QueueTrigger (queue connection defined in app.config) into a Deployment Slot (for example "Staging")?
Will it start to run...
Campbellbannerman asked 26/6, 2014 at 19:37
4
Solved
How to prevent Azure webjobs from being swapped in Azure website production <--> staging slots
I have an Azure website with a production and staging slot with multiple instances.
I run several Azure webjobs on the site, some of which are triggered others that are continuous.
I understand t...
Chivalry asked 26/6, 2015 at 2:49
7
I am building a website using .NET 4. There are lots of MSDN articles dating from 2003, about using Thread objects and 2007, using Asynchronous Pages in .NET 2, but that is all pretty stale. I know...
Remex asked 5/4, 2011 at 13:54
4
Missing references upgrading to Webjob V3
Installed the references
'IWebJobsBuilder' does not contain a definition for 'AddTimers' and no accessible extension method 'AddTimers' accepting a first...
Velazquez asked 16/7, 2019 at 15:17
3
Solved
Trying to update my Service Bus apps to use the new RTM and I need this information.
<add name="AzureWebJobsDashboard" connectionString="DefaultEndpointsProtocol=https;AccountName=;AccountKey="...
Sorbitol asked 20/12, 2014 at 12:31
5
Solved
In Azure, Once a Triggered Web Job has begun? What do we need to do - to stop it?
Background:
Our Web Job populates a Service Bus Queue that then scale out our worker roles - our worker roles are...
Heterochromatic asked 29/10, 2014 at 17:29
1
I've got a simple .NET V3 WebJob with a timer trigger up and running in a .NET website as outlined in this answer: Scheduled .NET WebJob V3 example
However, in the output, I get this warning:
war...
Maeganmaelstrom asked 30/7, 2019 at 23:59
7
Solved
I have a Function App in azure and when I hit the URL of the function app it says "Function host is not running."
I am not sure where I have to check and what needs to be changed.
I tried restart b...
Chaetopod asked 7/3, 2018 at 21:35
9
Solved
I've created some Azure Webjobs that use triggers and I've just learnt about Azure Functions.
From what I understand Azure Functions seem to overlap with Azure Webjobs features and I have some dif...
Unstrained asked 13/4, 2016 at 22:53
1
I am trying to migrate several of our dotnet based function-apps (v3) to docker containers. For this we use images from mcr.microsoft.com/azure-functions/dotnet as a base
When testing locally using...
Tangram asked 9/4, 2021 at 10:32
10
I have enabled Managed Service Identities on an App Service. However, my WebJobs seem unable to access the keys.
They report:
Tried the following 3 methods to get an access token, but none of the...
Greenwood asked 19/9, 2017 at 18:23
3
Solved
I currently have an azure webjob that performs a daily sync from one database to another, but would like to add the ability to manually trigger the sync as well. I have set up the functions as foll...
Cottontail asked 15/3, 2017 at 18:5
4
I am getting unable to acquire singleton lock issue when I am running the application locally. How may I resolve it?
Below is my code
static void Main()
{
JobHostConfiguration config = new`ente...
Ranie asked 20/7, 2016 at 8:21
3
I want to be able to write code like
using (await LockAsync(x.Id))
{
// here goes code that is unsafe with respect to x.Id
// because it can be executed in multiple threads on
// the same insta...
Nevermore asked 28/11, 2018 at 1:51
5
Solved
The problem is that the Azure WebJobs SDK supports only public static methods as job entry-points which means there is no way of implementing constructor/property injection.
I am unable to find an...
Isochronal asked 19/5, 2015 at 14:38
2
Solved
In our current setup there are 2 slots for an Azure App service, the question that I have is, when the slot is stopped would it also shut down the webjob that is deployed on that slot or would the ...
Slavey asked 17/3, 2017 at 20:29
8
Solved
What does "Pending Restart" mean? I have stopped and restarted my WebJob numerous times and that doesn't seem to fix it. Does it mean I have to restart my website? What caused my job to g...
Ingrained asked 15/5, 2014 at 20:54
7
Solved
Is there a way to programmatically enable/disable an Azure function?
I can enable/disable a function using the portal under the "Manage" section, which causes a request to be sent to https://<...
Lorenzoloresz asked 22/2, 2017 at 19:51
1 Next >
© 2022 - 2024 — McMap. All rights reserved.