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
Copy file name to clipboardExpand all lines: docs/success-guide/setup_config_files.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -121,8 +121,8 @@ Limits on deletion prevent accidental account deletion in the event of misconfig
121
121
☐ If you expect the number of directory users to drop by more than 200 between User Sync runs, then you will need to raise the max\_missing\_users value. These config file entries are to prevent runaway deletion in case of misconfiguration or other problems.
122
122
123
123
limits:
124
-
max_deletions_per_run: 10 # ceiling on disable/remove/delete
125
-
max_missing_users: 200 # abort if this many directory users disappear
124
+
max_strays_to_process: 10 # ceiling on disable/remove/delete
125
+
max_strays_hard_limit: 200 # abort if this many directory users disappear
Copy file name to clipboardExpand all lines: examples/config files - basic/1 user-sync-config.yml
+8-3Lines changed: 8 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -87,9 +87,14 @@ directory:
87
87
# - enterpriseID
88
88
# - federatedID
89
89
90
-
limits:
91
-
max_deletions_per_run: 10# if --remove-nonexistent-users is specified, this is the most users that will be removed. Others will be left for a later run. A critical message will be logged.
92
-
max_missing_users: 200# if more than this number of user accounts are not found in the directory, user sync will abort with an error and a critical message will be logged.
90
+
limits: # provide processing controls over stray Adobe users (that is, that are unmatched on customer side)
91
+
# these controls only apply when strays are being processed for removal or deletion from the Adobe side;
92
+
# if strays are just being output to a file for later processing, these settings do not apply.
93
+
max_strays_hard_limit: 200# If more than this many stray users are found, no processing of them is done.
94
+
# Instead, user sync will abort at the point it would remove or delete them.
95
+
max_strays_to_process: 10# If more than this many stray users are found, only this many of them will be
96
+
# removed or deleted, and the the run will terminate normally. Later runs
97
+
# can be used to process the next batch of them.
93
98
94
99
logging:
95
100
# specifies whether you wish to generate a log file
Copy file name to clipboardExpand all lines: examples/config files - custom attributes and mappings/1 user-sync-config.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -122,8 +122,8 @@ extensions:
122
122
target_groups.add('Company 2 Users')
123
123
124
124
limits:
125
-
max_deletions_per_run: 10# if --remove-nonexistent-users is specified, this is the most users that will be removed. Others will be left for a later run. A critical message will be logged.
126
-
max_missing_users: 200# if more than this number of user accounts are not found in the directory, user sync will abort with an error and a critical message will be logged.
125
+
max_strays_to_process: 10# if --remove-nonexistent-users is specified, this is the most users that will be removed. Others will be left for a later run. A critical message will be logged.
126
+
max_strays_hard_limit: 200# if more than this number of user accounts are not found in the directory, user sync will abort with an error and a critical message will be logged.
127
127
128
128
logging:
129
129
# specifies whether you wish to generate a log file
0 commit comments