This option is available to change when performing a content synchronization at the web site level. It allows users to choose whether they would like their content synchronization job to be a full structure synchronization (which will synchronize the full structure and content from this location to the specified limit scope), or a content different synchronization (which will synchronize only the differences in list and library content between this location and the specified target).
If content difference synchronization is selected, the synchronization settings change to allow users to specify if they would like to include list item deletes for items only on the destination, and whether they would like to overwrite newer items on the destination, ignoring conflicts.
If full structure Synchronization is selected, then users have the option to select which Replicator Events they would like synchronized.
This section allows you to select the type of content that will be replicated in this synchronization job.
Select Include child maps to see all, and select which, Event Groups for this map and any maps under its scope.
Selecting Include child maps will also Queue Replication for this map family, and all of its child maps. For example, if you are queuing the web application map at http://corporateoffice, then selecting this option also queues events for the http://corporateoffice site collection and web site maps, as well as maps for other site collections and web sites under the web application.
Replication Events
The Replication Events section will define which SharePoint events are queued for immediate replication. If All Events are selected, all events under the selected category are queued for every Replication Map.
Click Advanced to open the Advanced selection options, which allow highly detailed, very specific customization of the replication process.
Clicking Advanced displays specific options for replication. Any item selected from the options list will be replicated on the Target Web Application. Items which are not selected will not be replicated.
Select All selects all of the items for replication, and Clear All clears all of the items, allowing users to define a more limited selection.
Shift-click allows you to select a range of contiguous options. Ctrl-click allows you to select non-contiguous options.
NOTE: Queuing the "Add" events will queue all available entities for that event from the source. If the entity exists on the target, it will be updated. If it does not, it will be added. |
PowerShell Queuing Examples
The following scenarios demonstrate the differences between Queue Map commands in versions of Replicator earlier than 7.4.1706 and in version 7.4.1706 to 7.4.1905 (where Repadmin was deprecated, and PowerShell commands were enhanced).
NOTE: For version 7.4.1905 and later, the PowerShell command Queue-ReplicatorMap has been changed to Schedule-ReplicatorMap |
PowerShell Queuing Scenarios |
---|
Scenario: Queue Web Application and all children in the hierarchy Powershell in V7.4.1905 and later: PS>Schedule-ReplicatorMap -URL "http://localwebapplication" -Type WebApplication -IncludeChildTypes SiteCollection,WebSite,List,Folder -JobName "Test"
PowerShell in v7.4.1706 to v7.4.1904: PS>Queue-ReplicatorMap -URL "http://localwebapplication" -Type WebApplication -IncludeChildTypes SiteCollection,WebSite,List,Folder -JobName "Test"
PowerShell and Repadmin in v7.3.1705 and earlier: PS> Queue-ReplicatorMap -URL "http://localwebapplication" -Type WebApplication -IncludeChildren Repadm -o Queuemap -URL "http://localwebapplication" -Type WebApplication -IncludeChildren True |
Scenario: Queue Site Collection and all children in the hierarchy Powershell in V7.4.1905 and later: PS>Schedule-ReplicatorMap -URL "http://localwebapplication" -Type SiteCollection -IncludeChildTypes Website,List,Folder -JobName "Test"
PowerShell in v7.4.1706 to v7.4.1904: PS>Queue-ReplicatorMap -URL "http://localwebapplication" -Type SiteCollection -IncludeChildTypes Website,List,Folder -JobName "Test"
PowerShell and Repadmin in v7.3.1705 and earlier: PS> Queue-ReplicatorMap -URL "http://localwebapplication" -Type SiteCollection -IncludeChildren Repadm -o QueueMap -URL "http://localwebapplication" -Type SiteCollection -IncludeChildren True |
Scenario: Queue Web Site group events without children in the hierarchy Powershell in V7.4.1905 and later: PS>Schedule-ReplicatorMap -URL "http://localwebapplication" -Type Website -JobName "Test"
PowerShell in v7.4.1706 to v7.4.1904: PS>Queue-ReplicatorMap -URL "http://localwebapplication" -Type Website -JobName "Test"
PowerShell and Repadmin in v7.3.1705 and earlier: PS>Queue-ReplicatorMap -URL "http://localwebapplication" -Type Website -OnlySiteStructure -ExcludeEvents 100 Repadm -o QueueMap -URL "http://localwebapplication" -Type Website -OnlySiteStructure -ExcludeEvents 100 |
Scenario: Queue Web Site with all subsite content
Powershell in V7.4.1905 and later: PS>Schedule-ReplicatorMap -URL "http://localwebapplication" -IncludeChildTypes All -JobName "Test"
PowerShell in v7.4.1706 to v7.4.1904: PS>Queue-ReplicatorMap -URL "http://localwebapplication" -IncludeChildTypes All -JobName "Test"
PowerShell and Repadmin in v7.3.1705 and earlier: PS>Queue-ReplicatorMap -URL "http://localwebapplication" -Type Website -IncludeChildren Repadm -o queuemap -URL "http://localwebapplication" -Type Website -IncludeChildren True |
Scenario: Queue only site content without subsites
Powershell in V7.4.1905 and later: PS>Scehdule-ReplicatorMap -URL "http://localwebapplication" -IncludeChildTypes list,folder -JobName "Test"
PowerShell in v7.4.1706 to v7.4.1904: PS>Queue-ReplicatorMap -URL "http://localwebapplication" -IncludeChildTypes list,folder -JobName "Test"
PowerShell and Repadmin in v7.3.1705 and earlier: PS>Queue-ReplicatorMap -URL "http://localwebapplication" -Type Website Repadm -o queuemap -URL "http://localwebapplication" -Type Website |
Scenario: Queue Single List group events without children in the hierarchy
Powershell in V7.4.1905 and later:
PowerShell in v7.4.1706 to v7.4.1904: PS>Queue-ReplicatorMap -URL "http://localwebapplication/Documents" -Type List -JobName "Test"
PowerShell and Repadmin in v7.3.1705 and earlier: PS>Queue-ReplicatorMap -URL "http://localwebapplication" -Type Website -ListTitle "List title" -ExcludeEvents "0;5" Repadm -o QueueMap -URL "http://localwebapplication" --Type Website - ListTitle "List title" -ExcludeEvents "0;5" |
Scenario: Queue List map and all children in the hierarchy
Powershell in V7.4.1905 and later: PS>Schedule-ReplicatorMap -URL "http://localwebapplication/Documents" -Type List -IncludeChildTypes Folder -JobName "Test"
PowerShell inv7.4.1706 to v7.4.1904: PS>Queue-ReplicatorMap -URL "http://localwebapplication/Documents" -Type List -IncludeChildTypes Folder -JobName "Test"
PowerShell and Repadmin in v7.3.1705 and earlier: PS>Queue-ReplicatorMap -URL "http://localwebapplication" -Type Website -ListTitle Documents Repadm -o QueueMap - URL "http://localwebapplication" -Type Website -ListTitle Documents |
Scenario: Queue Folder map and all children in the hierarchy
Powershell in V7.4.1905 and later: PS>Schedule-ReplicatorMap -URL "http://localwebapplication/Documents" -Type Folder -IncludeChildTypes Folder -JobName "Test"
PowerShell in v7.4.1706 to v7.4.1904: PS>Queue-ReplicatorMap -URL "http://localwebapplication/Documents" -Type Folder -IncludeChildTypes Folder -JobName "Test"
PowerShell and Repadmin in v7.3.1705 and earlier: PS>Queue-ReplicatorMap -URL "http://localwebapplication" -Type Website -ListTitle Documents -OnlyListItems Repadm -o QueueMap -URL "http://localwebapplication" -Type Website -ListTitle Documents -OnlyListItems |
Scenario: Queue Folder map and all children in the hierarchy exclude ListItemAdd event
Powershell in V7.4.1905 and later: PS>Schedule-ReplicatorMap -URL "http://localwebapplication/Lists/Custom list" -Type Folder -IncludeChildTypes Folder -ExcludeEvents 0 -JobName "Test"
PowerShell in v7.4.1706 to v7.4.1904: PS>Queue-ReplicatorMap -URL "http://localwebapplication/Lists/Custom list" -Type Folder -IncludeChildTypes Folder -ExcludeEvents 0 -JobName "Test"
PowerShell and Repadmin in v7.3.1705 and earlier: PS>Queue-ReplicatorMap -URL "http://localwebapplication" -Type Website -ListTitle "Custom List" -IncludeEvents 5 Repadm -o QueueMap - URL "http://localwebapplication" -Type Website -ListTitle "Custom List" -IncludeEvents 5 |
Scenario: Queue Folder map and all children in the hierarchy exclude FolderAdd event
Powershell in V7.4.1905 and later: PS>Schedule-ReplicatorMap -URL "http://localwebapplication/Lists/Custom list" -Type Folder -IncludeChildTypes Folder -ExcludeEvents 5 -JobName "Test"
PowerShell in v7.4.1706 to v7.4.1904: PS>Queue-ReplicatorMap -URL "http://localwebapplication/Lists/Custom list" -Type Folder -IncludeChildTypes Folder -ExcludeEvents 5 -JobName "Test"
PowerShell and Repadmin in v7.3.1705 and earlier: PS>Queue-ReplicatorMap -URL "http://localwebapplication" -Type Website -ListTitle "Custom List" -IncludeEvents 0 Repadm -o queuemap -URL "http://localwebapplication" -Type Website -ListTitle "Custom List" -IncludeEvents 0 |
Scenario: Queue Folder map group events without children in the hierarchy
Powershell in V7.4.1905 and later: PS>Schedule-ReplicatorMap -URL "http://localwebapplication/Documents/Folder"" -Type Folder -JobName "Test"
PowerShell in v7.4.1706 to v7.4.1904: PS>Queue-ReplicatorMap -URL "http://localwebapplication/Documents/Folder"" -Type Folder -JobName "Test"
PowerShell and Repadmin in v7.3.1705 and earlier: PS>Queue-ReplicatorMap -URL "http://localwebapplication" -Type Website -ListTitle Documents -ListFolder Folder -OnlySpecifiedFolder Repadm -o queuemap --URL "http://localwebapplication" -Type Website -ListTitle Documents -ListFolder Folder -OnlySpecifiedFolder |
© ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center