Skip to content

Commit cd2b171

Browse files
authored
Merge pull request #286427 from MicrosoftDocs/main
9/10 11:00 AM IST Publish
2 parents 1904586 + c049d8c commit cd2b171

File tree

20 files changed

+20
-24
lines changed

20 files changed

+20
-24
lines changed

articles/databox/data-box-system-requirements.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ author: stevenmatthew
66

77
ms.service: databox
88
ms.subservice: pod
9-
ms.topic: article
10-
ms.date: 09/09/2024
9+
ms.topic: conceptual
10+
ms.date: 10/21/2022
1111
ms.author: shaas
1212
---
1313

@@ -17,8 +17,10 @@ This article describes important system requirements for your Microsoft Azure Da
1717

1818
The system requirements include:
1919

20-
* **Software requirements:** For hosts that connect to the Data Box, describes supported operating systems, file transfer protocols, storage accounts, storage types, and browsers for the local web UI.
21-
* **Networking requirements:** For the Data Box, describes requirements for network connections and ports for best operation of the Data Box.
20+
* **Software requirements** for hosts that connect to Data Box.<br>
21+
They describe supported operating systems, file transfer protocols, storage accounts, storage types, and browsers for the local web UI.
22+
* **Networking requirements** for the Data Box device.<br>
23+
They describe network connections and ports used for optimal Data Box device operation.
2224

2325

2426
## Software requirements
@@ -34,8 +36,10 @@ The software requirements include supported operating systems, file transfer pro
3436
[!INCLUDE [data-box-supported-file-systems-clients](../../includes/data-box-supported-file-systems-clients.md)]
3537

3638
> [!IMPORTANT]
37-
> Connection to Data Box shares is not supported via REST for export orders.
38-
> Transporting data from on-premises NFS clients into Data Box using NFSv4 is supported. However, to copy data from Data Box to Azure, Data Box supports only REST-based transport. Azure file share with NFSv4.1 does not support REST for data access/transfers.
39+
> Connection to Data Box shares is not supported via REST for export orders.
40+
>
41+
> You can transport your data to Data Box from on-premises Network File System (NFS) clients by using NFSv4. However, when copying data from Data Box to Azure, Data Box supports REST-based transport only. Azure file shares with NFSv4.1 doesn't support REST for data access or transfer.
42+
3943
### Supported storage accounts
4044

4145
> [!Note]
@@ -57,7 +61,7 @@ Your datacenter needs to have high-speed network. We strongly recommend you have
5761

5862
### Port requirements
5963

60-
The following table lists the ports that need to be opened in your firewall to allow for SMB or NFS traffic. In this table, *In* (*inbound*) refers to the direction from which incoming client requests access to your device. *Out* (or *outbound*) refers to the direction in which your Data Box device sends data externally, beyond the deployment. For example, data might be outbound to the Internet.
64+
The following table lists the ports that need to be opened in your firewall to allow for Server Message Block (SMB) or Network File System (NFS) traffic. In this table, *In* (*inbound*) refers to the direction from which incoming client requests access to your device. *Out* (or *outbound*) refers to the direction in which your Data Box device sends data externally, beyond the deployment. For example, data might be outbound to the Internet.
6165

6266
[!INCLUDE [data-box-port-requirements](../../includes/data-box-port-requirements.md)]
6367

articles/governance/resource-graph/changes/get-resource-changes.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ When a resource is created, updated, or deleted, a new change resource (`Microso
5353
"properties.provisioningState": {
5454
"newValue": "Succeeded",
5555
"previousValue": "Updating",
56-
"changeCategory": "System",
57-
"propertyChangeType": "Update",
5856
"isTruncated": "true"
5957
},
6058
"tags.key1": {

articles/hdinsight/kafka/apache-kafka-get-started.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -199,10 +199,10 @@ Kafka stores streams of data in *topics*. You can use the `kafka-topics.sh` util
199199
* **To create a topic**, use the following command in the SSH connection:
200200
201201
```bash
202-
/usr/hdp/current/kafka-broker/bin/kafka-topics.sh --create --replication-factor 3 --partitions 8 --topic test --zookeeper $KAFKAZKHOSTS
202+
/usr/hdp/current/kafka-broker/bin/kafka-topics.sh --create --replication-factor 3 --partitions 8 --topic test --bootstrap-server $KAFKABROKERS
203203
```
204204
205-
This command connects to Zookeeper using the host information stored in `$KAFKAZKHOSTS`. It then creates an Apache Kafka topic named **test**.
205+
This command connects to Broker using the host information stored in `$KAFKABROKERS`. It then creates an Apache Kafka topic named **test**.
206206
207207
* Data stored in this topic is partitioned across eight partitions.
208208
@@ -227,15 +227,15 @@ Kafka stores streams of data in *topics*. You can use the `kafka-topics.sh` util
227227
* **To list topics**, use the following command:
228228
229229
```bash
230-
/usr/hdp/current/kafka-broker/bin/kafka-topics.sh --list --zookeeper $KAFKAZKHOSTS
230+
/usr/hdp/current/kafka-broker/bin/kafka-topics.sh --list --bootstrap-server $KAFKABROKERS
231231
```
232232
233233
This command lists the topics available on the Apache Kafka cluster.
234234
235235
* **To delete a topic**, use the following command:
236236
237237
```bash
238-
/usr/hdp/current/kafka-broker/bin/kafka-topics.sh --delete --topic topicname --zookeeper $KAFKAZKHOSTS
238+
/usr/hdp/current/kafka-broker/bin/kafka-topics.sh --delete --topic topicname --bootstrap-server $KAFKABROKERS
239239
```
240240
241241
This command deletes the topic named `topicname`.
-34.1 KB
Loading
-80.8 KB
Loading

articles/iot-hub/device-management-python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,10 +266,10 @@ You're now ready to run the device code and the service code that initiates a re
266266
267267
The following shows the device response to the reboot direct method:
268268
269-
![Simulated device app output](./media/iot-hub-python-python-device-management-get-started/device.png)
269+
![Screenshot that shows the output of the simulated device app after receiving reboot direct method.](./media/device-management-python/device.png)
270270
271271
The following shows the service calling the reboot direct method and polling the device twin for status:
272272
273-
![Trigger reboot service output](./media/iot-hub-python-python-device-management-get-started/service.png)
273+
![Screenshot that shows the output of the service app after sending reboot direct method.](./media/device-management-python/service.png)
274274
275275
[!INCLUDE [iot-hub-dm-followup](../../includes/iot-hub-dm-followup.md)]
36.4 KB
Loading
-14.7 KB
Loading

0 commit comments

Comments
 (0)