Skip to content

Commit 7150959

Browse files
authored
Merge pull request #106012 from HeidiSteen/heidist-master
Standardized next steps and resets
2 parents 849a0fe + 73b7412 commit 7150959

6 files changed

+50
-30
lines changed

articles/search/cognitive-search-tutorial-blob-dotnet.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -925,11 +925,11 @@ Repeat for additional fields: content, languageCode, keyPhrases, and organizatio
925925
926926
## Reset and rerun
927927
928-
In the early experimental stages of development, the most practical approach for design iterations is to delete the objects from Azure Cognitive Search and allow your code to rebuild them. Resource names are unique. Deleting an object lets you recreate it using the same name.
928+
In the early experimental stages of development, the most practical approach for design iteration is to delete the objects from Azure Cognitive Search and allow your code to rebuild them. Resource names are unique. Deleting an object lets you recreate it using the same name.
929929
930-
This tutorial took care of checking for existing indexers and indexes and deleting them if they already existed so that you can rerun your code.
930+
The sample code for this tutorial checks for existing objects and deletes them so that you can rerun your code.
931931
932-
You can also use the portal to delete indexes, indexers, and skillsets.
932+
You can also use the portal to delete indexes, indexers, data sources, and skillsets.
933933
934934
## Takeaways
935935
@@ -947,7 +947,7 @@ You can find and manage resources in the portal, using the All resources or Reso
947947
948948
## Next steps
949949
950-
Customize or extend the pipeline with custom skills. Creating a custom skill and adding it to a skillset allows you to onboard text or image analysis that you write yourself.
950+
Now that you're familiar with all of the objects in an AI enrichment pipeline, let's take a closer look at skillset definitions and individual skills.
951951
952952
> [!div class="nextstepaction"]
953-
> [Example: Creating a custom skill for AI enrichment](cognitive-search-create-custom-skill-example.md)
953+
> [How to create a skillset](cognitive-search-defining-skillset.md)

articles/search/cognitive-search-tutorial-blob-python.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -508,19 +508,13 @@ You can use GET or POST, depending on query string complexity and length. For mo
508508

509509
## Reset and rerun
510510

511-
In the early stages of development, it's practical to delete objects from Azure Cognitive Search and allow your code to rebuild them. Resource names are unique. Deleting an object lets you recreate it using the same name.
511+
In the early experimental stages of development, the most practical approach for design iteration is to delete the objects from Azure Cognitive Search and allow your code to rebuild them. Resource names are unique. Deleting an object lets you recreate it using the same name.
512512

513-
To re-index your documents with the new definitions:
514-
515-
1. Delete the indexer, index, and skillset.
516-
2. Modify objects definitions.
517-
3. Recreate objects on your service. Recreating the indexer runs the pipeline.
518-
519-
You can use the portal to delete indexes, indexers, and skillsets. When you delete the indexer, you can optionally, selectively delete the index, skillset, and data source at the same time.
513+
You can use the portal to delete indexes, indexers, data sources, and skillsets. When you delete the indexer, you can optionally, selectively delete the index, skillset, and data source at the same time.
520514

521515
![Delete search objects](./media/cognitive-search-tutorial-blob-python/py-delete-indexer-delete-all.png "Delete search objects in the portal")
522516

523-
You can also delete them using a script. The following script will delete the skillset we created. You can easily modify the request to delete the index, indexer, and data source.
517+
You can also delete them using a script. The following script shows how to delete a skillset.
524518

525519
```python
526520
# delete the skillset
@@ -547,7 +541,7 @@ You can find and manage resources in the portal, using the All resources or Reso
547541

548542
## Next steps
549543

550-
Customize or extend the pipeline with custom skills. Creating a custom skill and adding it to a skillset allows you to onboard text or image analysis that you write yourself.
544+
Now that you're familiar with all of the objects in an AI enrichment pipeline, let's take a closer look at skillset definitions and individual skills.
551545

552546
> [!div class="nextstepaction"]
553-
> [Example: Creating a custom skill for AI enrichment](cognitive-search-create-custom-skill-example.md)
547+
> [How to create a skillset](cognitive-search-defining-skillset.md)

articles/search/cognitive-search-tutorial-blob.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -488,15 +488,13 @@ These queries illustrate a few of the ways you can work with query syntax and fi
488488

489489
## Reset and rerun
490490

491-
In the early stages of development, it's practical to delete objects from Azure Cognitive Search and allow your code to rebuild them. Resource names are unique. Deleting an object lets you recreate it using the same name.
491+
In the early experimental stages of development, the most practical approach for design iteration is to delete the objects from Azure Cognitive Search and allow your code to rebuild them. Resource names are unique. Deleting an object lets you recreate it using the same name.
492492

493-
To re-index your documents with the new definitions:
493+
You can use the portal to delete indexes, indexers, data sources, and skillsets. When you delete the indexer, you can optionally, selectively delete the index, skillset, and data source at the same time.
494494

495-
1. Delete the indexer, index, and skillset.
496-
2. Modify objects definitions.
497-
3. Recreate objects on your service. Recreating the indexer runs the pipeline.
495+
![Delete search objects](./media/cognitive-search-tutorial-blob-python/py-delete-indexer-delete-all.png "Delete search objects in the portal")
498496

499-
You can use the portal to delete indexes, indexers, and skillsets, or use **DELETE** and provide URLs to each object. The following command deletes an indexer.
497+
Or use **DELETE** and provide URLs to each object. The following command deletes an indexer.
500498

501499
```http
502500
DELETE https://[YOUR-SERVICE-NAME].search.windows.net/indexers/cog-search-demo-idxr?api-version=2019-05-06
@@ -520,7 +518,7 @@ You can find and manage resources in the portal, using the All resources or Reso
520518

521519
## Next steps
522520

523-
Customize or extend the pipeline with custom skills. Creating a custom skill and adding it to a skillset allows you to onboard text or image analysis that you write yourself.
521+
Now that you're familiar with all of the objects in an AI enrichment pipeline, let's take a closer look at skillset definitions and individual skills.
524522

525523
> [!div class="nextstepaction"]
526-
> [Example: Creating a custom skill for AI enrichment](cognitive-search-create-custom-skill-example.md)
524+
> [How to create a skillset](cognitive-search-defining-skillset.md)

articles/search/search-indexer-tutorial.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,14 @@ An indexer object is platform-agnostic, where configuration, scheduling, and in
227227
}
228228
```
229229

230+
## Reset and rerun
231+
232+
In the early experimental stages of development, the most practical approach for design iteration is to delete the objects from Azure Cognitive Search and allow your code to rebuild them. Resource names are unique. Deleting an object lets you recreate it using the same name.
233+
234+
The sample code for this tutorial checks for existing objects and deletes them so that you can rerun your code.
235+
236+
You can also use the portal to delete indexes, indexers, and data sources.
237+
230238
## Clean up resources
231239

232240
When you're working in your own subscription, at the end of a project, it's a good idea to remove the resources that you no longer need. Resources left running can cost you money. You can delete resources individually or delete the resource group to delete the entire set of resources.
@@ -235,7 +243,7 @@ You can find and manage resources in the portal, using the All resources or Reso
235243

236244
## Next steps
237245

238-
In Azure Cognitive Search, indexers are available for multiple Azure data sources. As a next step, explore the indexer for Azure Blob storage.
246+
Now that you're familiar with the basics of SQL Database indexing, let's take a closer look at indexer configuration.
239247

240248
> [!div class="nextstepaction"]
241-
> [Indexing Documents in Azure Blob Storage](search-howto-indexing-azure-blob-storage.md)
249+
> [Configure an Azure SQL database indexer](search-howto-connecting-azure-sql-database-to-azure-search-using-indexers.md)

articles/search/search-semi-structured-data.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,18 @@ If you'd like to experiment and try a few more queries yourself, feel free to do
281281

282282
The `$filter` parameter only works with metadata that were marked filterable at the creation of your index.
283283

284+
## Reset and rerun
285+
286+
In the early experimental stages of development, the most practical approach for design iteration is to delete the objects from Azure Cognitive Search and allow your code to rebuild them. Resource names are unique. Deleting an object lets you recreate it using the same name.
287+
288+
You can use the portal to delete indexes, indexers, and data sources. Or use **DELETE** and provide URLs to each object. The following command deletes an indexer.
289+
290+
```http
291+
DELETE https://[YOUR-SERVICE-NAME].search.windows.net/indexers/clinical-trials-json-indexer?api-version=2019-05-06
292+
```
293+
294+
Status code 204 is returned on successful deletion.
295+
284296
## Clean up resources
285297

286298
When you're working in your own subscription, at the end of a project, it's a good idea to remove the resources that you no longer need. Resources left running can cost you money. You can delete resources individually or delete the resource group to delete the entire set of resources.
@@ -289,7 +301,7 @@ You can find and manage resources in the portal, using the All resources or Reso
289301

290302
## Next steps
291303

292-
There are several approaches and multiple options for indexing JSON blobs. As a next step, review and test the various options to see what works best for your scenario.
304+
Now that you're familiar with the basics of Azure Blob indexing, let's take a closer look at indexer configuration.
293305

294306
> [!div class="nextstepaction"]
295-
> [How to index JSON blobs using Azure Cognitive Search Blob indexer](search-howto-index-json-blobs.md)
307+
> [Configure an Azure Blob storage indexer](search-howto-indexing-azure-blob-storage.md)

articles/search/tutorial-multiple-data-sources.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,14 @@ In Azure portal, open the search service **Overview** page, and find the **hotel
335335

336336
Click on the hotel-rooms-sample index in the list. You will see a Search Explorer interface for the index. Enter a query for a term like "Luxury". You should see at least one document in the results, and this document should show a list of room objects in its rooms array.
337337

338+
## Reset and rerun
339+
340+
In the early experimental stages of development, the most practical approach for design iteration is to delete the objects from Azure Cognitive Search and allow your code to rebuild them. Resource names are unique. Deleting an object lets you recreate it using the same name.
341+
342+
The sample code for this tutorial checks for existing objects and deletes them so that you can rerun your code.
343+
344+
You can also use the portal to delete indexes, indexers, and data sources.
345+
338346
## Clean up resources
339347

340348
When you're working in your own subscription, at the end of a project, it's a good idea to remove the resources that you no longer need. Resources left running can cost you money. You can delete resources individually or delete the resource group to delete the entire set of resources.
@@ -343,7 +351,7 @@ You can find and manage resources in the portal, using the All resources or Reso
343351

344352
## Next steps
345353

346-
There are several approaches and multiple options for indexing JSON blobs. If your source data includes JSON content, you can review these options to see what works best for your scenario.
354+
Now that you're familiar with the concept of ingesting data from multiple sources, let's take a closer look at indexer configuration, starting with Cosmos DB.
347355

348356
> [!div class="nextstepaction"]
349-
> [How to index JSON blobs using Azure Cognitive Search Blob indexer](search-howto-index-json-blobs.md)
357+
> [Configure an Azure Cosmos DB indexer](search-howto-index-cosmosdb.md)

0 commit comments

Comments
 (0)