batching of data in logic apps standard workflows #744
svinjimoorrtiorg
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have tried batching of data using Built-In Batch Operations in Azure Logic Apps (Standard) https://techcommunity.microsoft.com/t5/integrations-on-azure-blog/using-built-in-batch-operations-in-azure-logic-apps-standard/ba-p/3650659.
Can anyone confirm if we make the release criteria as configurable (this will vary based on different workflows) provided from parent workflows. please advise me how can we achieve this ?
Configure BatchCount using parameter
I tried to create parameter value ("batchCount") but when i tried to test it i got below error. please how to configure this value in inline mode
"triggers": {
"Batch_messages": {
"type": "Batch",
"inputs": {
"mode": "Inline",
"configurations": {
"testbatch": {
"releaseCriteria": {
"messageCount": "@parameters('batchCount')",
"recurrence": {
"frequency": "Minute",
"interval": 10
}
}
}
}
}
}
}
Error Description:
[2023-03-10T05:15:16.334Z] Workflow Error: operationName='WorkflowDefinitionProvider.ProcessWorkflow', message='Workflow 'Chrysalis-BatchReceiver-Sf' validate and create workflow operation failed, the exception is 'The 'inputs' of workflow operation 'Batch_messages' of type 'Batch' are not valid. The 'configurations' property must be provided for 'inline' mode.'', exception='Microsoft.Azure.Workflows.Common.ErrorResponses.ErrorResponseMessageException: The 'inputs' of workflow operation 'Batch_messages' of type 'Batch' are not valid. The 'configurations' property must be provided for 'inline' mode
Beta Was this translation helpful? Give feedback.
All reactions