- Overview
- The ForgeRock Identity Connector Framework (ICF)
- Supported Connectors
- Adobe Marketing Cloud Connector
- AS400 connector
- Cerner Connector
- CSV File Connector
- Database Table Connector
- DocuSign Connector
- Google Cloud Platform Connector
- Google Apps Connector
- Groovy Connector Toolkit
- HubSpot Connector
- Kerberos Connector
- LDAP Connector
- Setting Up the Generic LDAP Connector
- Configuring the LDAP Connector to Use SSL and StartTLS
- Controlling What the LDAP Connector Synchronizes
- Using the Generic LDAP Connector With Active Directory
- Constructing the LDAP Search Filter
- OpenICF Interfaces Implemented by the LDAP Connector
- LDAP Connector Configuration
- Marketo Connector
- MongoDB Connector
- MS Graph API Java Connector
- PeopleSoft Connector
- PowerShell Connector Toolkit
- IBM RACF Connector
- Salesforce Connector
- SAP Connector
- Before You Start
- Using the SAP Connector With an SAP HR System
- Using the SAP Connector to Manage SAP Basis System (R/3) Users
- Configuring the SAP Connector For SNC
- Implementation Specifics
- OpenICF Interfaces Implemented by the SAP Connector
- SAP Connector Configuration
- SCIM Connector
- Scripted REST Connector
- Scripted SQL Connector
- ServiceNow Connector
- SSH Connector
- SAP SuccessFactors Connector
- Workday Connector
- Configure Connectors
- Sample Provisioner Files
- Creating Connector Configurations With the Admin UI
- Configure Connectors Over REST
- Setting the Connector Reference Properties
- Setting the Pool Configuration
- Setting the Operation Timeouts
- Setting the Connection Configuration
- Setting the Synchronization Failure Configuration
- Configuring How Results Are Handled
- Specifying What Attributes are Updated
- Specifying the Supported Object Types
- Configuring the Operation Options
- Remote Connectors
- Check External System Status Using REST
- Remove a Connector
- ICF Interfaces
- ICF Operation Options
- Connection Pooling Configuration
- IDM Glossary
Setting the Synchronization Failure Configuration
Important
Connectors continue to be released outside the IDM release. For the latest documentation, refer to the ICF documentation.
The syncFailureHandler
object specifies what should happen if a liveSync operation reports a failure for an operation. The following example shows a synchronization failure configuration:
{ "maxRetries" : 5, "postRetryAction" : "logged-ignore" }
maxRetries
positive integer or
-1
, requiredThe number of attempts that IDM should make to process a failed modification. A value of zero indicates that failed modifications should not be reattempted. In this case, the post retry action is executed immediately when a liveSync operation fails. A value of -1 (or omitting the
maxRetries
property, or the entiresyncFailureHandler
object) indicates that failed modifications should be retried an infinite number of times. In this case, no post retry action is executed.postRetryAction
string, required
The action that should be taken if the synchronization operation fails after the specified number of attempts. The post retry action can be one of the following:
logged-ignore
- IDM ignores the failed modification, and logs its occurrence.dead-letter-queue
- IDM saves the details of the failed modification in a table in the repository (accessible over REST atrepo/synchronisation/deadLetterQueue/provisioner-name
).script
specifies a custom script that should be executed when the maximum number of retries has been reached.
For more information, see "Configure the LiveSync Retry Policy".