Azure / azure-functions-durable-python

Python library for using the Durable Functions bindings.
MIT License
136 stars 55 forks source link

Azure Durable Function And Event Grid Integration #459

Open Nilabrata opened 1 year ago

Nilabrata commented 1 year ago

Investigative information

Repro steps

  1. Create an Azure Durable Function.
  2. Create an Azure Event Grid and integrate with azure durable function.
  3. Using JMeter hitting durable function app end point. JMeter Configuration Ramp Up Time - 0 s, Number of Threads (Users) – 100

Expected behavior

  1. 100 “Completed” event should be raised in event grid.
  2. 100 results should be stored in Azure Storage.
  3. The timing of result in azure storage should be lesser than the event raise time in event grid

Actual behavior

  1. But in reality, for 1-2 requests timing of storing result is grater than timing of raising event. Below sharing a example-
  2. Event Time: “2023-10-18T06:02:29.4099199Z”
  3. Azure Storage Completion Time: “2023-10-18T06:02:29.4785874Z”
Nilabrata commented 1 year ago

Hi @nytian, If anymore details needed for triage please let me know.

Nilabrata commented 10 months ago

Hi @bachuv, Any update?