New-MemoryDump
This PowerShell cmdlet allows users to generate a memory dump of a cache or the NCache Service / NCache Management Center process for diagnostic and troubleshooting purposes. When creating a dump for the NCache Service or Management Center, the corresponding Process ID must be specified to identify the target process.
New-MemoryDump executes asynchronously by default and returns immediately without waiting for dump completion; however, users can specify -WaitForCompletion to block execution until the dump is fully generated. Upon execution, the cmdlet outputs the location on the target server where the memory dump file is saved.
New-MemoryDump -Server -CacheName -ProcessId [-WaitForCompletion] [-Port] [-Credentials] [-NoLogo]
Important
You must specify either CacheName or ProcessId. One of the two is required to generate the memory dump.
Examples
- This command initiates dump generation on server 20.200.20.11 for the cache named demoCache.
New-MemoryDump -Server 20.200.20.11 -CacheName demoCache
- This command initiates dump generation on server 20.200.20.11 for Process ID 1234.
New-MemoryDump -Server 20.200.20.11 -ProcessId 1234
- This command initiates dump generation on server 20.200.20.11 for Process ID 1234 and waits for the dump generation to complete.
New-MemoryDump -Server 20.200.20.11 -ProcessId 1234 -WaitForCompletion
- This command initiates dump generation on server 20.200.20.11 for the cache named demoCache using security credentials.
New-MemoryDump -Server 20.200.20.11 -CacheName demoCache -Credentials (Get-Credential john_smith)
Properties
Note
The parameters with asterisk (*) on their names are the required parameters and the rest are optional.
| Parameters | Data Types | Description | Default Value |
|---|---|---|---|
-Server* |
<String> |
Specifies a server name where the NCache Service is running and a cache with the specified cache-name is registered. | - |
-CacheName* |
<String> |
Specifies cache name for which the dump needs to be created on the server specified. Note: The cache must already exist on the source server. |
- |
-ProcessId* |
<Integer> |
Specifies the Process ID for which dump needs to be created on the server specified. | - |
-WaitForCompletion |
<SwitchParameter> |
If specified, the cmdlet does not exit until the memory dump is captured. | False |
-NoLogo |
<SwitchParameter> |
Suppresses display of the logo banner. | False |
-Port |
<Integer> |
Specifies the server port where the NCache Service is listening. | 8250 |
-Credentials |
<pscredential> |
Specifies the user credentials required to authorize access for the specified operation. These credentials should belong to a user with the appropriate permissions at the node. | - |