When deploying Azure function using the maven plugin mvn azure-functions:deploy, a lot of the times I receive the below error. Usually it just works retrying a few times. [INFO] Trying to deploy artifact to CodeRuntimePrac3… [WARNING] [bbc8d6e1-1, L:/10.28.17.70:64315 – R:coderuntimeprac3.scm.azur…
Tag: azure-functions
Azure Fucntions 2.x and 3.x will no longer be supported? (Java)
The following article states that Azure Fucntions 2.x and 3.x will no longer be supported. https://demiliani.com/2022/06/14/do-you-have-azure-functions-in-production-update-your-azure-functions-apps-to-use-runtime-version-4-x/ We are using Java, not .NET Core 3.1. We would like to know if we need to update to…
Track outgoing REST call in Java Function App inside Application Insights
From what I understand Azure Application Insights is able to automatically track and log incoming HTTP requests to an application. However, my usecase is I need to track an outgoing HTTP request (that I make programmatically). I have a Java Function App (with an HTTP trigger) running in Azure with App Insight…
Can we debug deployed azure function from intellij?
I have developed a Java azure function and deployed it through IntelliJ(with Azure toolkit plugin support). I can do local run/debug on the function app from ide, as it nicely supports local run/debug. Now the question is, Is there any way to debug code(or jar) that is deployed on Azure function(not sure if t…
In Azure DevOps, how to gracefully restart when deploying an app to Functions
In Azure DevOps Pipeliens, when deploying an app to Functions, the app may restart during the process of the app. Is there a way to monitor if the Functions app is running in the pipeline, make sure it’s done, and then deploy the app? Conditions Functions runtime: Java Trigger: Service Bus Trigger I tri…
Azure spring boot function-how to pass trigger and input binding both to handleRequest method at same time?
getting below exception when I create tuple of Http trigger and blobinput and send it to handleRequest.. [2021-08-20T09:53:12.816Z] java.lang.UnsupportedOperationException: At the moment only Tuple-based function are supporting multiple arguments [2021-08-20T09:53:12.818Z] at I need to send both inputs to han…
How to bundle tesseract-ocr with a serverless Java application built for Azure Functions?
I am adding Apache Tika for extracting text out of documents and images (with TikaOcr) to an already existing service in the Azure Functions based on top of AppService. Now, Apache Tika requires tesseract to be installed in the machine locally. To overcome that, I used apt-get to set up (by ssh-ing) into the …
Is there a way to get the headers data of events (EventHub) using @EventHubTrigger of Azure Functions in Java?
I have an Azure Function implemented with azure-functions-java-library that receives events from one EventHub and I’m using @EventHubTrigger, the problem is that I need the header data from an event but I don’t see any way to get this, I have already read the docs and nothing. The reason I need th…
Unhandled: Not found mavenPOMFile – Azure DevOps pipeline for Java Function App
I would like to create pipeline which deploy Java Azure Function, but failing. Please advice me. I’m following tutorial as base, but I’m using Git Repo of Azure DevOps instead of GitHub. https://learn.microsoft.com/en-us/azure/devops/pipelines/ecosystems/java-function?view=azure-devops POM File is…
How to extract data from POST request in azure functions java
I send form data in POST request from angular app to my azure functions who wrriten in java. the client side look like this: when Item recived to azure functions. the aim of functions is to send this item in push notifications via firebase to android app. the azure functions with HTTP trigger look like this: …