Skip to content

Commit f4b6155

Browse files
committed
Acrolinx feedback
1 parent 89d9241 commit f4b6155

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

articles/storage-mover/job-definition-create.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Initial doc score: 100 (1532 words and 0 issues)
2525

2626
# How to define and start a migration job
2727

28-
When you migrate a share to Azure, you'll need to describe the source share, the Azure target, and any migration settings you want to apply. These attributes are defined in a job definition within your storage mover resource. This article describes how to create and run such a job definition.
28+
When you migrate a share to Azure, you need to describe the source share, the Azure target, and any migration settings you want to apply. These attributes are defined in a job definition within your storage mover resource. This article describes how to create and run such a job definition.
2929

3030
## Prerequisites
3131

@@ -37,8 +37,8 @@ There are three prerequisites to the definition the migration of your source sha
3737
Follow the steps in the *[Create a storage mover resource](storage-mover-create.md)* article to deploy a storage mover resource to the desired region within your Azure subscription.
3838
1. You need to deploy and register an Azure Storage Mover agent virtual machine (VM).
3939
Follow the steps in the [Azure Storage Mover agent VM deployment](agent-deploy.md) and [agent registration](agent-register.md) articles to deploy at least one agent.
40-
1. Finally, to define a migration, you'll need to create a job definition.
41-
Job definitions are organized in a migration project. You'll need at least one migration project in your storage mover resource. If you haven't already, follow the deployment steps in the [manage projects](project-manage.md) article to create a migration project.
40+
1. Finally, to define a migration, you need to create a job definition.
41+
Job definitions are organized in a migration project. You need at least one migration project in your storage mover resource. If you haven't already, follow the deployment steps in the [manage projects](project-manage.md) article to create a migration project.
4242

4343
## Create and start a job definition
4444

@@ -75,9 +75,9 @@ Refer to the [resource naming convention](../azure-resource-manager/management/r
7575
:::image type="content" source="media/job-definition-create/endpoint-source-new-sml.png" alt-text="Screen capture of the Source tab illustrating the location of the New Source Endpoint fields." lightbox="media/job-definition-create/endpoint-source-new-lrg.png":::
7676

7777
<a name="sub-path"></a>
78-
By default, migration jobs will start from the root of your share. However, if your use case involves copying data from a specific path within your source share, you can provide the path in the **Sub-path** field. Supplying this value will start the data migration from the location you've specified. If the sub path you've specified isn't found, no data will be copied.
78+
By default, migration jobs start from the root of your share. However, if your use case involves copying data from a specific path within your source share, you can provide the path in the **Sub-path** field. Supplying this value will start the data migration from the location you've specified. If the sub path you've specified isn't found, no data will be copied.
7979

80-
Prior to creating an endpoint and a job resource, it's important to verify that the path you've provided is correct and that the data is accessible. You're unable to modify endpoints or job resources after they're created. If the specified path is wrong, you'll need to delete the resources and re-create them.
80+
Prior to creating an endpoint and a job resource, it's important to verify that the path you've provided is correct and that the data is accessible. You're unable to modify endpoints or job resources after they're created. If the specified path is wrong, your only option is to delete the resources and re-create them.
8181

8282
Values for host, share name, and subpath are concatenated to form the full migration source path. The path is displayed in the **Full path** field within the **Verify full path** section. Copy the path provided and verify that you're able to access it before committing your changes.
8383

@@ -93,11 +93,11 @@ Refer to the [resource naming convention](../azure-resource-manager/management/r
9393

9494
:::image type="content" source="media/job-definition-create/endpoint-target-new-sml.png" alt-text="Screen capture of the Target tab illustrating the location of the New Target Endpoint fields." lightbox="media/job-definition-create/endpoint-target-new-lrg.png":::
9595

96-
A target subpath value can be used to specify a location within the target container where your migrated data will be copied. The subpath value is relative to the container's root. Omitting the subpath value will result in the data being copied to the root, while providing a unique value will generate a new subfolder.
96+
A target subpath value can be used to specify a location within the target container where your migrated data will be copied. The subpath value is relative to the container's root. Omitting the subpath value results in the data being copied to the root, while providing a unique value will generate a new subfolder.
9797

9898
After ensuring the accuracy of your settings, select **Next** to continue.
9999

100-
1. Within the **Settings** tab, take note of the settings associated with the **Copy mode** and **Migration outcomes**. The service's **copy mode** will affect the behavior of the migration engine when files or folders change between copy iterations.
100+
1. Within the **Settings** tab, take note of the settings associated with the **Copy mode** and **Migration outcomes**. The service's **copy mode** affects the behavior of the migration engine when files or folders change between copy iterations.
101101

102102
<a name="copy-modes"></a>
103103
**Merge source into target:**
@@ -110,9 +110,9 @@ Refer to the [resource naming convention](../azure-resource-manager/management/r
110110

111111
- Files in the target will be deleted if they don’t exist in the source.
112112
- Files and folders in the target will be updated to match the source.
113-
- File or folder renames between copies won't lead to duplicate content. A renamed item on the source side leads to the deletion of the item with the original name in the target and a new upload of the renamed item to the target. In case of folders this applies to all files and folders contained in it.
113+
- File or folder renames between copies won't lead to duplicate content. A renamed item on the source side leads to the deletion of the item with the original name in the target. Additionally, the renamed item is also uploaded to the target. If the renamed item is a folder, the described behavior of delete and reupload applies to all files and folders contained in it. Avoid renaming folders during a migration, especially near the root level of your source data.
114114

115-
**Migration outcomes** are based upon the specific storage types of the source and target endpoints. For example, because blob storage only supports "virtual" folders, source files in folders will have their paths prepended to their names and placed in a flat list within a blob container. Empty folders will be represented as an empty blob in the target. Source folder metadata will be persisted in the custom metadata field of a blob, as they are with files.
115+
**Migration outcomes** are based upon the specific storage types of the source and target endpoints. For example, because blob storage only supports "virtual" folders, source files in folders will have their paths prepended to their names and placed in a flat list within a blob container. Empty folders will be represented as an empty blob in the target. Source folder metadata is persisted in the custom metadata field of a blob, as they are with files.
116116

117117
After viewing the effects of the copy mode and migration outcomes, select **Next** to review the values from the previous tabs.
118118

@@ -122,7 +122,7 @@ Refer to the [resource naming convention](../azure-resource-manager/management/r
122122

123123
### [PowerShell](#tab/powershell)
124124

125-
You'll need to use several cmdlets to create a new job definition.
125+
You need to use several cmdlets to create a new job definition.
126126

127127
Use the `New-AzStorageMoverJobDefinition` cmdlet to create new job definition resource in a project. The following example assumes that you aren't reusing *storage endpoints* you've previously created.
128128

@@ -200,6 +200,6 @@ New-AzStorageMoverJobDefinition `
200200

201201
## Next steps
202202

203-
Now that you've created a job definition with source and target endpoints, learn how to estimate the time required to perform your migration job. Learn about Azure Storage Mover performance targets by visiting the article suggested below.
203+
Now that you've created a job definition with source and target endpoints, learn how to estimate the time required to perform your migration job.
204204
> [!div class="nextstepaction"]
205205
> [Azure Storage Mover scale and performance targets](performance-targets.md)

0 commit comments

Comments
 (0)