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
Support index pattern exclusion in CCR AutoFollow (#5832) (#5834)
* Add leader index exclusion patterns
* Update create auto follow pattern request
* Update auto follow pattern response
Co-authored-by: Steve Gordon <sgordon@hotmail.co.uk>
Copy file name to clipboardExpand all lines: src/Nest/XPack/CrossClusterReplication/AutoFollow/CreateAutoFollowPattern/CreateAutoFollowPatternRequest.cs
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,8 @@ public partial class CreateAutoFollowPatternRequest
Copy file name to clipboardExpand all lines: src/Nest/XPack/CrossClusterReplication/AutoFollow/GetAutoFollowPattern/GetAutoFollowPatternResponse.cs
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -106,6 +106,13 @@ public interface IAutoFollowPattern
106
106
[DataMember(Name="leader_index_patterns")]
107
107
IEnumerable<string>LeaderIndexPatterns{get;set;}
108
108
109
+
/// <summary>
110
+
/// An array of simple index patterns that can be used to exclude indices from being auto-followed. Indices in the remote cluster whose names are matching one or
111
+
/// more `leader_index_patterns` and one or more `leader_index_exclusion_patterns` won't be followed.
0 commit comments