Hi @이소영
Thanks for the question and using MS Q&A platform.
1.Azure AI Search does not allow multiple schemas in one index. However, you can add all necessary metadata fields (like title, owner) and use filters and facets to search by them.
2.In Azure AI Search, you need to create separate vector fields for embeddings with different dimensions (e.g., one for 512 dimensions and another for 1024). You cannot store mixed dimensions in a single field. Additionally, hybrid search can combine vector and keyword queries, improving result comprehensiveness. When defining your schema, optimizing for retrieval patterns will enhance performance and accuracy.
3.The Standard S1 plan gives you 160GB of storage and allows up to 50 indexes. If you need more indexes but less storage, your only option is upgrading to a higher tier like Standard S3.
To manage smaller storage and more indexes
Explore other pricing tiers like Basic (up to 15 indexes) or Standard S3 for higher limits.
Consolidate data into fewer indexes to stay within current limits.
Monitor usage and adjust the plan if storage is underutilized.
Service limits in Azure AI Search
4.To meet your service requirements, consider structuring your index to accommodate the different categories and metadata. Ensure that you define appropriate vector fields for your embedding models and utilize filtering and faceting capabilities effectively. Additionally, Note the limitations of your current service tier when planning your index design.
references:
Choose an approach for optimizing vector storage and processing.
Vector storage in Azure AI Search
Vector index size and staying under limits.
Vectors in Azure AI Search.
Please accept as "Yes" if the answer provided is useful, so that you can help others in the community looking for remediation for similar issues.