Skip to content

Commit af30326

Browse files
authored
Merge pull request #175280 from MicrosoftDocs/master
10/11 AM Publish
2 parents ee5d9cd + fa3d587 commit af30326

File tree

44 files changed

+669
-255
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+669
-255
lines changed

articles/active-directory/hybrid/tshoot-connect-sso.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ This article helps you find troubleshooting information about common problems re
3434
- Adding the Azure AD service URL (`https://autologon.microsoftazuread-sso.com`) to the Trusted sites zone instead of the Local intranet zone *blocks users from signing in*.
3535
- Seamless SSO supports the AES256_HMAC_SHA1, AES128_HMAC_SHA1 and RC4_HMAC_MD5 encryption types for Kerberos. It is recommended that the encryption type for the AzureADSSOAcc$ account is set to AES256_HMAC_SHA1, or one of the AES types vs. RC4 for added security. The encryption type is stored on the msDS-SupportedEncryptionTypes attribute of the account in your Active Directory. If the AzureADSSOAcc$ account encryption type is set to RC4_HMAC_MD5, and you want to change it to one of the AES encryption types, please make sure that you first roll over the Kerberos decryption key of the AzureADSSOAcc$ account as explained in the [FAQ document](how-to-connect-sso-faq.yml) under the relevant question, otherwise Seamless SSO will not happen.
3636
- If you have more than one forest with forest trust, enabling SSO in one of the forests, will enable SSO in all trusted forests. If you enable SSO in a forest where SSO is already enabled, you'll get an error saying that SSO is already enabled in the forest.
37+
- The policy that enables Seamless SSO has a 25600 char limit. This limit is for everything included in the policy, including the forest names you want Seamless SSO to be enabled on. You may hit the char limit if you have a high number of forests in your environment. If your forests have trust between them, it’s enough to enable Seamless SSO only on one forests. For example, if you have contoso.com and fabrikam.com and there’s trust between the two, you can enable Seamless SSO only on contoso.com and that will apply on fabrikam.com as well. This way, you can reduce the number of forests enabled in the policy and avoid hitting the policy char limit.
3738

3839
## Check status of feature
3940

articles/applied-ai-services/form-recognizer/concept-custom.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ recommendations: false
1414

1515
# Form Recognizer custom and composed models
1616

17-
Form Recognizer uses advanced machine learning technology to detect and extract information from document images and return the extracted data in a structured JSON output. With Form Recognizer, you can train standalone custom models or combine custom models to create composed models. See our
17+
Form Recognizer uses advanced machine learning technology to detect and extract information from document images and return the extracted data in a structured JSON output. With Form Recognizer, you can train standalone custom models or combine custom models to create composed models.
1818

1919
* **Custom models**. Form Recognizer custom models enable you to analyze and extract data from forms and documents specific to your business. Custom models are trained for your distinct data and use cases.
2020

articles/applied-ai-services/form-recognizer/concept-model-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ recommendations: false
1515

1616
# Form Recognizer models
1717

18-
Azure Form Recognizer prebuilt models enable you to add intelligent form processing to your apps and flows without have to train and build your own models. Prebuilt models use optical character recognition (OCR) combined with deep learning models to identify and extract predefined text and data fields common to specific form and document types. Form Recognizer extracts analyzes form and document data then returns an organized, structured JSON response. Form Recognizer v2.1 supports invoice, receipt, ID document, and business card models.
18+
Azure Form Recognizer prebuilt models enable you to add intelligent form processing to your apps and flows without having to train and build your own models. Prebuilt models use optical character recognition (OCR) combined with deep learning models to identify and extract predefined text and data fields common to specific form and document types. Form Recognizer extracts analyzes form and document data then returns an organized, structured JSON response. Form Recognizer v2.1 supports invoice, receipt, ID document, and business card models.
1919

2020
## Model overview
2121

articles/azure-monitor/app/opencensus-python.md

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ You may have noted that OpenCensus is converging into [OpenTelemetry](https://op
2222
## Prerequisites
2323

2424
- An Azure subscription. If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/) before you begin.
25-
- Python installation. This article uses [Python 3.7.0](https://www.python.org/downloads/release/python-370/), although other versions will likely work with minor changes. The Opencensus Python SDK only supports Python v2.7 and v3.4-v3.7.
25+
- Python installation. This article uses [Python 3.7.0](https://www.python.org/downloads/release/python-370/), although other versions will likely work with minor changes. The Opencensus Python SDK only supports Python v2.7 and v3.4+.
2626
- Create an Application Insights [resource](./create-new-resource.md). You'll be assigned your own instrumentation key (ikey) for your resource.
2727

2828
## Introducing Opencensus Python SDK
@@ -344,47 +344,47 @@ Opencensus Python SDK allows adding custom dimensions to your metrics telemetry
344344

345345
1. Insert the tags that you want to use into the tag map. The tag map acts like a sort of "pool" of all available tags you can use.
346346

347-
```python
348-
...
349-
tmap = tag_map_module.TagMap()
350-
tmap.insert("url", "http://example.com")
351-
...
352-
```
347+
```python
348+
...
349+
tmap = tag_map_module.TagMap()
350+
tmap.insert("url", "http://example.com")
351+
...
352+
```
353353

354354
1. For a specific `View`, specify the tags you want to use when recording metrics with that view via the tag key.
355355

356-
```python
357-
...
358-
prompt_view = view_module.View("prompt view",
359-
"number of prompts",
360-
["url"], # <-- A sequence of tag keys used to specify which tag key/value to use from the tag map
361-
prompt_measure,
362-
aggregation_module.CountAggregation())
363-
...
364-
```
356+
```python
357+
...
358+
prompt_view = view_module.View("prompt view",
359+
"number of prompts",
360+
["url"], # <-- A sequence of tag keys used to specify which tag key/value to use from the tag map
361+
prompt_measure,
362+
aggregation_module.CountAggregation())
363+
...
364+
```
365365

366366
1. Be sure to use the tag map when recording in the measurement map. The tag keys that are specified in the `View` must be found in the tag map used to record.
367367

368-
```python
369-
...
370-
mmap = stats_recorder.new_measurement_map()
371-
mmap.measure_int_put(prompt_measure, 1)
372-
mmap.record(tmap) # <-- pass the tag map in here
373-
...
374-
```
368+
```python
369+
...
370+
mmap = stats_recorder.new_measurement_map()
371+
mmap.measure_int_put(prompt_measure, 1)
372+
mmap.record(tmap) # <-- pass the tag map in here
373+
...
374+
```
375375

376376
1. Under the `customMetrics` table, all metrics records emitted using the `prompt_view` will have custom dimensions `{"url":"http://example.com"}`.
377377

378378
1. To produce tags with different values using the same keys, create new tag maps for them.
379379

380-
```python
381-
...
382-
tmap = tag_map_module.TagMap()
383-
tmap2 = tag_map_module.TagMap()
384-
tmap.insert("url", "http://example.com")
385-
tmap2.insert("url", "https://www.wikipedia.org/wiki/")
386-
...
387-
```
380+
```python
381+
...
382+
tmap = tag_map_module.TagMap()
383+
tmap2 = tag_map_module.TagMap()
384+
tmap.insert("url", "http://example.com")
385+
tmap2.insert("url", "https://www.wikipedia.org/wiki/")
386+
...
387+
```
388388

389389
#### Performance counters
390390

articles/azure-sql/database/doc-changes-updates-release-notes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ This table provides a quick comparison for the change in terminology:
9696
- [Distributed database transactions spanning multiple Azure SQL Managed Instances](https://azure.microsoft.com/updates/distributed-database-transactions-spanning-multiple-azure-sql-managed-instances/) - Distributed database transactions spanning multiple Azure SQL Managed Instances have been added to enable frictionless migration of existing applications, as well as development of modern multi-tenant applications relying on vertically or horizontally partitioned database architecture (Public Preview).
9797
- [Configurable Backup Storage Redundancy option for Azure SQL Managed Instance](https://azure.microsoft.com/updates/configurable-backup-storage-redundancy-option-for-azure-sql-managed-instance-2/) - Locally redundant storage (LRS) and zone-redundant storage (ZRS) options have been added to backup storage redundancy, providing more flexibility and choice.
9898
- [Backup storage cost savings for Azure SQL Database and Managed Instance](https://azure.microsoft.com/updates/backup-storage-cost-savings-for-azure-sql-database-and-managed-instance/) - User can set the PITR backup retention period & automated compression of backups for databases with transparent data encryption(TDE) is now up to 30 percent more efficient in backup storage space consumption.
99-
- [Azure AD authentication features for Azure SQL MI](https://azure.microsoft.com/updates/azure-ad-authentication-features-for-azure-sql-db-azure-synapse-analytics-and-azure-sql-managed-instance/) - hese features help automate user creation using Azure AD applications and allow individual Azure AD guest users to be created in SQL Managed Instance (Public Preview).
99+
- [Azure AD authentication features for Azure SQL MI](https://azure.microsoft.com/updates/azure-ad-authentication-features-for-azure-sql-db-azure-synapse-analytics-and-azure-sql-managed-instance/) - These features help automate user creation using Azure AD applications and allow individual Azure AD guest users to be created in SQL Managed Instance (Public Preview).
100100
- [Global virtual network peering support for Azure SQL Managed Instance](https://azure.microsoft.com/updates/global-virtual-network-peering-support-for-azure-sql-managed-instance-now-available/)
101101
- [Hosting catalog databases for all supported versions of SSRS in Azure SQL Managed Instance](https://azure.microsoft.com/updates/hosting-catalog-databases-for-all-supported-versions-of-ssrs-in-azure-sql-managed-instance/) - Azure SQL Managed Instance can host catalog databases for all supported versions of SQL Server Reporting Services (SSRS).
102102
- [Major performance improvements for Azure SQL Database Managed Instances](https://techcommunity.microsoft.com/t5/azure-sql/announcing-major-performance-improvements-for-azure-sql-database/ba-p/1701256)
@@ -214,7 +214,7 @@ Managed Instance scaling operations that include changing service tier or number
214214

215215
### Cannot create SQL Managed Instance with the same name as logical server previously deleted
216216

217-
After [logical server](./logical-servers.md) is deleted, there is a treshold period of 7 days before the name is released from the records. In that period, SQL Managed Instance with the same name cannot be created. As a workaround you would need to use different name for the SQL Managed Instance or create a support ticket for releasing a logical server name.
217+
After [logical server](./logical-servers.md) is deleted, there is a threshold period of 7 days before the name is released from the records. In that period, SQL Managed Instance with the same name cannot be created. As a workaround you would need to use different name for the SQL Managed Instance or create a support ticket for releasing a logical server name.
218218

219219
### BULK INSERT and BACKUP/RESTORE statements should use SAS Key to access Azure storage
220220

@@ -341,7 +341,7 @@ In the initial phase, a user can access the empty database and even create table
341341

342342
**Workaround**: Do not access the database that you are restoring until you see that restore is completed.
343343

344-
### TEMPDB structure and content is re-created
344+
### Tempdb structure and content is re-created
345345

346346
The `tempdb` database is always split into 12 data files, and the file structure cannot be changed. The maximum size per file can't be changed, and new files cannot be added to `tempdb`. `Tempdb` is always re-created as an empty database when the instance starts or fails over, and any changes made in `tempdb` will not be preserved.
347347

articles/cognitive-services/Translator/language-support.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ ms.author: lajanuar
3333
| Assamese | `as` ||||||
3434
| Azerbaijani | `az` ||||||
3535
| Bangla | `bn` ||||||
36+
| Bashkir | `ba` ||||||
3637
| Bosnian (Latin) | `bs` ||||||
3738
| Bulgarian | `bg` ||||||
3839
| Cantonese (Traditional) | `yue` ||||||
@@ -44,6 +45,7 @@ ms.author: lajanuar
4445
| Czech | `cs` ||||||
4546
| Danish | `da` ||||||
4647
| Dari | `prs` ||||||
48+
| Divehi | `dv` ||||||
4749
| Dutch | `nl` ||||||
4850
| English | `en` ||||||
4951
| Estonian | `et` ||||||
@@ -52,6 +54,7 @@ ms.author: lajanuar
5254
| Finnish | `fi` ||||||
5355
| French | `fr` ||||||
5456
| French (Canada) | `fr-ca` ||||||
57+
| Georgian | `ka` ||||||
5558
| German | `de` ||||||
5659
| Greek | `el` ||||||
5760
| Gujarati | `gu` ||||||
@@ -74,15 +77,19 @@ ms.author: lajanuar
7477
| Korean | `ko` ||||||
7578
| Kurdish (Central) | `ku` ||||||
7679
| Kurdish (Northern) | `kmr` ||||||
80+
| Kyrgyz | `ky` ||||||
7781
| Lao | `lo` ||||||
7882
| Latvian | `lv` ||||||
7983
| Lithuanian | `lt` ||||||
84+
| Macedonian | `mk` ||||||
8085
| Malagasy | `mg` ||||||
8186
| Malay | `ms` ||||||
8287
| Malayalam | `ml` ||||||
8388
| Maltese | `mt` ||||||
8489
| Maori | `mi` ||||||
8590
| Marathi | `mr` ||||||
91+
| Mongolian (Cyrillic) | `mn-Cyrl` ||||||
92+
| Mongolian (Traditional) | `mn-Mong` ||||||
8693
| Myanmar | `my` ||||||
8794
| Nepali | `ne` ||||||
8895
| Norwegian | `nb` ||||||
@@ -106,13 +113,18 @@ ms.author: lajanuar
106113
| Swedish | `sv` ||||||
107114
| Tahitian | `ty` || ||||
108115
| Tamil | `ta` ||||||
116+
| Tatar | `tt` ||||||
109117
| Telugu | `te` ||||||
110118
| Thai | `th` || ||||
119+
| Tibetan | `bo` |||||
111120
| Tigrinya | `ti` ||||||
112121
| Tongan | `to` ||||||
113122
| Turkish | `tr` ||||||
123+
| Turkmen | `tk` |||||
114124
| Ukrainian | `uk` ||||||
115125
| Urdu | `ur` ||||||
126+
| Uyghur | `ug` |||||
127+
| Uzbek (Latin | `uz` ||||||
116128
| Vietnamese | `vi` ||||||
117129
| Welsh | `cy` ||||||
118130
| Yucatec Maya | `yua` ||||||

articles/connectors/connectors-create-api-azureblobstorage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ To add an Azure Blob trigger to a logic app workflow in single-tenant Azure Logi
8181

8282
1. In the search box, enter `Azure blob`. From the triggers list, select the trigger named **When a blob is Added or Modified in Azure Storage**.
8383

84-
:::image type="content" source="./media/connectors-create-api-azureblobstorage/standard-trigger-add.png" alt-text="Screenshot showing Azure portal and workflow designer with a Standard logic app workflow and the trigger named 'When a blob is Added or Modified in Azure Storage' selected.":::
84+
:::image type="content" source="./media/connectors-create-api-azureblobstorage/standard-trigger-add.png" alt-text="Screenshot showing Azure portal, workflow designer, Standard logic app workflow and Azure Blob trigger selected.":::
8585

8686
1. If you're prompted for connection details, [create your Azure Blob Storage connection now](#connect-blob-storage-account).
8787

@@ -316,7 +316,7 @@ To set up the exception and managed identity support, first configure appropriat
316316

317317
1. Under **Exceptions**, select **Allow trusted Microsoft services to access this storage account**.
318318

319-
:::image type="content" source="./media/connectors-create-api-azureblobstorage/storage-networking-configure.png" alt-text="Screenshot showing the Azure portal and the Blob Storage account networking page with settings to allow selected networks, client IP address, and trusted Microsoft services.":::
319+
:::image type="content" source="./media/connectors-create-api-azureblobstorage/storage-networking-configure.png" alt-text="Screenshot showing Azure portal and Blob Storage account networking pane with allow settings.":::
320320

321321
1. When you're done, select **Save**.
322322

articles/cosmos-db/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1036,6 +1036,8 @@
10361036
- name: Find request unit charge
10371037
displayName: request units, RUs, RU, charge, consumption
10381038
href: cassandra/find-request-unit-charge-cassandra.md
1039+
- name: Preventing rate-limiting errors
1040+
href: cassandra/prevent-rate-limiting-errors.md
10391041
- name: Store and manage Spring Data
10401042
href: cassandra/access-data-spring-data-app.md
10411043
- name: Troubleshoot common issues

articles/cosmos-db/analytical-store-introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ The following constraints are applicable on the operational data in Azure Cosmos
160160
* Change your data model in advance to avoid these characters.
161161
* Since we currently we don't support schema reset, you can change your application to add a redundant property with a similar name, avoiding these characters.
162162
* Use Change Feed to create a materialized view of your container without these characters in properties names.
163-
* Use the brand new `dropColumn` Spark option to ignore the affected columns when loadind data into a DataFrame. The syntax for dropping a hypothetical column named "FirstName,LastNAme", that contains a comma, is:
163+
* Use the brand new `dropColumn` Spark option to ignore the affected columns when loading data into a DataFrame. The syntax for dropping a hypothetical column named "FirstName,LastNAme", that contains a comma, is:
164164

165165
```Python
166166
df = spark.read\
92 KB
Loading

0 commit comments

Comments
 (0)