Skip to content

Commit b38706e

Browse files
Update alter-merge-mirroring-policy-command.md
1 parent d3db704 commit b38706e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

data-explorer/kusto/management/alter-merge-mirroring-policy-command.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ Changes the tables's [mirroring policy](mirroring-policy.md). The mirroring poli
4141
|--|--|--|
4242
|`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. |
4343
|`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. |
44+
|`backfill`| `bool`| If set to `true`, mirroring will start from `effectiveDateTime` if provided, or from the beginning of the table otherwise. Default is `false`.|
45+
|`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. |
4446

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

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

6163
## Related content

0 commit comments

Comments
 (0)