python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Azure Function Call from Data Factory
I've got an Azure function that hosts a Docker image with some Python scripts.
Currently there is a "function.json" file
{
"scriptFile": "calcs.py",
"bindings&qu...
Dan
Votes: 0
Answers: 1
Getting java.nio.channels.ClosedChannelException at sun.nio.ch.SocketChannelImpl.ensureOpenAndConnected in azure service bus
We are getting the below exception continuously in azure service bus client, kindly help us to resolve this.
{
"id":"1780511708",
"outerId":"0",
"...
Hameed basha
Votes: 0
Answers: 1
How to check status of queue trigger function programmatically in c#?
I have two azure functions, one is HttpTrigger, one is QueueTrigger. The purpose of the http trigger is to get some data from some service and put it in blob storage. The purpose of queue trigger is t...
user16358371
Votes: 0
Answers: 1
Azure Queue Trigger reaches MaxDequeueCount immediately
I have an azure queue trigger set up:
[FunctionName("TransformData")]
public async Task Transform(
[QueueTrigger("product-prices")] string message)
{
aw...
Lukas
Votes: 0
Answers: 1