An Azure search service with built-in artificial intelligence capabilities that enrich information to help identify and explore relevant content at scale.
- There is no published or committed timeline in the documentation for when hierarchical facets will reach GA. The feature is currently documented as a preview capability exposed via the
Search Documents (2025-03-01-preview)API version and is listed under “Facet hierarchies, aggregations, and facet filters (preview).” GA and retirement announcements are communicated via the Azure AI Search “What’s new” and “Service Updates” pages, not as specific dates in the feature docs. - Implications of using the preview feature in production:
- Preview contractual terms and support:
- Preview features are provided under separate Supplemental Terms of Use and are not covered by a service level agreement.
- Preview features are not meant for production use and are not supported by Microsoft Support for production scenarios; support is best-effort and focused on feedback.
- Functionality can be limited or restricted and may not be available in all regions.
- Stability and breaking changes:
- Preview features might undergo breaking changes if redesign is required.
- Some preview features may never ship as GA.
- API-version dependency:
- Hierarchical facets, facet filters, and facet aggregations are only available through preview data-plane APIs (currently
2025-03-01-previewfor search). Preview API versions are cumulative and roll up to the next preview; using them in production couples the application to a non-stable API surface.
- Hierarchical facets, facet filters, and facet aggregations are only available through preview data-plane APIs (currently
- General performance considerations:
- The documentation does not call out specific performance penalties for hierarchical facets, but as with any preview feature, behavior and performance characteristics may evolve across preview versions.
- Preview contractual terms and support:
- Likelihood of query/response changes when moving from preview to GA:
- The documentation explicitly states that preview features might undergo breaking changes and that code written against preview APIs should be prepared for upgrades to newer API versions.
- An “Upgrade REST APIs” guide is maintained specifically to help migrate from one API version to another, which implies that request/response shapes, parameters, or behavior can change between preview and later versions.
- Because hierarchical facets are only documented on preview APIs, both the query structure (facet parameters, new query options) and response format (facet structures, aggregations, filters) should be treated as subject to change until the feature is GA.
Recommended planning approach based on the docs:
- Use the latest preview search API version (currently
Search Documents (2025-03-01-preview)) to access hierarchical facets and related capabilities. - Architect the application so that facet query construction and response parsing are isolated behind an internal abstraction, making it easier to adapt to breaking changes in preview or GA.
- Track the Azure AI Search “What’s new” page and Service Updates for GA or behavior-change announcements, and plan to follow the “Upgrade REST APIs” guidance when moving from preview to GA.
- Avoid hard production dependencies on preview behavior where possible, or plan explicit test and migration windows when new preview or GA versions are released.
References: