Skip to content

Commit b237406

Browse files
Merge pull request #221209 from msjasteppe/deploy-quick-updates
Adding consumer group disclaimer
2 parents 440dfbf + e5c130f commit b237406

File tree

5 files changed

+82
-5
lines changed

5 files changed

+82
-5
lines changed

articles/healthcare-apis/iot/deploy-new-bicep-powershell-cli.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: msjasteppe
55
ms.service: healthcare-apis
66
ms.subservice: fhir
77
ms.topic: quickstart
8-
ms.date: 12/05/2022
8+
ms.date: 12/12/2022
99
ms.author: jasteppe
1010
---
1111

@@ -93,6 +93,17 @@ Complete the following five steps to deploy the MedTech service using Azure Powe
9393

9494
For example: `New-AzResourceGroupDeployment -ResourceGroupName BicepTestDeployment -TemplateFile main.bicep -basename abc123 -location southcentralus`
9595

96+
> [!IMPORTANT]
97+
> If you're going to allow access from multiple services to the device message event hub, it is highly recommended that each service has its own event hub consumer group.
98+
>
99+
> Consumer groups enable multiple consuming applications to have a separate view of the event stream, and to read the stream independently at their own pace and with their own offsets. For more information, see [Consumer groups](../../event-hubs/event-hubs-features.md#consumer-groups).
100+
>
101+
> Examples:
102+
>
103+
> - Two MedTech services accessing the same device message event hub.
104+
>
105+
> - A MedTech service and a storage writer application accessing the same device message event hub.
106+
96107
## Deploy the MedTech service with the Bicep file and the Azure CLI
97108

98109
Complete the following five steps to deploy the MedTech service using the Azure CLI:
@@ -140,6 +151,17 @@ Complete the following five steps to deploy the MedTech service using the Azure
140151

141152
For example: `az deployment group create --resource-group BicepTestDeployment --template-file main.bicep --parameters basename=abc location=southcentralus`
142153

154+
> [!IMPORTANT]
155+
> If you're going to allow access from multiple services to the device message event hub, it is highly recommended that each service has its own event hub consumer group.
156+
>
157+
> Consumer groups enable multiple consuming applications to have a separate view of the event stream, and to read the stream independently at their own pace and with their own offsets. For more information, see [Consumer groups](../../event-hubs/event-hubs-features.md#consumer-groups).
158+
>
159+
> Examples:
160+
>
161+
> - Two MedTech services accessing the same device message event hub.
162+
>
163+
> - A MedTech service and a storage writer application accessing the same device message event hub.
164+
143165
## Review deployed resources and access permissions
144166

145167
When deployment is completed, the following resources and access roles are created in the Bicep file deployment:

articles/healthcare-apis/iot/deploy-new-button.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: msjasteppe
55
ms.service: healthcare-apis
66
ms.subservice: fhir
77
ms.topic: quickstart
8-
ms.date: 12/05/2022
8+
ms.date: 12/12/2022
99
ms.author: jasteppe
1010
---
1111

@@ -81,6 +81,17 @@ To begin deployment in the Azure portal, select the **Deploy to Azure** button:
8181

8282
:::image type="content" source="media\iot-deploy-quickstart-in-portal\iot-deployment-complete-banner.png" alt-text="Screenshot that shows a green checkmark and the message Your deployment is complete.":::
8383

84+
> [!IMPORTANT]
85+
> If you're going to allow access from multiple services to the device message event hub, it is highly recommended that each service has its own event hub consumer group.
86+
>
87+
> Consumer groups enable multiple consuming applications to have a separate view of the event stream, and to read the stream independently at their own pace and with their own offsets. For more information, see [Consumer groups](../../event-hubs/event-hubs-features.md#consumer-groups).
88+
>
89+
> Examples:
90+
>
91+
> - Two MedTech services accessing the same device message event hub.
92+
>
93+
> - A MedTech service and a storage writer application accessing the same device message event hub.
94+
8495
## Review deployed resources and access permissions
8596

8697
When deployment is completed, the following resources and access roles are created in the ARM template deployment:

articles/healthcare-apis/iot/deploy-new-choose.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: msjasteppe
55
ms.service: healthcare-apis
66
ms.subservice: fhir
77
ms.topic: quickstart
8-
ms.date: 12/08/2022
8+
ms.date: 12/12/2022
99
ms.author: jasteppe
1010
---
1111

@@ -44,6 +44,17 @@ The following diagram outlines the basic steps of the MedTech service deployment
4444

4545
:::image type="content" source="media/iot-get-started/get-started-with-iot.png" alt-text="Diagram showing MedTech service architecture overview." lightbox="media/iot-get-started/get-started-with-iot.png":::
4646

47+
> [!IMPORTANT]
48+
> If you're going to allow access from multiple services to the device message event hub, it is highly recommended that each service has its own event hub consumer group.
49+
>
50+
> Consumer groups enable multiple consuming applications to have a separate view of the event stream, and to read the stream independently at their own pace and with their own offsets. For more information, see [Consumer groups](../../event-hubs/event-hubs-features.md#consumer-groups).
51+
>
52+
> Examples:
53+
>
54+
> - Two MedTech services accessing the same device message event hub.
55+
>
56+
> - A MedTech service and a storage writer application accessing the same device message event hub.
57+
4758
## Next steps
4859

4960
In this quickstart, you learned about the different types of deployment methods for the MedTech service.

articles/healthcare-apis/iot/deploy-new-powershell-cli.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: msjasteppe
55
ms.service: healthcare-apis
66
ms.subservice: fhir
77
ms.topic: quickstart
8-
ms.date: 12/05/2022
8+
ms.date: 12/12/2022
99
ms.author: jasteppe
1010
---
1111

@@ -86,6 +86,17 @@ Complete the following five steps to deploy the MedTech service using Azure Powe
8686

8787
For example: `New-AzResourceGroupDeployment -ResourceGroupName ArmTestDeployment -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.healthcareapis/workspaces/iotconnectors/azuredeploy.json -basename abc123 -location southcentralus`
8888

89+
> [!IMPORTANT]
90+
> If you're going to allow access from multiple services to the device message event hub, it is highly recommended that each service has its own event hub consumer group.
91+
>
92+
> Consumer groups enable multiple consuming applications to have a separate view of the event stream, and to read the stream independently at their own pace and with their own offsets. For more information, see [Consumer groups](../../event-hubs/event-hubs-features.md#consumer-groups).
93+
>
94+
> Examples:
95+
>
96+
> - Two MedTech services accessing the same device message event hub.
97+
>
98+
> - A MedTech service and a storage writer application accessing the same device message event hub.
99+
89100
## Deploy the MedTech service with the Azure Resource Manager template and the Azure CLI
90101

91102
Complete the following five steps to deploy the MedTech service using the Azure CLI:
@@ -133,6 +144,17 @@ Complete the following five steps to deploy the MedTech service using the Azure
133144

134145
For example: `az deployment group create --resource-group ArmTestDeployment --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.healthcareapis/workspaces/iotconnectors/azuredeploy.json --parameters basename=abc123 location=southcentralus`
135146

147+
> [!IMPORTANT]
148+
> If you're going to allow access from multiple services to the device message event hub, it is highly recommended that each service has its own event hub consumer group.
149+
>
150+
> Consumer groups enable multiple consuming applications to have a separate view of the event stream, and to read the stream independently at their own pace and with their own offsets. For more information, see [Consumer groups](../../event-hubs/event-hubs-features.md#consumer-groups).
151+
>
152+
> Examples:
153+
>
154+
> - Two MedTech services accessing the same device message event hub.
155+
>
156+
> - A MedTech service and a storage writer application accessing the same device message event hub.
157+
136158
## Review deployed resources and access permissions
137159

138160
When deployment is completed, the following resources and access roles are created in the ARM template deployment:

articles/healthcare-apis/iot/device-data-through-iot-hub.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: msjasteppe
66
ms.service: healthcare-apis
77
ms.subservice: iomt
88
ms.topic: tutorial
9-
ms.date: 12/05/2022
9+
ms.date: 12/12/2022
1010
ms.author: jasteppe
1111
---
1212

@@ -100,6 +100,17 @@ To begin deployment in the Azure portal, select the **Deploy to Azure** button:
100100

101101
:::image type="content" source="media\iot-hub-to-iot-connector\iot-deployment-complete-banner.png" alt-text="Screenshot that shows a green checkmark and the message Your deployment is complete.":::
102102

103+
> [!IMPORTANT]
104+
> If you're going to allow access from multiple services to the device message event hub, it is highly recommended that each service has its own event hub consumer group.
105+
>
106+
> Consumer groups enable multiple consuming applications to have a separate view of the event stream, and to read the stream independently at their own pace and with their own offsets. For more information, see [Consumer groups](../../event-hubs/event-hubs-features.md#consumer-groups).
107+
>
108+
> Examples:
109+
>
110+
> - Two MedTech services accessing the same device message event hub.
111+
>
112+
> - A MedTech service and a storage writer application accessing the same device message event hub.
113+
103114
## Review deployed resources and access permissions
104115

105116
When deployment is completed, the following resources and access roles are created in the template deployment:

0 commit comments

Comments
 (0)