Skip to content

Commit 3ac88b7

Browse files
authored
Merge pull request #107266 from baanders/3-11-ADT-pp1-limit
ADT Preview capacity note
2 parents 94dd659 + 9d875a1 commit 3ac88b7

File tree

5 files changed

+28
-14
lines changed

5 files changed

+28
-14
lines changed

articles/digital-twins/about-digital-twins.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ ms.custom: mvc
1212
#Customer intent: As an Azure enterprise customer, I want to know what capabilities Digital Twins has so that I can build next-generation IoT services.
1313
---
1414

15-
# Overview of Azure Digital Twins
15+
# Overview of Azure Digital Twins Preview
16+
17+
[!INCLUDE [digital-twins-pp1-limit-alert](../../includes/digital-twins-pp1-limit-alert.md)]
1618

1719
Azure Digital Twins Preview is an Azure IoT service that creates comprehensive models of the physical environment. It can create spatial intelligence graphs to model the relationships and interactions between people, spaces, and devices.
1820

@@ -47,7 +49,7 @@ Consider a smart utility app that involves several electricity usage meters conn
4749

4850
### Digital twin object models
4951

50-
[Digital twin object models](./concepts-objectmodel-spatialgraph.md#digital-twins-object-models) are predefined device protocols and data schema. They align your solutions domain-specific needs to accelerate and simplify development.
52+
[Digital twin object models](./concepts-objectmodel-spatialgraph.md#digital-twins-object-models) are predefined device protocols and data schema. They align your solution's domain-specific needs to accelerate and simplify development.
5153

5254
For example, a room occupancy application might use predefined space types such as campus, building, floor, and room.
5355

articles/digital-twins/concepts-service-limits.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,13 @@ ms.date: 01/17/2020
1212

1313
# Public preview service limits
1414

15-
During the public preview, Azure Digital Twins has the following temporary subscription, instance, and rate limits.
15+
[!INCLUDE [digital-twins-pp1-limit-alert](../../includes/digital-twins-pp1-limit-alert.md)]
1616

17-
These constraints exist to help simplify learning about the new service and its many features.
18-
19-
> [!NOTE]
20-
> These limits will be increased or removed by general availability (GA).
17+
During the public preview, Azure Digital Twins has the following temporary subscription, instance, and rate limits for existing customers. These constraints exist to help simplify learning about the new service and its many features, and will be increased or removed by general availability (GA).
2118

2219
## Per-subscription limits
2320

24-
During the public preview, each Azure subscription can create or run only one Azure Digital Twins instance at a time.
25-
26-
> [!TIP]
27-
> If you delete your instance, you can create a new one.
21+
During the public preview, each Azure subscription can create or run only one Azure Digital Twins instance at a time. If you delete your instance, you can create a new one.
2822

2923
## Per-instance limits
3024

@@ -66,7 +60,7 @@ The following limits set the total number of all user-defined function calls mad
6660
The following limits cap the total number of all messages your devices can send to your Azure Digital Twins instance:
6761

6862
- 100 messages per second across all devices
69-
- 25 messages per second per device
63+
- 25 messages per second per device
7064

7165
## Next steps
7266

articles/digital-twins/quickstart-view-occupancy-dotnet.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ ms.date: 01/10/2020
1515

1616
# Quickstart: Find available rooms by using Azure Digital Twins
1717

18+
[!INCLUDE [digital-twins-pp1-limit-alert](../../includes/digital-twins-pp1-limit-alert.md)]
19+
1820
The Azure Digital Twins service allows you to re-create a digital image of your physical environment. You can then get notified by events in your environment and customize your responses to them.
1921

2022
This quickstart uses [a pair of .NET samples](https://github.com/Azure-Samples/digital-twins-samples-csharp) to digitize an imaginary office building. It shows you how to find available rooms in that building. With Digital Twins, you can associate many sensors with your environment. You also can find out if the air quality of your available room is optimal with the help of a simulated sensor for carbon dioxide. One of the sample applications generates random sensor data to help you visualize this scenario.

articles/digital-twins/tutorial-facilities-setup.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ ms.date: 01/10/2020
1414

1515
# Tutorial: Deploy Azure Digital Twins Preview and configure a spatial graph
1616

17+
[!INCLUDE [digital-twins-pp1-limit-alert](../../includes/digital-twins-pp1-limit-alert.md)]
18+
1719
You can use the Azure Digital Twins Preview service to bring together people, places, and devices in a coherent spatial system. This series of tutorials demonstrates how to use Azure Digital Twins to detect room occupancy with optimal conditions of temperature and air quality.
1820

1921
These tutorials will walk you through a .NET console application to build a scenario of an office building. The building has multiple floors and rooms within each floor. The rooms contain devices with attached sensors that detect motion, ambient temperature, and air quality.
@@ -34,7 +36,7 @@ These tutorials use and modify the same samples that the [quickstart to find ava
3436

3537
## Prerequisites
3638

37-
- An Azure subscription. If you dont have an Azure account, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
39+
- An Azure subscription. If you don't have an Azure account, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
3840

3941
- The .NET Core SDK. The Azure Digital Twins samples used in these tutorials are written in C#. Make sure to install [.NET Core SDK version 2.1.403 or later](https://www.microsoft.com/net/download) on your development machine to build and run the sample. Check that the right version is installed on your machine by running `dotnet --version` in a command window.
4042

@@ -143,7 +145,7 @@ The **provisionSample.yaml** file contains the following nodes:
143145

144146
- **spaces**: In the Digital Twins object model, `spaces` represent the physical locations. Each space has a `Type`—for example, Region, Venue, or Customer—and a friendly `Name`. Spaces can belong to other spaces, creating a hierarchical structure. The provisionSample.yaml file has a spatial graph of an imaginary building. Note the logical nesting of spaces of type `Floor` within `Venue`, `Area` in a floor, and `Room` nodes in an area.
145147

146-
- **devices**: Spaces can contain `devices`, which are physical or virtual entities that manage a number of sensors. For example, a device might be a users phone, a Raspberry Pi sensor pod, or a gateway. In the imaginary building in your sample, note how the room named **Focus Room** contains a **Raspberry Pi 3 A1** device. Each device node is identified by a unique `hardwareId`, which is hardcoded in the sample. To configure this sample for an actual production, replace these with values from your setup.
148+
- **devices**: Spaces can contain `devices`, which are physical or virtual entities that manage a number of sensors. For example, a device might be a user's phone, a Raspberry Pi sensor pod, or a gateway. In the imaginary building in your sample, note how the room named **Focus Room** contains a **Raspberry Pi 3 A1** device. Each device node is identified by a unique `hardwareId`, which is hardcoded in the sample. To configure this sample for an actual production, replace these with values from your setup.
147149

148150
- **sensors**: A device can contain multiple `sensors`. They can detect and record physical changes like temperature, motion, and battery level. Each sensor node is uniquely identified by a `hardwareId`, hardcoded here. For an actual application, replace these by using the unique identifiers of the sensors in your setup. The provisionSample.yaml file has two sensors to record *Motion* and *CarbonDioxide*. Add another sensor to record *Temperature*, by adding the following lines, below the lines for the CarbonDioxide sensor. These are provided in provisionSample.yaml as commented-out lines. You can uncomment them by removing the `#` character in the front of each line.
149151

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: include file
3+
description: include file
4+
services: digital-twins
5+
ms.author: baanders
6+
author: baanders
7+
ms.service: digital-twins
8+
ms.topic: include
9+
ms.date: 3/11/2020
10+
ms.custom: include file
11+
---
12+
13+
> [!NOTE]
14+
> The Azure Digital Twins preview program is currently at capacity. As a result, new customers are no longer being added and **no additional Azure Digital Twins resources can be created at this time**. If an instance somewhere is deleted, it is possible your resource creation will succeed and you can proceed normally, but this is not guaranteed. Please continue to check back for any update to this status.

0 commit comments

Comments
 (0)