зеркало из
1
0
Форкнуть 0
service-fabric-client-dotnet/docs/cmdlets/Backup-SFPartition.md

85 строки
4.1 KiB
Markdown
Исходник Постоянная ссылка Обычный вид История

Merging mesh_vnext branch to develop (#43) * Adding ps module * Updating Build version to 4 to signigy that its tracking 6.4 release of Service Fabric. * Adding Network and Gateway resources * Adding apis for mesh and ps cmdlets * Updating method name for create or update resources. * Updating method name for create or update resources. * gateway network changes * Updating the PS cmdlet generation to add composite type properties as parameters. * Updating Create/*Update api, ps cmdlet for resources. * Using passed in api version for resource creation. * Adding support to read connection params from json created bgy local cluster. * support connecting to default local cluster without speciying connection parameters * Adding default value for PS parameters if available in swagger. * Generating RecoverPartition and RecoverService apis as Repair cmdlets * Adding YamlDotNet.Signed to PS module projects. * Orchestrator cmdlet added (#34) * Orchestrator cmdlet added * Addressing Code Review comments in the PR. * Updating Network apis. * Fixing Clientlib nuget generation to include the ps module (#35) * Updating merge lib to accept a parameter file * Updating client lib, ps with secrets volumes. * updatig versions * Updating version and adding test cmdlet * Updating exception handling in PS, allowing deserializion of ISO 8601 timespan and datetime until EventStore apis handle it. * Deploy Secret resource * Incrementing the ClientLib version * Adding support for new and update resource cmdlets to read form a json file. * Handling Secret values. * Updating merge util to handle secret value resources * Updating parsing of http response and fixing hierarchical resource creation. * Fixing build break due to stylecop error * Adding Gateway Network resources (#39) * Adding Network and Gateway resources. * updating Mergeutil * Update service_fabric_common.props Updating preview tag. * Updating for latest swagger changes 10-04 * Handling Network and Gateways in deploy. * Ading support for secrets param file * Updating the position of parameters for autogeneraetd cmdlets * RemovingDefaultParameterSEt from cmdlets by default * Removing default parametersetname and fixing properties getter setter to one line. * Updating client lib generated code to not serialize optional params in request body. * Generating parameter set names based on discriminator values * Hanlding null values returned by client lib in powershell. * Adding multiple params support in the new-sfmeshresourcedeployment cmldet. Adding param for the default param file * Updating the Libs. * updating the mergeutil dll * Incrementing the ClientLib Version for publish * Replacing ServiceFabricClientFactory with ServiceFabricClientBuilder * Fixing issues with CaoninuationToken, FAbricName, PartitionId and ReplicaId * Updating generated PS code * Updaing docs to include SF PS module usage * Updating version to start with 2.0.0-preview1 * Adding X-SerficeFabricClientType header for telemetry * Updating Module manifest * Updating manifest and documentation * Updating tags * Updaing psmodule generation to support both core and full framework
2018-12-05 20:47:03 +03:00
<EFBFBD><EFBFBD># Backup-SFPartition
Triggers backup of the partition's state.
## Description
Creates a backup of the stateful persisted partition's state. In case the partition is already being periodically
backed up, then by default the new backup is created at the same backup storage. One can also override the same by
specifying the backup storage details as part of the request body. Once the backup is initiated, its progress can be
tracked using the GetBackupProgress operation.
In case, the operation times out, specify a greater backup timeout value in the query parameter.
## Required Parameters
#### -PartitionId
The identity of the partition.
#### -ConnectionString
The connection string to connect to the Azure blob store.
#### -ContainerName
The name of the container in the blob store to store and enumerate backups from.
#### -Path
UNC path of the file share where to store or enumerate backups from.
## Optional Parameters
#### -FriendlyName
Friendly name for this backup storage.
#### -PrimaryUserName
Primary user name to access the file share.
#### -PrimaryPassword
Primary password to access the share location.
#### -SecondaryUserName
Secondary user name to access the file share.
#### -SecondaryPassword
Secondary password to access the share location
#### -BackupTimeout
Specifies the maximum amount of time, in minutes, to wait for the backup operation to complete. Post that, the
operation completes with timeout error. However, in certain corner cases it could be that though the operation returns
back timeout, the backup actually goes through. In case of timeout error, its recommended to invoke this operation
again with a greater timeout value. The default value for the same is 10 minutes.
#### -ServerTimeout
The server timeout for performing the operation in seconds. This timeout specifies the time duration that the client
is willing to wait for the requested operation to complete. The default value for this parameter is 60 seconds.