I assume you mean query performance when you mention "great read
performance"

It depends on the queries. Several factors are to consider:

- data characteristics (number of fields, number of terms, number of docs,
immutable/mutable data, change rate,...)
- query types/complexities (simple term queries, boolean queries, filters,
caching, aggregations,...)
- query load (how many searches must be performed in a given time interval)

Regarding an index size as large as TB, I think it would be best to put a
logical ordering on it and split the index into many indices, e.g. into
timeseries indices or into user id based indices, and combine indices with
an index alias to a logical unit. Then sliding window techniques can be
used to focus the search only on indices which are relevant for expected
responses. This allows to control hot spots in your data, and it can save
enormous amounts of resources for replica shards.

Jörg



On Fri, Jul 18, 2014 at 6:51 PM, Steffen Otto <[email protected]
> wrote:

> Hi together,
>
> I need to size memory of a elasticsearch cluster. I expect an total index
> size of 5 terra byte.
>
> For example: If I would use 5 server with 1 terra byte harddrives,
>
> what should each server have for RAM sizes to get great read performance?
>
> Is there a rule of thumb for sizing server RAM based on index size?
>
> Best regards
> Steffen
>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "elasticsearch" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/elasticsearch/9581f499-bef6-4437-86f4-8620d517fb98%40googlegroups.com
> <https://groups.google.com/d/msgid/elasticsearch/9581f499-bef6-4437-86f4-8620d517fb98%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/CAKdsXoFKJz-fcvGmxx7%3DsUFaB27BREzWsydsCwQJfOiNSvG-gQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to