Skip to content

Commit 7d936e5

Browse files
authored
Update Set-SPTranslationThrottlingSetting.md
1 parent 7c93ab6 commit 7d936e5

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

sharepoint/sharepoint-ps/sharepoint-server/Set-SPTranslationThrottlingSetting.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ schema: 2.0.0
77
# Set-SPTranslationThrottlingSetting
88

99
## SYNOPSIS
10-
{{Fill in the Synopsis}}
10+
Sets the timer job duration.
1111

1212
## SYNTAX
1313

@@ -17,22 +17,26 @@ Set-SPTranslationThrottlingSetting [-AssignmentCollection <SPAssignmentCollectio
1717
```
1818

1919
## DESCRIPTION
20-
{{Fill in the Description}}
20+
Use the Set-SPTranslationThrottlingSetting cmdlet to set the timer job duration for each site collection.
2121

2222
## EXAMPLES
2323

2424
### -----------------EXAMPLE--------------------
2525
```
26-
PS C:\> {{ Add example code here }}
26+
Set-SPTranslationThrottlingSetting -SiteQuota 300 -TenantQuota 600
2727
```
2828

29-
{{ Add example description here }}
29+
This limits the Translation Timer job to spend no more than 300 seconds (5 minutes) per site collection, and no more than 600 seconds (10 minutes) per tenant.
30+
31+
Note: TenantQuota must be greater than or equal to SiteQuota.
3032

3133

3234
## PARAMETERS
3335

3436
### -AssignmentCollection
35-
{{Fill AssignmentCollection Description}}
37+
Manages objects for the purpose of proper disposal. Use of objects, such as SPWeb or SPSite, can use large amounts of memory and use of these objects in Windows PowerShell scripts requires proper memory management. Using the SPAssignment object, you can assign objects to a variable and dispose of the objects after they are needed to free up memory. When SPWeb, SPSite, or SPSiteAdministration objects are used, the objects are automatically disposed of if an assignment collection or the Global parameter is not used.
38+
39+
**NOTE:** When the Global parameter is used, all objects are contained in the global store. If objects are not immediately used, or disposed of by using the Stop-SPAssignment command, an out-of-memory scenario can occur. 
3640

3741
```yaml
3842
Type: SPAssignmentCollection
@@ -64,7 +68,8 @@ Accept wildcard characters: False
6468
```
6569
6670
### -SiteQuota
67-
{{Fill SiteQuota Description}}
71+
72+
The duration (in seconds) of timer job processing time that an individual SPSite is limited to
6873
6974
```yaml
7075
Type: Int32
@@ -80,7 +85,7 @@ Accept wildcard characters: False
8085
```
8186
8287
### -TenantQuota
83-
{{Fill TenantQuota Description}}
88+
The duration (in seconds) of timer job processing time that an individual tenant is limited to.
8489
8590
```yaml
8691
Type: Int32

0 commit comments

Comments
 (0)