Create an Azure AI Search Solution (Part 2)
Manage Capacity
You must first build an
Azure AI Search resource in your Azure subscription before you can develop an
Azure AI Search solution. You might additionally require Azure resources for
data storage and other application services, depending on the particular solution
you want to develop.
Service Tiers and Capacity
Management
When establishing an
Azure AI Search resource, it is necessary to choose a pricing tier. The tier
you choose dictates the capacity restrictions of your search service, the
configuration options that are accessible to you, and the expense of the
service. The available pricing tiers are:
- Free (F)-
Use this tier to explore the service or try the tutorials in the product
documentation.
- Basic (B)-
Use this tier for small-scale search solutions that include a maximum of 15
indexes and 2 GB of index data.
- Standard (S)-
Use this tier for enterprise-scale solutions. There are multiple variants of
this tier, including S, S2, and S3; which offer increasing capacity in terms of
indexes and storage, and S3HD, which is optimized for fast read performance on
smaller numbers of indexes.
- Storage Optimized (L)-
Use a storage optimized tier (L1 or L2) when you need to create large indexes,
at the cost of higher query latency.
Replicas and Partitions
Based on the pricing
level you choose, you can enhance your solution for scalability and
availability by establishing replicas and partitions.
- Replicas are instances of the search service - you can think of them as nodes in a cluster. Increasing the number of replicas can help ensure there is sufficient capacity to service multiple concurrent query requests while managing ongoing indexing operations.
- Partitions are used to divide an index into multiple storage locations, enabling you to split I/O operations such as querying or rebuilding an index.
The number of search
units utilized by your solution is dictated by the arrangement of replicas and
partitions you set up. In straightforward terms, the total count of search
units equals the number of replicas multiplied by the number of partitions (R x
P = SU).
Conclusion
We have successfully
learnt about capacity management.
Comments
Post a Comment