Skip to content

Commit 7892a0e

Browse files
committed
Edits
1 parent f4424ec commit 7892a0e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/search/search-how-to-create-search-index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ Index creation is largely a schema definition exercise. Before creating one, you
2626

2727
+ A clear idea of which fields you want to make searchable, retrievable, filterable, facetable, and sortable in your index.
2828

29-
The [field attribute assignments](search-what-is-an-index.md#index-attributes) will determine its physical storage structure on the search service. During design and development, start with sample data so that you can drop and rebuild the index easily as you finalize field attribution.
29+
The [field attribute assignments](search-what-is-an-index.md#index-attributes) will determine both search behaviors, and the physical representation of your index on the search service. During design and development, start with sample data so that you can drop and rebuild the index easily as you finalize field attribution.
3030

31-
+ A source field that uniquely identifies each row, record, or item in the source data. If you're indexing from Blob Storage, the storage path is often used as the document key.
31+
+ A source field that uniquely identifies each row, record, or item in the source data. For example, if you're indexing from Blob Storage, the storage path is often used as the document key.
3232

33-
Every index requires one field that serves as the *document key* (sometimes referred to as the "document ID"), and this key is mapped to a source field containing a unique identifier. The ability to uniquely identify specific search documents is required for retrieving a specific document in the search index, and for selective data processing by pulling the right one from source data.
33+
Every index requires one field that serves as the *document key* (sometimes referred to as the "document ID"), and this key is mapped to a source field containing a unique identifier. The ability to uniquely identify specific search documents is required for retrieving a specific document in the search index, and for selective data processing at the per-document level.
3434

3535
+ Index location. Moving an existing index to a different search service is not supported out-of-the-box. Revisit application requirements and make sure the existing search service, its capacity and location, are sufficient for your needs.
3636

@@ -42,8 +42,8 @@ Finally, all service tiers have [index limits](search-limits-quotas-capacity.md#
4242

4343
To minimize churn in the design process, the following table describes which elements are fixed and flexible in the schema. Changing a fixed element requires an index rebuild, whereas flexible elements can be changed at any time without impacting the physical implementation.
4444

45-
| Element | Allowed update |
46-
|---------|----------------|
45+
| Element | Can be updated? |
46+
|---------|-----------------|
4747
| Name | No |
4848
| Key | No |
4949
| Field names and types | No |
@@ -66,9 +66,9 @@ Use this checklist to help drive the design decisions for your search index.
6666

6767
1. Review [supported data types](/rest/api/searchservice/supported-data-types). The data type will impact how the field is used. For example, numeric content is filterable but not full text searchable.
6868

69-
1. Identify one field in the data source that contains unique values, allowing it to function as the key field in your index.
69+
1. Identify one field in the source data that contains unique values, allowing it to function as the key field in your index.
7070

71-
1. Identify the fields in your data source that can contribute searchable content in the index. Searchable content are short or long strings that are queried using the full text search engine. If the content is verbose (small phrases or bigger chunks), experiment with different analyzers to see how the text is tokenized.
71+
1. Identify the fields in your data source that will contribute searchable content in the index. Searchable content includes short or long strings that are queried using the full text search engine. If the content is verbose (small phrases or bigger chunks), experiment with different analyzers to see how the text is tokenized.
7272

7373
1. Identify which source fields can be used as filters. Numeric content and short text fields, particularly those with repeating values, are good choices. When working with filters, remember:
7474

0 commit comments

Comments
 (0)