You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-monitor/essentials/prometheus-grafana.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Use Azure Monitor managed service for Prometheus as data source for Grafa
3
3
description: Details on how to configure Azure Monitor managed service for Prometheus as data source for both Azure Managed Grafana and self-hosted Grafana in an Azure virtual machine.
4
4
author: bwren
5
5
ms.topic: conceptual
6
-
ms.date: 09/28/2022
6
+
ms.date: 01/08/2024
7
7
---
8
8
9
9
# Use Azure Monitor managed service for Prometheus as data source for Grafana using managed system identity
Copy file name to clipboardExpand all lines: articles/backup/backup-azure-database-postgresql-support-matrix.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,9 +15,7 @@ You can use [Azure Backup](./backup-overview.md) to protect Azure Database for P
15
15
16
16
## Supported regions
17
17
18
-
Azure Database for PostgreSQL server backup is available in the following regions:
19
-
20
-
East US, East US 2, Central US, South Central US, West US, West US 2, West Central US, Brazil South, Canada Central, North Europe, West Europe, UK South, UK West, Germany West Central, Switzerland North, Switzerland West, East Asia, Southeast Asia, Japan East, Japan West, Korea Central, Korea South, India Central, Australia East, Australia Central, Australia Central 2, UAE North
18
+
Azure Database for PostgreSQL server backup is available in all regions, except for Germany Central (Sovereign), Germany Northeast (Sovereign) and China regions.
Copy file name to clipboardExpand all lines: articles/cosmos-db/concepts-limits.md
+36-8Lines changed: 36 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,31 +50,59 @@ The actual minimum RU/s may vary depending on your account configuration. You ca
50
50
51
51
#### Minimum throughput on container
52
52
53
-
To estimate the minimum throughput required of a container with manual throughput, find the maximum of:
53
+
**Manual throughput**
54
+
55
+
To estimate the minimum RU/s required of a container with manual throughput, find the maximum of:
54
56
55
57
* 400 RU/s
56
58
* Current storage in GB * 1 RU/s
57
59
* Highest RU/s ever provisioned on the container / 100
58
60
59
61
For example, you have a container provisioned with 400 RU/s and 0-GB storage. You increase the throughput to 50,000 RU/s and import 20 GB of data. The minimum RU/s is now `MAX(400, 20 * 1 RU/s per GB, 50,000 RU/s / 100)` = 500 RU/s. Over time, the storage grows to 2000 GB. The minimum RU/s is now `MAX(400, 2000 * 1 RU/s per GB, 50,000 / 100)` = 2000 RU/s.
60
62
63
+
**Autoscale throughput**
64
+
65
+
To estimate the minimum autoscale max RU/s required of a container with autoscale throughput, find the maximum of:
66
+
67
+
* 1000 RU/s
68
+
* Current storage in GB * 10 RU/s
69
+
* Highest RU/s ever provisioned on the container / 10
70
+
71
+
For example, you have a container provisioned with 1000 RU/s and 0-GB storage. You increase the throughput to 50,000 RU/s and import 20 GB of data. The minimum max RU/s is now `MAX(1000, 20 * 10 RU/s per GB, 50,000 RU/s / 10)` = 5000 RU/s. Over time, the storage grows to 2000 GB. The minimum max RU/s is now `MAX(1000, 2000 * 10 RU/s per GB, 50,000 / 10)` = 20,000 RU/s.
72
+
61
73
#### Minimum throughput on shared throughput database
62
74
63
-
To estimate the minimum throughput required of a shared throughput database with manual throughput, find the maximum of:
75
+
**Manual throughput**
76
+
77
+
To estimate the minimum RU/s required of a shared throughput database with manual throughput, find the maximum of:
64
78
65
79
* 400 RU/s
66
80
* Current storage in GB * 1 RU/s
67
81
* Highest RU/s ever provisioned on the database / 100
68
82
* 400 + MAX(Container count - 25, 0) * 100 RU/s
69
83
70
-
For example, you have a database provisioned with 400 RU/s, 15 GB of storage, and 10 containers. The minimum RU/s is `MAX(400, 15 * 1 RU/s per GB, 400 / 100, 400 + 0 )` = 400 RU/s. If there were 30 containers in the database, the minimum RU/s would be `400 + MAX(30 - 25, 0) * 100 RU/s` = 900 RU/s.
84
+
For example, you have a database provisioned with 400 RU/s, 15 GB of storage, and 10 containers. The minimum RU/s is `MAX(400, 15 * 1 RU/s per GB, 400 / 100, 400 + 0 )` = 400 RU/s. If there were 30 containers in the database, the minimum RU/s would be `400 + MAX(30 - 25, 0) * 100 RU/s` = 900 RU/s.
71
85
72
-
In summary, here are the minimum provisioned RU limits when using manual throughput.
86
+
**Autoscale throughput**
73
87
74
-
| Resource | Limit |
75
-
| --- | --- |
76
-
| Minimum RUs per container ([dedicated throughput provisioned mode with manual throughput](./resource-model.md#azure-cosmos-db-containers)) | 400 |
77
-
| Minimum RUs per database ([shared throughput provisioned mode with manual throughput](./resource-model.md#azure-cosmos-db-containers)) | 400 RU/s for first 25 containers. |
88
+
To estimate the minimum autoscale max RU/s required of a shared throughput database with autoscale throughput, find the maximum of:
89
+
90
+
* 1000 RU/s
91
+
* Current storage in GB * 10 RU/s
92
+
* Highest RU/s ever provisioned on the database / 10
93
+
* 1000 + MAX(Container count - 25, 0) * 1000 RU/s
94
+
95
+
For example, you have a database provisioned with 1000 RU/s, 15 GB of storage, and 10 containers. The minimum max RU/s for autoscale database is `MAX(1000, 15 * 10 RU/s per GB, 1000 / 10, 1000 + 0 )` = 1000 RU/s. If there were 30 containers in the database, the minimum max RU/s would be `1000 + MAX(30 - 25, 0) * 1000 RU/s` = 5000 RU/s.
96
+
97
+
98
+
In summary, here are the minimum provisioned RU limits when using provisioned throughput.
99
+
100
+
| Provisioning Type | Resource | Limit |
101
+
| --- | --- | --- |
102
+
| Manual throughput | Minimum RUs per container ([dedicated throughput provisioned mode with manual throughput](./set-throughput.md#set-throughput-on-a-container)) | 400 |
103
+
| Manual throughput | Minimum RUs per database ([shared throughput provisioned mode with manual throughput](./set-throughput.md#set-throughput-on-a-database)| 400 RU/s for first 25 containers. |
104
+
| Autoscale throughput | Minimum max RUs per container ([dedicated throughput provisioned mode with autoscale throughput](./provision-throughput-autoscale.md#how-autoscale-provisioned-throughput-works)) | 1000 |
105
+
| Autoscale throughput | Minimum max RUs per database ([shared throughput provisioned mode with autoscale throughput](./provision-throughput-autoscale.md#how-autoscale-provisioned-throughput-works)) | 1000 RU/s for first 25 containers. |
78
106
79
107
Azure Cosmos DB supports programmatic scaling of throughput (RU/s) per container or database via the SDKs or portal.
Copy file name to clipboardExpand all lines: articles/cosmos-db/emulator-release-notes.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,23 +15,27 @@ ms.date: 09/11/2023
15
15
The Azure Cosmos DB emulator is updated at a regular cadence with release notes provided in this article.
16
16
17
17
> [!div class="nextstepaction"]
18
-
> [Download latest version (``2.14.12``)](https://aka.ms/cosmosdb-emulator)
18
+
> [Download latest version (``2.14.16``)](https://aka.ms/cosmosdb-emulator)
19
19
20
20
## Supported versions
21
21
22
22
Only the most recent version of the Azure Cosmos DB emulator is actively supported.
23
23
24
-
## Latest version ``2.14.12``
24
+
## Latest version ``2.14.16``
25
25
26
-
> *Released March 20, 2023*
26
+
> *Released January 8, 2024*
27
27
28
-
- This release fixes an issue impacting Gremlin and Table endpoint API types. Prior to this fix a client application fails with a 500 status code when trying to connect to the public emulator's endpoint.
28
+
- This release fixes an issue which was causing emulator to bind with `loopback` instead of `public interface` even after passing /AllowNetworkAccess command line option.
29
29
30
30
## Previous releases
31
31
32
32
> [!WARNING]
33
33
> Previous versions of the emulator are not supported by the product group.
34
34
35
+
### ``2.14.12`` (March 20, 2023)
36
+
37
+
- This release fixes an issue impacting Gremlin and Table endpoint API types. Prior to this fix a client application fails with a 500 status code when trying to connect to the public emulator's endpoint.
38
+
35
39
### ``2.14.11`` (January 27, 2023)
36
40
37
41
- This release updates the Azure Cosmos DB Emulator background services to match the latest online functionality of the Azure Cosmos DB.
- Step 3: Add "Delete items by partition key" capability in the list of capabilities if it doesn't exist already.
49
-
>!Note
50
-
The list of capabilities must always specify all capabilities that you want to enable, inclusively. This includes capabilities that are already enabled for the account that you want to keep.
49
+
> [!NOTE]
50
+
> The list of capabilities must always specify all capabilities that you want to enable, inclusively. This includes capabilities that are already enabled for the account that you want to keep.
0 commit comments