Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit a70078a

Browse files
committed
update to unsupported list
2 parents c7d9ec9 + b51f670 commit a70078a

76 files changed

Lines changed: 757 additions & 374 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/analysis-services/server-properties/general-properties.md

Lines changed: 152 additions & 152 deletions
Large diffs are not rendered by default.

docs/analysis-services/tabular-models/calculation-groups.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Calculation groups in Analysis Services tabular models | Microsoft Docs"
3-
ms.date: 07/08/2019
3+
ms.date: 07/24/2019
44
ms.prod: sql
55
ms.technology: analysis-services
66
ms.custom: tabular-models

docs/big-data-cluster/big-data-cluster-consume-apps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Consume an application deployed on SQL Server 2019 big data cluster
55
author: jeroenterheerdt
66
ms.author: jterh
77
ms.reviewer: mikeray
8-
ms.date: 03/18/2019
8+
ms.date: 07/24/2019
99
ms.topic: conceptual
1010
ms.prod: sql
1111
ms.technology: big-data-cluster

docs/big-data-cluster/big-data-cluster-create-apps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Deploy a Python or R script as an application on SQL Server 2019 bi
55
author: jeroenterheerdt
66
ms.author: jterh
77
ms.reviewer: mikeray
8-
ms.date: 06/26/2019
8+
ms.date: 07/24/2019
99
ms.topic: conceptual
1010
ms.prod: sql
1111
ms.technology: big-data-cluster

docs/big-data-cluster/big-data-cluster-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn about SQL Server 2019 big data clusters (preview) that run on
55
author: MikeRayMSFT
66
ms.author: mikeray
77
ms.reviewer: mihaelab
8-
ms.date: 06/26/2019
8+
ms.date: 07/24/2019
99
ms.topic: overview
1010
ms.prod: sql
1111
ms.technology: big-data-cluster

docs/big-data-cluster/cluster-troubleshooting-commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: This article provides useful commands for monitoring and troublesho
55
author: mihaelablendea
66
ms.author: mihaelab
77
ms.reviewer: mikeray
8-
ms.date: 06/26/2019
8+
ms.date: 07/24/2019
99
ms.topic: conceptual
1010
ms.prod: sql
1111
ms.technology: big-data-cluster

docs/big-data-cluster/concept-application-deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: This article describes application deployment on a SQL Server 2019
55
author: jeroenterheerdt
66
ms.author: jterh
77
ms.reviewer: mikeray
8-
ms.date: 03/26/2019
8+
ms.date: 07/24/2019
99
ms.topic: conceptual
1010
ms.prod: sql
1111
ms.technology: big-data-cluster

docs/big-data-cluster/concept-controller.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: This article describes the controller of a SQL Server 2019 big data
55
author: mihaelablendea
66
ms.author: mihaelab
77
ms.reviewer: mikeray
8-
ms.date: 06/26/2019
8+
ms.date: 07/24/2019
99
ms.topic: conceptual
1010
ms.prod: sql
1111
ms.technology: big-data-cluster

docs/big-data-cluster/concept-data-persistence.md

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn about how data persistence works in a SQL Server 2019 big dat
55
author: mihaelablendea
66
ms.author: mihaelab
77
ms.reviewer: mikeray
8-
ms.date: 06/26/2019
8+
ms.date: 07/24/2019
99
ms.topic: conceptual
1010
ms.prod: sql
1111
ms.technology: big-data-cluster
@@ -80,39 +80,34 @@ azdata bdc config init --source aks-dev-test --target custom
8080

8181
This creates two files, **cluster.json** and **control.json** that can be customized by either editing them manually, or you can use **azdata bdc config** command. You can use a combination of jsonpath and jsonpatch libraries to provide ways to edit your config files.
8282

83-
### Configure size
83+
84+
### <a id="config-samples"></a> Configure storage class name and/or claims size
8485

8586
By default, the size of the persistent volume claims provisioned for each of the pods provisioned in the cluster is 10 GB. You can update this value to accommodate the workloads you are running in a custom configuration file before cluster deployment.
8687

87-
The following example only updates the size of persistent volume claims for data stored in the storage pool to 100Gi. Note that storage section must exist in the configuration file for the storage pool before you run this command:
88+
The following example updates the size of persistent volume claims size to 32Gi in the **control.jsaon**. If not overridden at pool level, this setting will be applied to all pools:
8889

8990
```bash
9091
azdata bdc config replace --config-file custom/control.json --json-values "$.spec.storage.data.size=100Gi"
9192
```
9293

93-
The following example updates the size of persistent volume claims for all pools to 32Gi:
94-
95-
```bash
96-
azdata bdc config replace --config-file custom/control.json --json-values "$.spec.controlPlane.spec.storage.data.size=32Gi"
97-
```
98-
99-
### <a id="config-samples"></a> Configure storage class
100-
101-
Following example shows how to modify the storage class for the control plane:
94+
Following example shows how to modify the storage class for the **control.json** file:
10295

10396
```bash
10497
azdata bdc config replace --config-file custom/control.json --json-values "$.spec.storage.data.className=<yourStorageClassName>"
10598
```
10699

107-
Another option is to manually edit the custom configuration file or to use jsonpatch like in the following example that changes the storage class for Storage pool. Create a *patch.json* file with this content:
100+
Another option is to manually edit the custom configuration file or to use json patch like in the following example that changes the storage class for Storage pool. Create a *patch.json* file with this content:
108101

109102
```json
110103
{
111104
"patch": [
112105
{
113-
"op": "add",
106+
"op": "replace",
114107
"path": "$.spec.pools[?(@.spec.type == 'Storage')].spec.storage"
115108
"value": {
109+
"type":"Storage",
110+
"replicas":2,
116111
"data": {
117112
"className": "default",
118113
"accessMode": "ReadWriteOnce",
@@ -132,7 +127,7 @@ Another option is to manually edit the custom configuration file or to use jsonp
132127
Apply the patch file. Use **azdata bdc config patch** command to apply the changes in the JSON patch file. The following example applies the patch.json file to a target deployment configuration file custom.json.
133128

134129
```bash
135-
azdata bdc config patch --config-file custom/control.json --patch-file ./patch.json
130+
azdata bdc config patch --config-file custom/cluster.json --patch-file ./patch.json
136131
```
137132

138133
## Next steps

docs/big-data-cluster/deploy-big-data-tools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to install tools used with SQL Server 2019 big data clust
55
author: MikeRayMSFT
66
ms.author: mikeray
77
ms.reviewer: mihaelab
8-
ms.date: 01/17/2019
8+
ms.date: 07/24/2019
99
ms.topic: conceptual
1010
ms.prod: sql
1111
ms.technology: big-data-cluster

0 commit comments

Comments
 (0)