azure-functions-python-worker
azure-functions-python-worker copied to clipboard
Python worker for Azure Functions.
So I am using the Blob Trigger Functions. When the function is triggered, it reads the blob in question for further processing. Typically the files that are uploaded are 300...
### Investigative information ###### Please provide the following: - Timestamp: 2021-10-22 10:13:00 UTC - Function App name: http://robin-starlette-test.azurewebsites.net/ - Function name(s) (as appropriate): HttpTrigger1 - Core Tools version: 3.0.3785 ###...
### Investigative information ###### Please provide the following: - Timestamp: 2021-11-10T10:58:00 - Function App name: (debugging locally) - Function name(s) (as appropriate):(debugging locally) - Core Tools version: 3.0.3785 Commit hash:...
The protobuf has been updated to include a `WorkerMetadata` property within the `WorkerInitResponse` message. The worker should include `WorkerMetadata` when sending the `WorkerInitResponse` to the host. [PR](https://github.com/Azure/azure-functions-language-worker-protobuf/pull/76) for reference on...
## Description Ref: https://github.com/Azure/azure-functions-python-worker/issues/1038 Fixes # --- ### PR information - [ ] The title of the PR is clear and informative. - [ ] There are a small number...
Without AzureWebJobsStrage, with Extension Bundle and http trigger (not using durable functions) we see the following issue. ``` [2022-03-16T20:13:19.752Z] A host error has occurred during startup operation '60334426-b31c-4f9f-bad4-0f6af839cb9b'. [2022-03-16T20:13:19.757Z] Microsoft.Azure.WebJobs.Extensions.DurableTask:...
I am using vscode to deploy my python function to azure, however the deploy failed with installing libs in requirements.txt Here's my requirements.txt pandas==1.1.3 numpy==1.19.2 pystan==2.19.1.1 fbprophet==0.7.1 errors as below:...
The worker supports Python 3.9, however does not work with type hinting using standard collections as specified in [PEP 585](https://peps.python.org/pep-0585/) and [introduced in Python 3.9](https://docs.python.org/3/whatsnew/3.9.html#type-hinting-generics-in-standard-collections). Pre-PEP 585 style typing, which...
### Investigative information ###### Please provide the following: Investigate Python language worker tests failures in Functions V4 for 6/5/22 Here is the link to the pipeline executions with the test...
This change moves the logging call inside the function invocation callback into a thread pool executor (With a max size of 1). Effectively allows the logging call to happen concurrently...