diff --git a/_sources/usage.md.txt b/_sources/usage.md.txt index bac28fd..41c7dd9 100644 --- a/_sources/usage.md.txt +++ b/_sources/usage.md.txt @@ -348,8 +348,9 @@ have more than ~3 years of data, you will need to update this limit. Check current usage (from Management -> Dev Tools -> Console): -```http +```text GET /_cluster/health?pretty +{ ... "active_primary_shards": 932, "active_shards": 932, @@ -359,7 +360,7 @@ GET /_cluster/health?pretty Update the limit to 2k per example: -```http +```text PUT _cluster/settings { "persistent" : { diff --git a/usage.html b/usage.html index 28a4f53..6e21ed4 100644 --- a/usage.html +++ b/usage.html @@ -468,7 +468,8 @@ default to 1000. parsedmarc use a shard per analyzed day. If you have more than ~3 years of data, you will need to update this limit. Check current usage (from Management -> Dev Tools -> Console):
-GET /_cluster/health?pretty
+GET /_cluster/health?pretty
+{
...
"active_primary_shards": 932,
"active_shards": 932,
@@ -477,7 +478,7 @@ Check current usage (from Management -> Dev Tools -> Console):
Update the limit to 2k per example:
-PUT _cluster/settings
+PUT _cluster/settings
{
"persistent" : {
"cluster.max_shards_per_node" : 2000