Questions tagged [azure-webjobssdk]

Azure WebJobs SDK is a framework that simplifies the task of adding background processing to Windows Azure Web Sites.

The Azure WebJobs SDK is a framework that simplifies the task of writing background processing code that runs in Azure. The Azure WebJobs SDK includes a declarative binding and trigger system that works with Azure Storage Blobs, Queues and Tables as well as Service Bus. The binding system makes it incredibly easy to write code that reads or writes Azure Storage objects. The trigger system automatically invokes a function in your code whenever any new data is received in a queue or blob. See the azure-webjobs-sdk repo for more information.

480 questions
0
votes
1 answer

Webjobs not logging to azure-jobs-invoke-log

Previously, when I used the TextWriter to log messages in a Webjob, those got written to a blob container called azure-jobs-invoke-log. Unfortunately, that container does not exist in the storage account which I am using with the update 0.4.0…
onefootswill
  • 3,707
  • 6
  • 47
  • 101
0
votes
1 answer

Got error 404 when runnning a webjobs

I am using 0.5.0 webjobs SDK with a very basic code: public static void AjouterFiligramme2( [BlobTrigger(@"images-input/{name}")] Stream inputStream, [Blob(@"images-output/{name}")] Stream outputStream) { WebImage image = new…
0
votes
2 answers

Error when a function with BlobTrigger gets invoked on Beta 0.5.0

I'm getting the following error A first chance exception of type 'System.FormatException' occurred in Microsoft.Azure.WebJobs.Host.dll Additional information: Blob identifiers must be in the format container/blob. public static void…
0
votes
1 answer

Executing manual (Webjobs) from ASP.net MVC

I have a project in ASP.net MVC 4 and work with Webjobs and it works wonderfully. But now I want implement a process that starts the webjob directly (manual), because I have them working every 5 minutes. That is ok, but now I want have this function…
CrlsPerez
  • 117
  • 1
  • 10
0
votes
1 answer

Is there a way to surpress Azure WebJob Invocation Logs when using WebJob SDK?

Does anyone know if it is possible to control what information is written to the WebJob Invocation Logs when using the Azure WebJob SDK? I am processing a queue which holds sensitive information that i do not wish to store or be displayed in the…
pmgrove
  • 63
  • 2
  • 4
0
votes
2 answers

webjobs using IBinder to delete a blob

Ok, I realise the webjobs sdk is still in beta but it is pretty cool. I am struggling a little with the IBinder though in terms of getting to the actual object I'm binding to. It may be obvious so please forgive me if so... I am processing emails…
Brett JB
  • 687
  • 7
  • 24
0
votes
2 answers

Is it possible to extend the WebJobs SDK?

Is there a way to extend the Azure WebJobs SDK? If I want something other than a queue, blob or table to trigger my job function.
Rasmus Christensen
  • 8,321
  • 12
  • 51
  • 78
-1
votes
1 answer

Do webjobs get redistributed on adding new VMs due to autoscaling?

There are 5 webjobs running on 2 VMs. 3rd VM is added after sometime because of auto scaling. Are the webjobs redistributed across VMs? If webjobs are not redistributed what is the point of adding another VM if it will remain idle?
-1
votes
2 answers

Have Azure Webjob Function run once on startup

Is there a specific way to have Azure WebJobs trigger a function once on startup without using external messages/triggers? I know there is the RunOnStartup annotation that can be added to the TimerTrigger trigger but that still requires a time…
-1
votes
1 answer

Azure Webjobs 3.0 read from blob with manual trigger

I have an Azure Webjob that processes a blob anytime it's changed: public async Task DoSomethingWithABlob( [BlobTrigger("myfiles/{filename}")] Stream blob, string filename) { //Process blob.. …
figursagsmats
  • 155
  • 1
  • 1
  • 15
-1
votes
2 answers

Azure: Handle 1000k blobs. Which Azure Service should I choose?

I have 1000k blobs. I need to remove empty lines in their content and overwrite. To achieve the goal, I plan to use: Azure webjob DataFactory Azure Batch Could you give me some advise which service is best fit for this case?
duy
  • 579
  • 5
  • 16
-1
votes
1 answer

Serilog: azure webjob logging doesn't seem to work when hosted in azure?

I have azure webjob sdk (v3.0.3) app which has been configured to use serilog for logging. The log seems to work when I run the app locally in my system. Below is the configuration: static void Main(string[] args) { try …
-1
votes
1 answer

Python Azure functions queue binding

How do I use a queue output binding in a python azure function. Here is the binding in my function.json { "type": "queueTrigger", "name": "myQueue", "direction": "out", "queueName": "qname", "connection": "CONNECTION" } My code ends with…
Virus7711
  • 27
  • 1
  • 5
-1
votes
1 answer

getting exception after webjob sdk code fork for public class ServiceBusTriggerAttribute

I get all webjod sdk code from here I want to make class ServiceBusTriggerAttribute public and non sealed and created nuget package using Microsoft.Azure.WebJobs.ServiceBus.dll but when I use this nuget in my webjob project getting below…
Neo
  • 15,491
  • 59
  • 215
  • 405
-2
votes
1 answer

After deployment Web job, execution of blob trigger stopped working

I have deployed my web job on production environment and suddenly blob trigger stops working(Looking into App Insight I know that blob trigger is not called). If I debug the same code from the local machine then it triggers blob trigger.But stopped…
1 2 3
31
32