Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add index sizing guidelines #221

Merged
merged 2 commits into from
Nov 29, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions serverless/pages/serverless-differences.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,32 @@ This guide helps you understand what's different, what's available, and how to w

This fully managed approach means many traditional {es} infrastructure APIs and settings are not available to end users, as detailed in the following sections.

[discrete]
[[elasticsearch-differences-serverless-index-size]]
== Index size guidelines

Please note the following recommendations for sizing individual indices for optimal performance on {es-serverless}:
leemthompo marked this conversation as resolved.
Show resolved Hide resolved

|===
|Use case |Maximum index size |Project configuration

|Vector search
|150GB
|Vector optimized

|General search (non data-stream)
|300GB
|General purpose

|Other uses (non data-stream)
|600GB
|General purpose
|===

For large datasets that exceed the recommended maximum size for a single index, consider splitting your data across smaller indices and using an alias to search them collectively.

NOTE: These recommendations do not apply to indices using Better binary quantization (BBQ). Refer to {ref}/dense-vector.html#dense-vector-quantization[vector quantization] in the core {es} docs for more information.
leemthompo marked this conversation as resolved.
Show resolved Hide resolved

[discrete]
[[elasticsearch-differences-serverless-apis-availability]]
== API availability
Expand Down