Retry When Create file connector in logic app fails first time

Amit Patel 1 Reputation point
2024-09-24T08:22:07.0733333+00:00

When we are trying to send file using ftp create file action its failing due to number of connection and we want to retry before we log error but there is no inbuild retry mechanism in this. how can we achieve this.

Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
3,113 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. LeelaRajeshSayana-MSFT 15,071 Reputation points Microsoft Employee
    2024-09-25T23:12:22.52+00:00

    Hi @Amit Patel Greetings! Thank you for posting the question here.

    If your connector or trigger does not have an inbuilt retry mechanism such as you see for an HTTP action below, there is no simpler way to implement the retry mechanism

    Screenshot showing Consumption workflow with an HTTP action's run history, retries, inputs, and outputs.

    You can consider creating an alternate branch in the workflow by configuring the run after setting of an action to trigger if the action has failed and process the event later by sending the file to an Azure storage end point.

    The recommended approach to overcome the issue you are facing of throttling errors at the connector is to use unique connections for different actions. You can use the same connection settings and create different connections which will act as a different set of Connector and offer more bandwidth to process the events. If you are facing this error from a for each loop, consider changing the concurrency or parallelism on a "For each" loop.

    Please refer the article section Connector throttling for more guidance on this.

    Let us know if you need any additional assistance or clarification.


    If the response helped, please do click Accept Answer and Yes for the answer provided. Doing so would help other community members with similar issue identify the solution. I highly appreciate your contribution to the community.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.