azure-functions-java-worker
azure-functions-java-worker copied to clipboard
Java runtime and core types for Microsoft Azure Functions
This is a low priority bug fix. The pipeline runs on Linux and Windows OS. In the windows OS, checking Java version using `java -version` shows Java 8 even after...
When eventhub send binary message, java function app is getting garbled string message example: ```java @FunctionName("eventhuexampleCx") public void eventHubProcessorCx( @EventHubTrigger(name = "pnrTrigger", eventHubName = "cri-319862312", consumerGroup = "test", connection =...
Allow a FunctionWorkerMiddleware to override target function instance so that middleware can provide a hook for dependency injection framework integrations like Spring and Quarkus and CDI.
I'd like to be able to use Java Records as the object for deserialization. This is a feature that gson introduced in v2.10 while we are currently using 2.9. Would...
The Java language worker pipeline has been failing since 1/31/24. Could you please investigate and resolve this issue? For more information, please see [Azure.azure-functions-java-worker](https://azfunc.visualstudio.com/Azure%20Functions/_build?definitionId=20). We need this fix for integration...
#### Description of the issue We're trying to migrate our infrastructure to Kubernetes. That also includes migration of function app. We've manage to do it succesfully, we have a working...
Currently, customers have no way of handling HTTP requests with content type set to application/x-protobuf. So far, I have only seen one customer asking for this. We might want to...
When will Azure Functions support Java 21? JDK17 support was confirmed in https://github.com/Azure/azure-functions-java-worker/issues/548
When using the [app insights java agent](https://learn.microsoft.com/en-us/azure/azure-monitor/app/monitor-functions), the only known way to configure log levels is by using sampling overrides as described in [these docs](https://learn.microsoft.com/en-us/azure/azure-monitor/app/java-standalone-sampling-overrides). However, it's not possible to...
Hi Is gracefull shutdown supported for Java functions? For C# application, there is a cancallation token to shutdown applicaiton gracefully (https://learn.microsoft.com/en-us/azure/azure-functions/functions-dotnet-class-library?tabs=v4%2Ccmd#cancellation-tokens). Thank you!