You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default batchsize for eventhubs in Azure Functions is supposed to match the defaults that were changed in webjobs in this commit. However in practice these defaults are not honored. This results in the default batchsize being passed to event hub as 1000, and I think that then converts into 300 somehow (might be related to prefetch).
The configuration code needs to be fixed to allow the defaults specified by webjobs to take effect unless the user overrides them.
The text was updated successfully, but these errors were encountered:
It looks like when the event hubs extension was updated to the new model to parse host.json, the same code in the script layer was not removed, causing this issue. Added tests and also verified manually that this fix works.
It looks like when the event hubs extension was updated to the new model to parse host.json, the same code in the script layer was not removed, causing this issue. Added tests and also verified manually that this fix works.
The default batchsize for eventhubs in Azure Functions is supposed to match the defaults that were changed in webjobs in this commit. However in practice these defaults are not honored. This results in the default batchsize being passed to event hub as 1000, and I think that then converts into 300 somehow (might be related to prefetch).
The configuration code needs to be fixed to allow the defaults specified by webjobs to take effect unless the user overrides them.
The text was updated successfully, but these errors were encountered: