Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update connector-lakehouse-copy-activity.md #1301

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/data-factory/connector-lakehouse-copy-activity.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ The following properties are **required**:
- **Append**: Append new values to existing table.
- **Enable Partition**: This selection allows you to create partitions in a folder structure based on one or multiple columns. Each distinct column value (pair) is a new partition. For example, "year=2000/month=01/file".
- **Partition column name**: Select from the destination columns in schemas mapping when you append data to a new table. When you append data to an existing table that already has partitions, the partition columns are derived from the existing table automatically. Supported data types are string, integer, boolean, and datetime. Format respects type conversion settings under the **Mapping** tab.
- **Overwrite**: Overwrite the existing data and schema in the table using the new values. If this operation is selected, you can enable partition on your target table:
- **Overwrite**: Upon selecting the Table action as Overwrite from UI, it's basically a "OverwriteSchema" which overwrites the existing data and schema in the table using the new values supporting the Delta Lake time travel feature. In order to rollback to legacy feature "Overwrite", will need to use dynamic expression like @if(equals(pipeline().parameters.refresh_type,'full'),'Overwrite','Append'), which basically creates a new table and also creates backup table for every run of the pipeline with no support to time travel feature. If Table action as Overwrite is selected from UI, you can enable partition on your target table:
- **Enable Partition**: This selection allows you to create partitions in a folder structure based on one or multiple columns. Each distinct column value (pair) is a new partition. For example, "year=2000/month=01/file".
- **Partition column name**: Select from the destination columns in schemas mapping. Supported data types are string, integer, boolean, and datetime. Format respects type conversion settings under the **Mapping** tab.

Expand Down