Skip to content

Commit 70b57bc

Browse files
author
Owen Duncan
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs-pr into aas-update-skus
2 parents 2a9659c + c6fec22 commit 70b57bc

File tree

5 files changed

+34
-29
lines changed

5 files changed

+34
-29
lines changed

articles/app-service/web-sites-php-configure.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: msangapu-msft
66
ms.assetid: 95c4072b-8570-496b-9c48-ee21a223fb60
77
ms.devlang: php
88
ms.topic: article
9-
ms.date: 04/11/2018
9+
ms.date: 04/13/2020
1010
ms.author: msangapu
1111
ms.custom: seodec18
1212

@@ -15,13 +15,15 @@ ms.custom: seodec18
1515

1616
## Introduction
1717

18-
This guide shows you how to configure the built-in PHP runtime for web apps, mobile back ends, and API apps in [Azure App Service](https://go.microsoft.com/fwlink/?LinkId=529714), provide a custom PHP runtime, and enable extensions. To use App Service, sign up for the [free trial]. To get the most from this guide, you should first create a PHP app in App Service.
18+
This guide shows you how to configure the built-in PHP runtime for web apps and API apps in [Azure App Service](https://go.microsoft.com/fwlink/?LinkId=529714), provide a custom PHP runtime, and enable extensions. To use App Service, sign up for the [free trial]. To get the most from this guide, you should first create a PHP app in App Service.
1919

2020
## How to: Change the built-in PHP version
2121

22-
By default, PHP 5.6 is installed and immediately available for use when you create an App Service app. The best way to see the available release revision, its default configuration, and the enabled extensions is to deploy a script that calls the [phpinfo()] function.
22+
When creating a web app, you can choose the version of PHP that will be configured. See [PHP on App Service](https://github.com/Azure/app-service-linux-docs/blob/master/Runtime_Support/php_support.md) for up-to-date information of currently supported versions.
2323

24-
PHP 7.0 and PHP 7.2 versions are also available, but not enabled by default. To update the PHP version, follow one of these methods:
24+
To check on the existing runtime version of your app, you can deploy a script that calls the [phpinfo()] function.
25+
26+
To update the PHP version, follow one of these methods:
2527

2628
### Azure portal
2729

@@ -45,7 +47,7 @@ To use the Azure Command-Line Interface, you must [Install the Azure CLI](https:
4547

4648
2. Set the PHP version for the app.
4749

48-
az webapp config set --php-version {5.6 | 7.0 | 7.1 | 7.2} --name {app-name} --resource-group {resource-group-name}
50+
az webapp config set --php-version {5.6 | 7.2 | 7.3} --name {app-name} --resource-group {resource-group-name}
4951

5052
3. The PHP version is now set. You can confirm these settings:
5153

@@ -75,7 +77,7 @@ As an alternative to using a `.user.ini` file, you can use the [ini_set()] funct
7577

7678
1. Add an App Setting to your app with the key `PHP_INI_SCAN_DIR` and value `d:\home\site\ini`
7779
1. Create an `settings.ini` file using Kudu Console (http://<site-name>.scm.azurewebsite.net) in the `d:\home\site\ini` directory.
78-
1. Add configuration settings to the `settings.ini` file using the same syntax you would use in a `php.ini` file. For example, if you wanted to point the `curl.cainfo` setting to a `*.crt` file and set 'wincache.maxfilesize' setting to 512K, your `settings.ini` file would contain this text:
80+
1. Add configuration settings to the `settings.ini` file using the same syntax you would use in a `php.ini` file. For example, if you wanted to point the `curl.cainfo` setting to a `*.crt` file and set 'wincache.maxfilesize' setting to 512 K, your `settings.ini` file would contain this text:
7981

8082
; Example Settings
8183
curl.cainfo="%ProgramFiles(x86)%\Git\bin\curl-ca-bundle.crt"

articles/media-services/video-indexer/language-identification-model.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,17 @@ manager: femila
99
ms.service: media-services
1010
ms.subservice: video-indexer
1111
ms.topic: article
12-
ms.date: 09/12/2019
12+
ms.date: 04/12/2020
1313
ms.author: ellbe
1414
---
1515

1616
# Automatically identify the spoken language with language identification model
1717

18-
Video Indexer supports automatic language identification (LID), which is the process of automatically identifying the spoken language content from audio and sending the media file to be transcribed in the dominant identified language. Currently LID supports English, Spanish, French, German, Italian, Chinese (Simplified), Japanese, Russian, and Portuguese (Brazilian).
18+
Video Indexer supports automatic language identification (LID), which is the process of automatically identifying the spoken language content from audio and sending the media file to be transcribed in the dominant identified language.
19+
20+
Currently LID supports: English, Spanish, French, German, Italian, Mandarin Chines, Japanese, Russian, and Portuguese (Brazilian).
21+
22+
Make sure to review the [Guidelines and limitations](#guidelines-and-limitations) section below.
1923

2024
## Choosing auto language identification on indexing
2125

@@ -45,7 +49,10 @@ Model dominant language is available in the insights JSON as the `sourceLanguage
4549

4650
## Guidelines and limitations
4751

48-
* Supported languages include English, Spanish, French, German, Italian, Chinese (Simplified), Japanese, Russian, and Brazilian Portuguese.
52+
* Automatic language identification (LID) supports the following languages:
53+
54+
English, Spanish, French, German, Italian, Mandarin Chines, Japanese, Russian, and Portuguese (Brazilian).
55+
* Even though Video Indexer supports Arabic (Modern Standard and Levantine), Hindi, and Korean, these languages are not supported in LID.
4956
* If the audio contains languages other than the supported list above, the result is unexpected.
5057
* If Video Indexer cannot identify the language with a high enough confidence (`>0.6`), the fallback language is English.
5158
* There is no current support for file with mixed languages audio. If the audio contains mixed languages, the result is unexpected.

articles/media-services/video-indexer/video-indexer-overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ manager: femila
99
ms.service: media-services
1010
ms.subservice: video-indexer
1111
ms.topic: article
12-
ms.date: 02/02/2020
12+
ms.date: 04/12/2020
1313
ms.author: juliako
1414
---
1515

@@ -66,9 +66,9 @@ The following list shows the insights you can retrieve from your videos using Vi
6666

6767
### Audio insights
6868

69-
* **Automatic language detection**: Automatically identifies the dominant spoken language. Supported languages include English, Spanish, French, German, Italian, Chinese (Simplified), Japanese, Russian, and Brazilian Portuguese. If the language can't be identified with confidence, Video Indexer assumes the spoken language is English. For more information, see [Language identification model](language-identification-model.md).
69+
* **Audio transcription**: Converts speech to text in 12 languages and allows extensions. Supported languages include English, Spanish, French, German, Italian, Mandarin Chines, Japanese, Arabic, Russian, Brazilian Portuguese, Hindi, and Korean.
70+
* **Automatic language detection**: Automatically identifies the dominant spoken language. Supported languages include English, Spanish, French, German, Italian, Mandarin Chines, Japanese, Russian, and Brazilian Portuguese. If the language can't be identified with confidence, Video Indexer assumes the spoken language is English. For more information, see [Language identification model](language-identification-model.md).
7071
* **Multi-language speech identification and transcription** (preview): Automatically identifies the spoken language in different segments from audio. It sends each segment of the media file to be transcribed and then combines the transcription back to one unified transcription. For more information, see [Automatically identify and transcribe multi-language content](multi-language-identification-transcription.md).
71-
* **Audio transcription**: Converts speech to text in 12 languages and allows extensions. Supported languages include English, Spanish, French, German, Italian, Chinese (Simplified), Japanese, Arabic, Russian, Brazilian Portuguese, Hindi, and Korean.
7272
* **Closed captioning**: Creates closed captioning in three formats: VTT, TTML, SRT.
7373
* **Two channel processing**: Auto detects separate transcript and merges to single timeline.
7474
* **Noise reduction**: Clears up telephony audio or noisy recordings (based on Skype filters).

articles/virtual-machines/workloads/sap/dbms_guide_sapase.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ ms.service: virtual-machines-linux
1414
ms.topic: article
1515
ms.tgt_pltfrm: vm-linux
1616
ms.workload: infrastructure
17-
ms.date: 02/21/2020
17+
ms.date: 04/13/2020
1818
ms.author: juergent
1919
ms.custom: H1Hack27Feb2017
2020

2121
---
2222
# SAP ASE Azure Virtual Machines DBMS deployment for SAP workload
2323

24-
In this document, covers several different areas to consider when deploying SAP ASE in Azure IaaS. As a precondition to this document, you should have read the document [Considerations for Azure Virtual Machines DBMS deployment for SAP workload](dbms_guide_general.md) and other guides in the [SAP workload on Azure documentation](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/get-started). This document covers SAP ASE running on Linux and on Windows Operating Systems. The minimum supported release on Azure is SAP ASE 16.0 Patch Level 2. It is recommended to deploy the latest version of SAP and the latest Patch Level. As a minimum SAP ASE 16.3 Patch Level 7 is recommended. The most recent version of SAP can be found in [Targeted ASE 16.0 Release Schedule and CR list Information](https://wiki.scn.sap.com/wiki/display/SYBASE/Targeted+ASE+16.0+Release+Schedule+and+CR+list+Information).
24+
In this document, covers several different areas to consider when deploying SAP ASE in Azure IaaS. As a precondition to this document, you should have read the document [Considerations for Azure Virtual Machines DBMS deployment for SAP workload](dbms_guide_general.md) and other guides in the [SAP workload on Azure documentation](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/get-started). This document covers SAP ASE running on Linux and on Windows Operating Systems. The minimum supported release on Azure is SAP ASE 16.0.02 (Release 16 Support Pack 2). It is recommended to deploy the latest version of SAP and the latest Patch Level. As a minimum SAP ASE 16.0.03.07 (Release 16 Support Pack 3 Patch Level 7) is recommended. The most recent version of SAP can be found in [Targeted ASE 16.0 Release Schedule and CR list Information](https://wiki.scn.sap.com/wiki/display/SYBASE/Targeted+ASE+16.0+Release+Schedule+and+CR+list+Information).
2525

2626
Additional information about release support with SAP applications or installation media location are found, besides in the SAP Product Availability Matrix in these locations:
2727

@@ -84,7 +84,7 @@ An example of a configuration for a small SAP ASE DB Server with a database size
8484
| --- | --- | --- | --- |
8585
| VM Type | E4s_v3 (4 vCPU/32 GB RAM) | E4s_v3 (4 vCPU/32 GB RAM) | --- |
8686
| Accelerated Networking | Enable | Enable | ---|
87-
| SAP ASE version | 16.3 PL 7 or higher | 16.3 PL 7 or higher | --- |
87+
| SAP ASE version | 16.0.03.07 or higher | 16.0.03.07 or higher | --- |
8888
| # of data devices | 4 | 4 | ---|
8989
| # of log devices | 1 | 1 | --- |
9090
| # of temp devices | 1 | 1 | more for SAP BW workload |
@@ -105,7 +105,7 @@ An example of a configuration for a medium SAP ASE DB Server with a database siz
105105
| --- | --- | --- | --- |
106106
| VM Type | E16s_v3 (16 vCPU/128 GB RAM) | E16s_v3 (16 vCPU/128 GB RAM) | --- |
107107
| Accelerated Networking | Enable | Enable | ---|
108-
| SAP ASE version | 16.3 PL 7 or higher | 16.3 PL 7 or higher | --- |
108+
| SAP ASE version | 16.0.03.07 or higher | 16.0.03.07 or higher | --- |
109109
| # of data devices | 8 | 8 | ---|
110110
| # of log devices | 1 | 1 | --- |
111111
| # of temp devices | 1 | 1 | more for SAP BW workload |
@@ -125,7 +125,7 @@ An example of a configuration for a small SAP ASE DB Server with a database size
125125
| --- | --- | --- | --- |
126126
| VM Type | E64s_v3 (64 vCPU/432 GB RAM) | E64s_v3 (64 vCPU/432 GB RAM) | --- |
127127
| Accelerated Networking | Enable | Enable | ---|
128-
| SAP ASE version | 16.3 PL 7 or higher | 16.3 PL 7 or higher | --- |
128+
| SAP ASE version | 16.0.03.07 or higher | 16.0.03.07 or higher | --- |
129129
| # of data devices | 16 | 16 | ---|
130130
| # of log devices | 1 | 1 | --- |
131131
| # of temp devices | 1 | 1 | more for SAP BW workload |
@@ -146,7 +146,7 @@ An example of a configuration for a small SAP ASE DB Server with a database size
146146
| --- | --- | --- | --- |
147147
| VM Type | M-Series (1.0 to 4.0 TB RAM) | M-Series (1.0 to 4.0 TB RAM) | --- |
148148
| Accelerated Networking | Enable | Enable | ---|
149-
| SAP ASE version | 16.3 PL 7 or higher | 16.3 PL 7 or higher | --- |
149+
| SAP ASE version | 16.0.03.07 or higher | 16.0.03.07 or higher | --- |
150150
| # of data devices | 32 | 32 | ---|
151151
| # of log devices | 1 | 1 | --- |
152152
| # of temp devices | 1 | 1 | more for SAP BW workload |
@@ -203,7 +203,7 @@ SAP Software provisioning Manager (SWPM) is giving an option to encrypt the data
203203
204204
## SAP ASE on Azure deployment checklist
205205

206-
- Deploy SAP ASE 16.3 PL7 or higher
206+
- Deploy SAP ASE 16.0.03.07 or higher
207207
- Update to latest version and patches of FaultManager and SAPHostAgent
208208
- Deploy on latest certified OS available such as Windows 2019, Suse 15.1 or Redhat 7.6 or higher
209209
- Use SAP Certified VMs – high memory Azure VM SKUs such as Es_v3 or for x-large systems M-Series VM SKUs are recommended
@@ -277,7 +277,7 @@ Further information about DBA Cockpit for SAP ASE can be found in the following
277277

278278

279279
## Useful links, notes & whitepapers for SAP ASE
280-
The starting page for [Sybase ASE 16.3 PL7 Documentation](https://help.sap.com/viewer/product/SAP_ASE/16.0.3.7/en-US) gives links to various documents of which the documents of:
280+
The starting page for [SAP ASE 16.0.03.07 Documentation](https://help.sap.com/viewer/product/SAP_ASE/16.0.3.7/en-US) gives links to various documents of which the documents of:
281281

282282
- SAP ASE Learning Journey - Administration & Monitoring
283283
- SAP ASE Learning Journey - Installation & Upgrade
@@ -303,11 +303,11 @@ Other helpful SAP support notes are:
303303
Other information is published on
304304

305305
- [SAP Applications on SAP Adaptive Server Enterprise](https://community.sap.com/topics/applications-on-ase)
306-
- [Sybase infocenter](http://infocenter.sybase.com/help/index.jsp)
306+
- [SAP ASE infocenter](http://infocenter.sybase.com/help/index.jsp)
307+
- [SAP ASE Always-on with 3rd DR Node Setup](https://techcommunity.microsoft.com/t5/running-sap-applications-on-the/installation-procedure-for-sybase-16-3-patch-level-3-always-on/ba-p/368199)
307308

308309
A Monthly newsletter is published through [SAP support note #2381575](https://launchpad.support.sap.com/#/notes/2381575)
309310

310-
[Sybase ASE Always-on with 3rd DR Node Setup](https://techcommunity.microsoft.com/t5/running-sap-applications-on-the/installation-procedure-for-sybase-16-3-patch-level-3-always-on/ba-p/368199)
311311

312312
## Next steps
313313
Check the article [SAP workloads on Azure: planning and deployment checklist](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/sap-deployment-checklist)

articles/virtual-machines/workloads/sap/get-started.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.service: virtual-machines-linux
1515
ms.topic: article
1616
ms.tgt_pltfrm: vm-linux
1717
ms.workload: infrastructure-services
18-
ms.date: 04/07/2020
18+
ms.date: 04/13/2020
1919
ms.author: juergent
2020
ms.custom: H1Hack27Feb2017
2121

@@ -109,6 +109,7 @@ For information on integration of Azure services into SAP components, see:
109109

110110

111111
## Change Log
112+
- 04/13/2020: Correct to exact SAP ASE release numbers in [SAP ASE Azure Virtual Machines DBMS deployment for SAP workload](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/dbms_guide_sapase)
112113
- 04/07/2020: Change in [Setting up Pacemaker on SLES in Azure](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/high-availability-guide-suse-pacemaker) to clarify cloud-netconfig-azure instructions
113114
- 04/06/2020: Changes in [SAP HANA scale-out with standby node on Azure VMs with Azure NetApp Files on SLES](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/sap-hana-scale-out-standby-netapp-files-suse) and in [SAP HANA scale-out with standby node on Azure VMs with Azure NetApp Files on RHEL](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/sap-hana-scale-out-standby-netapp-files-rhel) to remove references to NetApp [TR-4435](https://www.netapp.com/us/media/tr-4746.pdf) (replaced by [TR-4746](https://www.netapp.com/us/media/tr-4746.pdf))
114115
- 03/31/2020: Change in [High availability of SAP HANA on Azure VMs on SLES](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/sap-hana-high-availability) and [High availability of SAP HANA on Azure VMs on RHEL](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/sap-hana-high-availability-rhel) to add instructions how to specify stripe size when creating striped volumes
@@ -172,11 +173,6 @@ For information on integration of Azure services into SAP components, see:
172173
- 10/11/2019: Changes to Ultra disk storage configurations and introduction of ANF in [SAP HANA Azure virtual machine storage configurations](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/hana-vm-operations-storage)
173174
- 10/01/2019: Change in graphics of [Azure proximity placement groups for optimal network latency with SAP applications](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/sap-proximity-placement-scenarios) to get more clarity
174175
- 10/01/2019: Change in [SAP HANA infrastructure configurations and operations on Azure](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/hana-vm-operations) to correct statements around highly available NFS share for /hana/shared.
175-
- 09/28/2019: Change in [Setting up Pacemaker on Red Hat Enterprise Linux in Azure](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/high-availability-guide-rhel-pacemaker) to clarify SBD as a fencing mechanism is not supported on RHEL clusters
176-
- 09/17/2019: Change in NetWeaver Planning and Deployment Guide to unify terms around VM Extension for SAP
177-
- 08/22/2019: Changes in [Setting up Pacemaker on SUSE Linux Enterprise Server in Azure](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/high-availability-guide-suse-pacemaker) to update the URLs for custom role creation
178-
- 08/16/2019: Changes in [Setting up Pacemaker on Red Hat Enterprise Linux in Azure](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/high-availability-guide-rhel-pacemaker) to remind customers to update the actions in the custom role, if updating to the new version of the Azure fence agent
179-
- 08/15/2019: Changes in [SAP HANA Azure virtual machine storage configurations](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/hana-vm-operations-storage) to reflect General Availability of Ultra disk (formerly Ultra SSD)
180-
- 08/01/2019: Changes to [Setting up Pacemaker on SUSE Linux Enterprise Server in Azure](https://docs.microsoft.com/azure/virtual-machines/workloads/sap/high-availability-guide-suse-pacemaker) to integrate changes specifically for SLES 15
176+
181177

182178

0 commit comments

Comments
 (0)