Skip to content
Closed
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ Changes the tables's [mirroring policy](mirroring-policy.md). The mirroring poli
|--|--|--|
|`IsEnabled`| `bool`| A Boolean value that determines whether the mirroring policy is enabled. Default is `true`. When the mirroring policy is disabled and set to `false`, the underlying mirroring data is soft-deleted and retained in the database. |
|`TargetLatencyInMinutes`| `int`| The write operation delay in minites. By default, the write operation can take up to 3 hours or until there's 256 MB of data available. You can adjust the delay to a value between 5 minutes and 3 hours. |
|`backfill`| `bool`| If set to `true`, mirroring will start from `effectiveDateTime` if provided, or from the beginning of the table otherwise. Default is `false`.|
|`effectiveDateTime`| `datetime`| Relevant only when you're using backfill. If provided, mirroring will start from the specified point in time. backfill must also be set to true. |

[!INCLUDE [mirroring-note](../includes/mirroring-note.md)]

Expand All @@ -55,7 +57,7 @@ In the following example, a table called *myTable* is mirrored. The data is part
partition by (Name: string=Name, Date: datetime= startofday(timestamp))
dataformat=parquet
with
(IsEnabled=true)
(IsEnabled=true, backfill=true)
```

## Related content
Expand Down