Skip to content

Commit d209910

Browse files
authored
Merge pull request #310 from HeidiSteen/heidist-rag
[azure search] SFI, create-index-no-data.png, cut subscription ID
2 parents cef0886 + d46bc23 commit d209910

File tree

6 files changed

+4
-132
lines changed

6 files changed

+4
-132
lines changed
-6.74 KB
Loading
-4 KB
Loading
11.4 KB
Loading

articles/search/search-get-started-rag.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,9 +290,9 @@ logger.addHandler(handler)
290290

291291
Rerun the query script. You should now get INFO and DEBUG statements in the output that provide more detail about the issue.
292292

293-
If you see output messages related to ManagedIdentityCredential and token acquisition failures, it could be that you have multiple tenants, and your Azure sign-in is using a tenant that doesn't have your search service. To get your tenant ID, search the Azure portal for "tenant properties".
293+
If you see output messages related to ManagedIdentityCredential and token acquisition failures, it could be that you have multiple tenants, and your Azure sign-in is using a tenant that doesn't have your search service. To get your tenant ID, search the Azure portal for "tenant properties" or run `az login tenant list`.
294294

295-
Run `az login --tenant <YOUR-TENANT-ID>` at a command prompt, and then rerun the script.
295+
Once you have your tenant ID, run `az login --tenant <YOUR-TENANT-ID>` at a command prompt, and then rerun the script.
296296

297297
## Clean up
298298

articles/search/search-howto-move-across-regions.md

Lines changed: 1 addition & 129 deletions
Original file line numberDiff line numberDiff line change
@@ -57,132 +57,4 @@ The following links can help you locate more information when completing the ste
5757
+ [Choose a tier](search-sku-tier.md)
5858
+ [Create a search service](search-create-service-portal.md)
5959
+ [Load search documents](search-what-is-data-import.md)
60-
+ [Enable logging](monitor-azure-cognitive-search.md)
61-
62-
63-
<!-- To move your Azure AI services account from one region to another, you will create an export template to move your subscription(s). After moving your subscription, you will need to move your data and recreate your service.
64-
65-
In this article, you'll learn how to:
66-
67-
> [!div class="checklist"]
68-
> * Export a template.
69-
> * Modify the template: adding the target region, search and storage account names.
70-
> * Deploy the template to create the new search and storage accounts.
71-
> * Verify your service status in the new region
72-
> * Clean up resources in the source region.
73-
74-
## Prerequisites
75-
76-
- Ensure that the services and features that your account uses are supported in the target region.
77-
78-
- For preview features, ensure that your subscription is allowlisted for the target region. For more information about preview features, see [knowledge stores](./knowledge-store-concept-intro.md), [incremental enrichment](./cognitive-search-incremental-indexing-conceptual.md), and [private endpoint](./service-create-private-endpoint.md).
79-
80-
## Assessment and planning
81-
82-
When you move your search service to the new region, you will need to [move your data to the new storage service](../storage/common/storage-account-move.md?tabs=azure-portal#configure-the-new-storage-account) and then rebuild your indexes, skillsets and knowledge stores. You should record current settings and copy json files to make the rebuilding of your service easier and faster.
83-
84-
## Moving your search service's resources
85-
86-
To start you will export and then modify a Resource Manager template.
87-
88-
### Export a template
89-
90-
1. Sign in to the [Azure portal](https://portal.azure.com).
91-
92-
2. Go to your Resource Group page.
93-
94-
> [!div class="mx-imgBorder"]
95-
> ![Resource Group page example](./media/search-move-resource/export-template-sample.png)
96-
97-
3. Select **All resources**.
98-
99-
3. In the left hand navigation menu select **Export template**.
100-
101-
4. Choose **Download** in the **Export template** page.
102-
103-
5. Locate the .zip file that you downloaded from the portal, and unzip that file to a folder of your choice.
104-
105-
The zip file contains the .json files that comprise the template and scripts to deploy the template.
106-
107-
### Modify the template
108-
109-
You will modify the template by changing the search and storage account names and regions. The names must follow the rules for each service and region naming conventions.
110-
111-
To obtain region location codes, see [Azure Locations](https://azure.microsoft.com/global-infrastructure/locations/). The code for a region is the region name with no spaces, **Central US** = **centralus**.
112-
113-
1. In the Azure portal, select **Create a resource**.
114-
115-
2. In **Search the Marketplace**, type **template deployment**, and then press **ENTER**.
116-
117-
3. Select **Template deployment**.
118-
119-
4. Select **Create**.
120-
121-
5. Select **Build your own template in the editor**.
122-
123-
6. Select **Load file**, and then follow the instructions to load the **template.json** file that you downloaded and unzipped in the previous section.
124-
125-
7. In the **template.json** file, name the target search and storage accounts by setting the default value of the search and storage account names.
126-
127-
8. Edit the **location** property in the **template.json** file to the target region for both your search and storage services. This example sets the target region to `centralus`.
128-
129-
```json
130-
},
131-
"variables": {},
132-
"resources": [
133-
{
134-
"type": "Microsoft.Search/searchServices",
135-
"apiVersion": "2020-03-13",
136-
"name": "[parameters('searchServices_target_region_search_name')]",
137-
"location": "centralus",
138-
"sku": {
139-
"name": "standard"
140-
},
141-
"properties": {
142-
"replicaCount": 1,
143-
"partitionCount": 1,
144-
"hostingMode": "Default"
145-
}
146-
},
147-
{
148-
"type": "Microsoft.Storage/storageAccounts",
149-
"apiVersion": "2019-06-01",
150-
"name": "[parameters('storageAccounts_tagetstorageregion_name')]",
151-
"location": "centralus",
152-
"sku": {
153-
"name": "Standard_RAGRS",
154-
"tier": "Standard"
155-
},
156-
```
157-
158-
### Deploy the template
159-
160-
1. Save the **template.json** file.
161-
162-
2. Enter or select the property values:
163-
164-
- **Subscription**: Select an Azure subscription.
165-
166-
- **Resource group**: Select **Create new** and give the resource group a name.
167-
168-
- **Location**: Select an Azure location.
169-
170-
3. Click the **I agree to the terms and conditions stated above** checkbox, and then click the **Select Purchase** button.
171-
172-
## Verifying your services' status in new region
173-
174-
To verify the move, open the new resource group and your services will be listed with the new region.
175-
176-
To move your data from your source region to the target region, please see this article's guidelines for [moving your data to the new storage account](../storage/common/storage-account-move.md?tabs=azure-portal#move-data-to-the-new-storage-account).
177-
178-
## Clean up resources in your original region
179-
180-
To commit the changes and complete the move of your service account, delete the source service account.
181-
182-
## Next steps
183-
184-
[Create an index](./search-get-started-portal.md)
185-
186-
[Create a skillset](./cognitive-search-quickstart-blob.md)
187-
188-
[Create a knowledge store](./knowledge-store-create-portal.md) -->
60+
+ [Enable logging](monitor-azure-cognitive-search.md)

articles/search/search-sku-tier.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ In a few instances, the tier you choose determines the availability of [premium
2727
Billing rates are shown in the portal's **Select Pricing Tier** page. You can check the [pricing page](https://azure.microsoft.com/pricing/details/search/) for regional rates and review [Plan and manage costs](search-sku-manage-costs.md) to learn more about the billing model.
2828

2929
> [!NOTE]
30-
> Search services created after April 3, 2024 have larger partitions and higher vector quotas at almost every tier. For more information, see [service limits](search-limits-quotas-capacity.md#after-april-3-2024).
30+
> Search services created after April 3, 2024 have larger partitions and higher vector quotas at almost every tier. For more information, see [service limits](search-limits-quotas-capacity.md#service-limits).
3131
3232
## Tier descriptions
3333

0 commit comments

Comments
 (0)