azure-functions-python-worker
azure-functions-python-worker copied to clipboard
Python worker for Azure Functions.
Azure [provides documentation for unit testing HTTP and Queue Python functions][1]. This is done by creating a mock [QueueMessage][2] or [HTTPRequest][3]. However, there is no documentation for creating a unit...
Following up on the conversations in #66, and #409. One possible way to implement generic handling of bindings is to allow users to annotate function parameters with a [dataclass](https://docs.python.org/3/library/dataclasses.html). The...
**Describe the request: A clear and concise description.** Cosmos DB binding should be able to tune "maxitemcount" parameter. As of now it is unclear how best page count is calculated....
### Investigative information ###### Please provide the following: - Timestamp: 8/2/2021 3:31 - Function App name: N/A - Function name(s) (as appropriate): N/A - Core Tools version: 3.0.3568 Commit hash:...
User functions have a single global log level. It would beneficial to enable an consistent mechanism to add filter [logging](https://docs.python.org/3/library/logging.html#filter-objects) prior to the logs hitting app-insights.
#### Is your question related to a specific version? If so, please specify: azure-functions 1.7.2 #### What binding does your question apply to, if any? (e.g. Blob Trigger, Event Hub...
### TL;DR Unpin or remove the following libraries from requirements.txt, and do a redeployment. ``` protobuf grpcio grpcio-tools ``` ### Background Recently, we upgraded the function host version to 3.0.15065...
Can the linux worker instances for consumption plan and its limits be documented? For eg: I heard adhoc that the worker instance limit is 50 and it might also be...
If there are a lot of functions (each function represents a policy) inside a function app, and if there are services/workers that are constantly updating individual functions (policies) inside the...
It seems not possible define the content-type for an out message. In my function.json I have an out serviceBus that works fine but I'm unable to define the content-type. {...