Skip to content

Commit c5c3960

Browse files
authored
Merge pull request #271430 from MicrosoftDocs/main
4/8 11:00 AM IST Publish
2 parents f636984 + de57ab4 commit c5c3960

File tree

7 files changed

+30
-12
lines changed

7 files changed

+30
-12
lines changed

articles/ai-services/openai/concepts/use-your-data.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.service: azure-ai-openai
88
ms.topic: quickstart
99
author: aahill
1010
ms.author: aahi
11-
ms.date: 02/26/2024
11+
ms.date: 04/08/2024
1212
recommendations: false
1313
ms.custom: references_regions
1414
---
@@ -58,13 +58,21 @@ There's an [upload limit](../quotas-limits.md), and there are some caveats about
5858

5959
## Supported data sources
6060

61-
You need to connect to a data source to upload your data. When you want to use your data to chat with an Azure OpenAI model, your data is chunked in a search index so that relevant data can be found based on user queries. For some data sources such as uploading files from your local machine (preview) or data contained in a blob storage account (preview), Azure AI Search is used.
61+
You need to connect to a data source to upload your data. When you want to use your data to chat with an Azure OpenAI model, your data is chunked in a search index so that relevant data can be found based on user queries.
62+
63+
The [Integrated Vector Database in Azure Cosmos DB for MongoDB](/azure/cosmos-db/mongodb/vcore/vector-search) natively supports integration with Azure OpenAI On Your Data.
64+
65+
For some data sources such as uploading files from your local machine (preview) or data contained in a blob storage account (preview), Azure AI Search is used.
66+
67+
>[!TIP]
68+
>If you use [Azure Cosmos DB](/azure/cosmos-db/introduction) (except for its vCore-based API for MongoDB), you may take advantage of the Azure AI Advantage offer, which provides the equivalent of up to $6,000 in Azure Cosmos DB throughput credits.
6269
6370
When you choose the following data sources, your data is ingested into an Azure AI Search index.
6471

6572
|Data source | Description |
6673
|---------|---------|
6774
| [Azure AI Search](/azure/search/search-what-is-azure-search) | Use an existing Azure AI Search index with Azure OpenAI On Your Data. |
75+
| [Azure Cosmos DB](/azure/cosmos-db/introduction) | Azure Cosmos DB's API for Postgres and vCore-based API for MongoDB have natively integrated vector indexing and do not require Azure AI Search; however, its other APIs do require Azure AI Search for vector indexing. Azure Cosmos DB will offer a natively integrated vector database by mid-2024. |
6876
|Upload files (preview) | Upload files from your local machine to be stored in an Azure Blob Storage database, and ingested into Azure AI Search. |
6977
|URL/Web address (preview) | Web content from the URLs is stored in Azure Blob Storage. |
7078
|Azure Blob Storage (preview) | Upload files from Azure Blob Storage to be ingested into an Azure AI Search index. |
@@ -141,7 +149,7 @@ If you want to implement additional value-based criteria for query execution, yo
141149

142150
### Limitations
143151
* Only Azure Cosmos DB for MongoDB vCore is supported.
144-
* The search type is limited to [Azure Cosmos DB for MongoDB vCore vector search](/azure/cosmos-db/mongodb/vcore/vector-search) with an Azure OpenAI embedding model.
152+
* The search type is limited to [Integrated Vector Database in Azure Cosmos DB for MongoDB vCore](/azure/cosmos-db/mongodb/vcore/vector-search) with an Azure OpenAI embedding model.
145153
* This implementation works best on unstructured and spatial data.
146154

147155
### Data preparation

articles/aks/azure-csi-disk-storage-provision.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ The following table includes parameters you can use to define a custom storage c
4949
|fsType | File System Type | `ext4`, `ext3`, `ext2`, `xfs`, `btrfs` for Linux, `ntfs` for Windows | No | `ext4` for Linux, `ntfs` for Windows|
5050
|cachingMode | [Azure Data Disk Host Cache Setting][disk-host-cache-setting] | `None`, `ReadOnly`, `ReadWrite` | No | `ReadOnly`|
5151
|resourceGroup | Specify the resource group for the Azure Disks | Existing resource group name | No | If empty, driver uses the same resource group name as current AKS cluster|
52-
|DiskIOPSReadWrite | [UltraSSD disk][ultra-ssd-disks] IOPS Capability (minimum: 2 IOPS/GiB) | 100~160000 | No | `500`|
53-
|DiskMBpsReadWrite | [UltraSSD disk][ultra-ssd-disks] Throughput Capability(minimum: 0.032/GiB) | 1~2000 | No | `100`|
52+
|DiskIOPSReadWrite | [UltraSSD disk][ultra-ssd-disks] or [Premium SSD v2][premiumv2_lrs_disks] IOPS Capability (minimum: 2 IOPS/GiB) | 100~160000 | No | `500`|
53+
|DiskMBpsReadWrite | [UltraSSD disk][ultra-ssd-disks] or [Premium SSD v2][premiumv2_lrs_disks] Throughput Capability(minimum: 0.032/GiB) | 1~2000 | No | `100`|
5454
|LogicalSectorSize | Logical sector size in bytes for ultra disk. Supported values are 512 ad 4096. 4096 is the default. | `512`, `4096` | No | `4096`|
5555
|tags | Azure Disk [tags][azure-tags] | Tag format: `key1=val1,key2=val2` | No | ""|
5656
|diskEncryptionSetID | ResourceId of the disk encryption set to use for [enabling encryption at rest][disk-encryption] | format: `/subscriptions/{subs-id}/resourceGroups/{rg-name}/providers/Microsoft.Compute/diskEncryptionSets/{diskEncryptionSet-name}` | No | ""|
@@ -410,6 +410,7 @@ kubectl delete -f azure-pvc.yaml
410410
[disk-host-cache-setting]: ../virtual-machines/windows/premium-storage-performance.md#disk-caching
411411
[use-ultra-disks]: use-ultra-disks.md
412412
[ultra-ssd-disks]: ../virtual-machines/linux/disks-ultra-ssd.md
413+
[premiumv2_lrs_disks]: ../virtual-machines/disks-types.md#premium-ssd-v2
413414
[azure-tags]: ../azure-resource-manager/management/tag-resources.md
414415
[disk-encryption]: ../virtual-machines/windows/disk-encryption.md
415416
[azure-disk-write-accelerator]: ../virtual-machines/windows/how-to-enable-write-accelerator.md

articles/machine-learning/prompt-flow/how-to-deploy-to-code.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,11 @@ identity:
153153
- resource_id: user_identity_ARM_id_place_holder
154154
```
155155

156-
Besides, you also need to specify the `Clicn ID` of the user-assigned identity under `environment_variables` the `deployment.yaml` as following. You can find the `Clicn ID` in the `Overview` of the managed identity in Azure portal.
156+
Besides, you also need to specify the `Client ID` of the user-assigned identity under `environment_variables` the `deployment.yaml` as following. You can find the `Client ID` in the `Overview` of the managed identity in Azure portal.
157157

158158
```yaml
159159
environment_variables:
160-
AZURE_CLIENT_ID: <cliend_id_of_your_user_assigned_identity>
160+
AZURE_CLIENT_ID: <client_id_of_your_user_assigned_identity>
161161
```
162162

163163
> [!IMPORTANT]

articles/mysql/flexible-server/release-notes/april-2024.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ All existing engine version server upgrades to 8.0.36 engine version.
1919
To check your engine version, run `SELECT VERSION();` command at the MySQL prompt
2020

2121
## Features
22-
- Support for Azure Defender for Azure DB for MySQL Flexible Server
23-
22+
### [Microsoft Defender for Cloud](https://learn.microsoft.com/azure/defender-for-cloud/defender-for-databases-introduction)
23+
- Introducing Defender for Cloud support to simplify security management with threat protection from anomalous database activities in Azure Database for MySQL flexible server instances.
24+
2425
## Improvement
2526
- Expose old_alter_table for 8.0.x.
2627

articles/mysql/flexible-server/whats-new.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@ This article summarizes new releases and features in Azure Database for MySQL fl
2424
> [!NOTE]
2525
> This article references the term slave, which Microsoft no longer uses. When the term is removed from the software, we'll remove it from this article.
2626
27+
## April 2024
28+
- **Microsoft Defender for Cloud supports Azure Database for MySQL flexible server (General Availability)**
29+
30+
We’re excited to announce the general availability of the Microsoft Defender for Cloud feature for Azure Database for MySQL flexible server in all service tiers. The Microsoft Defender Advanced Threat Protection feature simplifies security management of Azure Database for MySQL flexible server instances. It monitors the server for anomalous or suspicious databases activities to detect potential threats and provides security alerts for you to investigate and take appropriate action, allowing you to actively improve the security posture of your database without being a security expert. [Learn more](https://learn.microsoft.com/azure/defender-for-cloud/defender-for-databases-introduction)
31+
- **Known Issues**
32+
33+
While attempting to enable the Microsoft Defender for Cloud feature for an Azure Database for MySQL flexible server, you may encounter the following error: ‘The server <server_name> is not compatible with Advanced Threat Protection. Please contact Microsoft support to update the server to a supported version.’ This issue can occur on MySQL Flexible Servers that are still awaiting an internal update. It will be automatically resolved in the next internal update of your server. Alternatively, you can open a support ticket to expedite an immediate update.”
2734

2835
## March 2024
2936

articles/storage/blobs/secure-file-transfer-protocol-support.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ The following clients have compatible algorithm support with SFTP for Azure Blob
177177
- JSCH 0.1.54+
178178
- curl 7.85.0+
179179
- AIX<sup>1</sup>
180+
- MobaXterm v21.3
180181

181182
<sup>1</sup> Must set `AllowPKCS12KeystoreAutoOpen` option to `no`.
182183

articles/storage/files/geo-redundant-storage-for-large-file-shares.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Azure Files geo-redundancy for large file shares significantly impr
44
author: khdownie
55
ms.service: azure-file-storage
66
ms.topic: conceptual
7-
ms.date: 04/05/2024
7+
ms.date: 04/07/2024
88
ms.author: kendownie
99
ms.custom: references_regions
1010
---
@@ -56,8 +56,8 @@ Azure Files geo-redundancy for large file shares is generally available in the m
5656
| Australia Southeast | GA |
5757
| Brazil South | Preview |
5858
| Brazil Southeast | Preview |
59-
| Canada Central | Preview |
60-
| Canada East | Preview |
59+
| Canada Central | GA |
60+
| Canada East | GA |
6161
| Central India | Preview |
6262
| Central US | GA |
6363
| China East | GA |

0 commit comments

Comments
 (0)