Skip to content

Commit 67cd9c2

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into rolyon-rbac-roles-windows-admin-center-admin-login
2 parents f02f932 + 0ca9f3e commit 67cd9c2

File tree

10 files changed

+659
-634
lines changed

10 files changed

+659
-634
lines changed

.openpublishing.redirection.json

Lines changed: 0 additions & 610 deletions
Large diffs are not rendered by default.
75.4 KB
Loading

articles/active-directory-domain-services/network-considerations.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.service: active-directory
99
ms.subservice: domain-services
1010
ms.workload: identity
1111
ms.topic: conceptual
12-
ms.date: 06/20/2022
12+
ms.date: 09/21/2022
1313
ms.author: justinha
1414

1515
---
@@ -108,14 +108,21 @@ The following sections cover network security groups and Inbound and Outbound po
108108

109109
### Inbound connectivity
110110

111-
The following network security group Inbound rules are required for the managed domain to provide authentication and management services. Don't edit or delete these network security group rules for the virtual network subnet your managed domain is deployed into.
111+
The following network security group Inbound rules are required for the managed domain to provide authentication and management services. Don't edit or delete these network security group rules for the virtual network subnet for your managed domain.
112112

113113
| Inbound port number | Protocol | Source | Destination | Action | Required | Purpose |
114114
|:-----------:|:--------:|:----------------------------------:|:-----------:|:------:|:--------:|:--------|
115115
| 5986 | TCP | AzureActiveDirectoryDomainServices | Any | Allow | Yes | Management of your domain. |
116116
| 3389 | TCP | CorpNetSaw | Any | Allow | Optional | Debugging for support. |
117117

118-
An Azure standard load balancer is created that requires these rules to be place. This network security group secures Azure AD DS and is required for the managed domain to work correctly. Don't delete this network security group. The load balancer won't work correctly without it.
118+
Azure AD DS also relies on the Default Security rules AllowVnetInBound and AllowAzureLoadBalancerInBound.
119+
120+
:::image type="content" border="true" source="./media/network-considerations/nsg.png" alt-text="Screenshot of network security group rules.":::
121+
122+
The AllowVnetInBound rule allows all traffic within the VNet which allows the DCs to properly communicate and replicate as well as allow domain join and other domain services to domain members. For more information about required ports for Windows, see [Service overview and network port requirements for Windows](/troubleshoot/windows-server/networking/service-overview-and-network-port-requirements).
123+
124+
125+
The AllowAzureLoadBalancerInBound rule is also required so that the service can properly communicate over the loadbalancer to manage the DCs. This network security group secures Azure AD DS and is required for the managed domain to work correctly. Don't delete this network security group. The load balancer won't work correctly without it.
119126

120127
If needed, you can [create the required network security group and rules using Azure PowerShell](powershell-create-instance.md#create-a-network-security-group).
121128

articles/machine-learning/how-to-auto-train-image-models.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,9 @@ image_object_detection_job = automl.image_object_detection(
242242

243243
Provide a [compute target](concept-azure-machine-learning-architecture.md#compute-targets) for automated ML to conduct model training. Automated ML models for computer vision tasks require GPU SKUs and support NC and ND families. We recommend the NCsv3-series (with v100 GPUs) for faster training. A compute target with a multi-GPU VM SKU leverages multiple GPUs to also speed up training. Additionally, when you set up a compute target with multiple nodes you can conduct faster model training through parallelism when tuning hyperparameters for your model.
244244

245+
> [!NOTE]
246+
> If you are using a [compute instance](concept-compute-instance.md) as your compute target, please make sure that multiple AutoML jobs are not run at the same time. Also, please make sure that `max_concurrent_trials` is set to 1 in your [job limits](#job-limits).
247+
245248
The compute target is passed in using the `compute` parameter. For example:
246249

247250
# [Azure CLI](#tab/cli)
@@ -423,7 +426,7 @@ When sweeping hyperparameters, you need to specify the sampling method to use fo
423426
|[Bayesian Sampling](how-to-tune-hyperparameters.md#bayesian-sampling)| `bayesian` |
424427

425428
> [!NOTE]
426-
> Currently only random sampling supports conditional hyperparameter spaces.
429+
> Currently only random and grid sampling support conditional hyperparameter spaces.
427430

428431
### Early termination policies
429432

articles/machine-learning/v1/how-to-auto-train-image-models-v1.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,9 @@ automl_image_config = AutoMLImageConfig(training_data=training_dataset)
187187

188188
Provide a [compute target](../v1/concept-azure-machine-learning-architecture.md#compute-targets) for automated ML to conduct model training. Automated ML models for computer vision tasks require GPU SKUs and support NC and ND families. We recommend the NCsv3-series (with v100 GPUs) for faster training. A compute target with a multi-GPU VM SKU leverages multiple GPUs to also speed up training. Additionally, when you set up a compute target with multiple nodes you can conduct faster model training through parallelism when tuning hyperparameters for your model.
189189

190+
> [!NOTE]
191+
> If you are using a [compute instance](../concept-compute-instance.md) as your compute target, please make sure that multiple AutoML jobs are not run at the same time. Also, please make sure that `max_concurrent_iterations` is set to 1 in your [experiment resources](#resources-for-the-sweep).
192+
190193
The compute target is a required parameter and is passed in using the `compute_target` parameter of the `AutoMLImageConfig`. For example:
191194

192195
```python
@@ -280,7 +283,7 @@ When sweeping hyperparameters, you need to specify the sampling method to use fo
280283
* [Bayesian sampling](../how-to-tune-hyperparameters.md#bayesian-sampling)
281284

282285
> [!NOTE]
283-
> Currently only random sampling supports conditional hyperparameter spaces.
286+
> Currently only random and grid sampling support conditional hyperparameter spaces.
284287
285288
### Early termination policies
286289

articles/machine-learning/v1/how-to-move-data-in-out-of-pipelines.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -235,9 +235,17 @@ step1_output_ds = step1_output_data.register_on_complete(name='processed_data',
235235

236236
Azure does not automatically delete intermediate data written with `OutputFileDatasetConfig`. To avoid storage charges for large amounts of unneeded data, you should either:
237237

238-
* Programmatically delete intermediate data at the end of a pipeline job, when it is no longer needed
239-
* Use blob storage with a short-term storage policy for intermediate data (see [Optimize costs by automating Azure Blob Storage access tiers](/azure/storage/blobs/lifecycle-management-overview))
240-
* Regularly review and delete no-longer-needed data
238+
> [!CAUTION]
239+
> Only delete intermediate data after 30 days from the last change date of the data. Deleting the data earlier could cause the pipeline run to fail because the pipeline will assume the intermediate data exists within 30 day period for reuse.
240+
241+
* Programmatically delete intermediate data at the end of a pipeline job, when it is no longer needed.
242+
* Use blob storage with a short-term storage policy for intermediate data (see [Optimize costs by automating Azure Blob Storage access tiers](/azure/storage/blobs/lifecycle-management-overview)). This policy can only be set to a workspace's non-default datastore. Use `OutputFileDatasetConfig` to export intermediate data to another datastore that isn't the default.
243+
```Python
244+
# Get adls gen 2 datastore already registered with the workspace
245+
datastore = workspace.datastores['my_adlsgen2']
246+
step1_output_data = OutputFileDatasetConfig(name="processed_data", destination=(datastore, "mypath/{run-id}/{output-name}")).as_upload()
247+
```
248+
* Regularly review and delete no-longer-needed data.
241249

242250
For more information, see [Plan and manage costs for Azure Machine Learning](../concept-plan-manage-cost.md).
243251

articles/marketplace/submission-api-overview.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.subservice: partnercenter-marketplace-publisher
66
ms.topic: conceptual
77
ms.author: mingshen
88
author: mingshen-ms
9-
ms.date: 09/22/2021
9+
ms.date: 09/23/2022
1010
---
1111

1212
# Commercial marketplace submission API overview
@@ -17,22 +17,23 @@ Use API to programmatically query, create submissions for, and publish offers. A
1717

1818
There are two sets of submission API available:
1919

20-
- **Partner Center submission API** – The common set of APIs that work across consumer and commercial products to publish through Partner Center. New capabilities are continuously added to this set of APIs. For more information on how to integrate with this API, see [Partner Center submission API onboarding](submission-api-onboard.md).
20+
- **Partner Center submission API** – The common set of APIs that work across consumer and commercial products to publish through Partner Center. New capabilities are continuously added to this set of APIs. For more information on how to integrate with this API, see [Partner Center submission API onboarding](submission-api-onboard.md).
21+
- **Product Ingestion API** – The new set of modern APIs to create and manage commercial offers through Partner Center. New capabilities are continuously added to this set of APIs. The APIs are in preview state and will soon be launched for all offer types and will eventually replace the Partner Center submission and Legacy Cloud Partner Portal APIs. For more information on how to integrate with the modern Product Ingestion API, see [Product Ingestion API for the commercial marketplace](product-ingestion-api.md).
2122
- **Legacy Cloud Partner Portal API** – The APIs carried over from the deprecated Cloud Partner Portal; it is integrated with and continues to work in Partner Center. This set of APIs is in maintenance mode only; new capabilities introduced in Partner Center may not be supported, and it should only be used for existing products that were already integrated before transition to Partner Center. For more information on how to continue to use the Cloud Partner Portal APIs, see [Cloud Partner Portal API Reference](cloud-partner-portal-api-overview.md).
2223

2324
Refer to the following table for supported submission APIs for each offer type.
2425

25-
| Offer type | Legacy Cloud Partner Portal API Support | Partner Center submission API support |
26-
| --- | :---: | :---: |
27-
| Azure Application | | ✔ |
28-
| Azure Container | ✔ | |
29-
| Azure Virtual Machine | ✔ | |
30-
| Consulting Service | ✔ | |
31-
| Dynamics 365 | | ✔ |
32-
| IoT Edge Module | ✔ | |
33-
| Managed Service | ✔ | |
34-
| Power BI App | ✔ | |
35-
| Software as a Service | | ✔ |
26+
| Offer type | Legacy Cloud Partner Portal API Support | Partner Center submission API support | Product Ingestion API support |
27+
| --- | :---: | :---: |--------------------|
28+
| Azure Application | | ✔ | |
29+
| Azure Container | ✔ | | |
30+
| Azure Virtual Machine | ✔ | | ✔|
31+
| Consulting Service | ✔ | | |
32+
| Dynamics 365 | | ✔ | |
33+
| IoT Edge Module | ✔ | | |
34+
| Managed Service | ✔ | | |
35+
| Power BI App | ✔ | | |
36+
| Software as a Service | | ✔ | |
3637

3738
Microsoft 365 Office add-ins, Microsoft 365 SharePoint solutions, Microsoft 365 Teams apps, and Power BI Visuals don’t have submission API support.
3839

articles/synapse-analytics/get-started-analyze-sql-pool.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ A dedicated SQL pool consumes billable resources as long as it's active. You can
104104
SELECT PassengerCount,
105105
SUM(TripDistanceMiles) as SumTripDistance,
106106
AVG(TripDistanceMiles) as AvgTripDistance
107+
INTO dbo.PassengerCountStats
107108
FROM dbo.NYCTaxiTripSmall
108109
WHERE TripDistanceMiles > 0 AND PassengerCount > 0
109110
GROUP BY PassengerCount

0 commit comments

Comments
 (0)