Introducing the all-new TIBCO Community site!

For current users, please click "Sign In" to reset your password and access the enhanced features. If you're a first-time visitor, we extend a warm welcome—click "Sign Up" to become a part of the TIBCO Community!

If you're seeking alternative community sites, explore ibi, Jaspersoft, and Spotfire.

Jump to content
  • BW6.X - BWCE - How to implement a retry mechanism in BusinessWorks 6.X and BusinessWorks Container Edition


    This is quiet common in Integration projects to connect to remote applications or systems that are sometimes unreachable or slow for a few minutes, as for example an highly loaded REST API, a remote database or a file system mounted on a remote server.

    This blog article explain how to implement a periodic retry mechanism in BusinessWorks to make such errors as much as possible transparent to the BusinessWorks process logic.

    Note that the same pattern can also be used in BusinessWorks 5.X.

    Creation of properties to manage the retry mechanism

    To configure the retry mechanism it is recommended to create two properties:

    . One to manage the number of attempts

    . One to manage the delay between attempts

    It is generally recommended to have a few attempts, say between 3 and 5, and to a delay of a minute between attempts.

    1*bJAaG8puiDfhxD3LJh-g2g.png

    In the example above note that the best practice to include the related unit of measure in the property name is enforced for the ‘RetryDelay’ property.

    These properties then need to be added in all Processes implementing a retry mechanism:

    1*4fAMZZy16LrE5QNSN5WcHQ.png

    Use of a Repeat on Error group

    The activity connecting to the remote resource then needs to be included in a ‘Repeat on Error’ group, a Sleep activity added and the group configured.

    The general structure to use is the following:

    1*wG6mc86Rp3_I6FE0yKbaTA.png

    The Repeat on Error group is configured to exit when the number of attempts is reached:

    1*gZ9Hj34-fHvJIQZP-PsFTg.png

    A conditional transition and a ‘Success with no matching condition’ transition are added to differentiate the first attempt from the following ones:

    1*96r2lrxO8Fo748EI0Z7AFg.png

    Transition to manage the first attempt

    1*5bN9DtU1Ifmh6h_ytuJf1Q.png

    ‘Success with no matching condition’ transition to manage further attempts

    Then the Sleep activity is configured with the defined delay:

    1*hsURNsPbs8IIn7Exla-Cpg.png

    Further error management

    Once the specified number of attempts is reached the group ends with an error that is to be managed with an error transition or a ‘Catch’ activity according to your error management strategy.

    Additional elements

    You can refer to the attached sample project.

    RetryDemoApplication.zip


    User Feedback

    Recommended Comments

    There are no comments to display.



    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now

×
×
  • Create New...