Skip to content

Commit 2eb5fa7

Browse files
Learn Build Service GitHub AppLearn Build Service GitHub App
authored andcommitted
Merging changes synced from https://github.com/MicrosoftDocs/dataexplorer-docs-pr (branch live)
2 parents 438a2db + 7836440 commit 2eb5fa7

File tree

5 files changed

+16
-15
lines changed

5 files changed

+16
-15
lines changed

data-explorer/ingest-data-cosmos-db-queries.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Get latest versions of Azure Cosmos DB documents - Azure Data Explorer
33
description: Learn about how to get latest versions of Azure Cosmos DB documents in Azure Data Explorer.
44
ms.reviewer: vplauzon
55
ms.topic: how-to
6-
ms.date: 06/13/2023
6+
ms.date: 01/07/2025
77
---
88

99
# Get latest versions of Azure Cosmos DB documents
@@ -33,7 +33,7 @@ TestTable
3333
| summarize arg_max(_timestamp, *) by Id
3434
```
3535

36-
If you used soft markers to mark deleted documents, you can filter them out with the following query:
36+
If you use [soft markers to indicate deleted documents](/azure/cosmos-db/nosql/change-feed-design-patterns?tabs=latest-version#deletes), you can filter out these documents with a query. For example, if you use a Boolean property called `IsDeleted` that indicates deleted documents, you can use the following query to filter out the soft deleted documents:
3737

3838
```kusto
3939
TestTable

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

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: .alter-merge table policy mirroring command
33
description: Learn how to use the `.alter-merge table policy mirroring` command to create a logical copy of tables of your database.
44
ms.reviewer: sharmaanshul
55
ms.topic: reference
6-
ms.date: 09/23/2024
6+
ms.date: 01/12/2025
77
monikerRange: "microsoft-fabric"
88
---
99

@@ -16,9 +16,9 @@ Changes the tables's [mirroring policy](mirroring-policy.md). The mirroring poli
1616
## Syntax
1717

1818
(`.alter` | `.alter-merge`) `table` *TableName* `policy mirroring`
19-
[`partition` `by` (*Partitions*)]
20-
`dataformat` = `parquet`
21-
[`with` (`IsEnabled`=`IsEnabledValue`)]
19+
[`partition` `by` (*Partitions*)]
20+
`dataformat` = `parquet`
21+
[`with` `(` *propertyName* `=` *propertyValue* [`,` ...]`)`]
2222

2323
[!INCLUDE [syntax-conventions-note](../includes/syntax-conventions-note.md)]
2424

@@ -28,17 +28,19 @@ Changes the tables's [mirroring policy](mirroring-policy.md). The mirroring poli
2828
|--|--|--|--|
2929
|*TableName*| string| :heavy_check_mark:|A table name that adheres to the [Entity names](../query/schema-entities/entity-names.md) rules.|
3030
|*Partitions*| string| | A comma-separated list of columns used to divide the data into smaller partitions. See [Partitions formatting](#partitions-formatting). |
31+
| *propertyName*, *propertyValue* | `string` | | A comma-separated list of key-value property pairs. See [supported properties](#supported-properties).|
3132

3233
[!INCLUDE [partitions-formatting](../includes/partitions-formatting.md)]
3334

3435
> [!NOTE]
3536
> Each partition is represented as a separate column using the *PartitionName* listed in the *Partitions* list. *PartitionName* must be a case insensitive unique string, both among other partition names and the column names of the mirrored table.
3637
37-
## Properties
38+
## Supported properties
3839

3940
|Name|Type|Description|
4041
|--|--|--|
4142
|`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. |
43+
|`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. |
4244

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

@@ -60,4 +62,3 @@ In the following example, a table called *myTable* is mirrored. The data is part
6062

6163
* To check mirroring operations, see [.show table mirroring operations command](show-table-mirroring-operations-command.md).
6264
* To delete mirroring operations, see [.delete table policy mirroring command](delete-table-mirroring-policy-command.md).
63-

data-explorer/kusto/query/scalar-data-types/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ title: Scalar data types
33
description: This article describes Scalar data types.
44
ms.reviewer: alexans
55
ms.topic: reference
6-
ms.date: 08/11/2024
6+
ms.date: 01/07/2025
77
---
88
# Scalar data types
99

1010
> [!INCLUDE [applies](../../includes/applies-to-version/applies.md)] [!INCLUDE [fabric](../../includes/applies-to-version/fabric.md)] [!INCLUDE [azure-data-explorer](../../includes/applies-to-version/azure-data-explorer.md)] [!INCLUDE [monitor](../../includes/applies-to-version/monitor.md)] [!INCLUDE [sentinel](../../includes/applies-to-version/sentinel.md)]
1111
12-
Every data value, like the value of an expression or a function parameter, has a *data type*. A data type is either a *scalar data type*, which is one of the built-in predefined types listed below, or a *user-defined record*, which is an ordered sequence of name and scalar-data-type pairs, like the data type of a row in a table.
12+
Every data value, like the value of an expression or a function parameter, has a *data type* which is either a *scalar data type* or a *user-defined record*. A *scalar data type* is one of the built-in predefined types in [Supported data types](#supported-data-types). A *user-defined record* is an ordered sequence of name and scalar-data-type pairs, like the data type of a row in a table.
1313

1414
> [!NOTE]
15-
> User-defined data types are not supported in Kusto.
15+
> While user-defined records are supported in Kusto, user-defined data types aren't.
1616
1717
## Supported data types
1818

@@ -32,7 +32,7 @@ The following data types are supported:
3232
| [timespan](timespan.md) (`time`) | A time interval. |
3333

3434
> [!TIP]
35-
> To check the data type of a value, use the the [gettype()](../gettype-function.md) function.
35+
> To check the data type of a value, use the [gettype()](../gettype-function.md) function.
3636
3737
## Null values
3838

data-explorer/start-for-free.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The following table describes specifications and quotas for a free cluster.
2222

2323
| Item | Value |
2424
|--|--|
25-
| Storage (uncompressed) | ~100 GB |
25+
| Storage (uncompressed) | ~100 GB (20 GB compressed) |
2626
| Databases | Up to 10 |
2727
| Tables per database | Up to 100 |
2828
| Columns per table | Up to 200 |

data-explorer/toc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -507,6 +507,8 @@ items:
507507
- name: Monitor Azure Data Explorer
508508
displayName: health, performance
509509
href: monitor-data-explorer.md
510+
- name: Monitoring data reference
511+
href: monitor-data-explorer-reference.md
510512
- name: Use resource health to monitor cluster health
511513
href: monitor-with-resource-health.md
512514
- name: Use Azure Data Explorer Clusters Insights
@@ -656,8 +658,6 @@ items:
656658
href: policy-reference.md
657659
- name: Bicep and ARM template resource types
658660
href: /azure/templates/microsoft.kusto/allversions
659-
- name: Monitoring data reference
660-
href: monitor-data-explorer-reference.md
661661
- name: PowerShell Az.Kusto
662662
items:
663663
- name: Use Kusto cmdlets in Azure PowerShell

0 commit comments

Comments
 (0)