If my index is growing further, is there a way to auto partition the indexElasticsearch index replication to new serverAutomatic alias creation on indexing request in elasticsearchReducing elasticsearch's index sizeEfficient way to search and sort data with elasticsearch as a datastoreElasticsearch and dynamic aliasesBulk read of all documents in an elasticsearch aliasElasticSearch overhead over Lucene + custom clustering solutionElasticSearch how to handle single field that may contain either a value or an objectHow to segregate Elasticsearch index and search path as much as possibleElastic rest high level api RolloverRequest
Is it rude to refer to janitors as 'floor people'?
Why limit to revolvers?
Does knowing a graph has a Hamiltonian Cycle make it easier to find the cycle?
Is this artwork (used in a video game) real?
Was all the fuel expended in each stage of a Saturn V launch?
Why does the Earth have a z-component at the start of the J2000 epoch?
Can a Resident Assistant Be Told to Ignore a Lawful Order?
Is there any way for an Adventurers League, 5th level Wizard, to gain heavy armor proficiency?
Doing research in academia and not liking competition
Why do candidates not quit if they no longer have a realistic chance to win in the 2020 US presidents election
What is the technical explanation of the note "A♭" in a F7 chord in the key of C?
Draw a line nicely around notes
I do not have power to all my breakers
What exactly is a Hadouken?
Is dividends exclusively a part of earnings?
Project Euler, problem # 9, Pythagorean triplet
Why run a service as a system user?
Are L-functions uniquely determined by their values at negative integers?
How to honestly answer questions from a girlfriend like "How did you find this place" without giving the impression I'm always talking about my exes?
Is this more than a packing puzzle?
Source of story about the Vilna Gaon and immigration policy
Why aren't globular clusters disk shaped
When to ask for constructive criticism?
Can a polymorphed creature understand languages spoken under the effect of Tongues?
If my index is growing further, is there a way to auto partition the index
Elasticsearch index replication to new serverAutomatic alias creation on indexing request in elasticsearchReducing elasticsearch's index sizeEfficient way to search and sort data with elasticsearch as a datastoreElasticsearch and dynamic aliasesBulk read of all documents in an elasticsearch aliasElasticSearch overhead over Lucene + custom clustering solutionElasticSearch how to handle single field that may contain either a value or an objectHow to segregate Elasticsearch index and search path as much as possibleElastic rest high level api RolloverRequest
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
In Elasticsearch, my index size has grown rapidly, thereby delaying the replication. Is there a way to auto partition the index in elasticsearch. I know a way to use create a new index with alias name shared programmatically. Wondering if the same can be handled at admin level.
For ex:
index_main has grown to an extent where the replication is causing a problem, I need to automatically create dynamic indexes say index_022019, index_032019 etc.
elasticsearch elasticsearch-aggregation
add a comment |
In Elasticsearch, my index size has grown rapidly, thereby delaying the replication. Is there a way to auto partition the index in elasticsearch. I know a way to use create a new index with alias name shared programmatically. Wondering if the same can be handled at admin level.
For ex:
index_main has grown to an extent where the replication is causing a problem, I need to automatically create dynamic indexes say index_022019, index_032019 etc.
elasticsearch elasticsearch-aggregation
Did you try using shards?
– Brijesh Shah
Mar 26 at 8:01
Could you elaborate the best way of sharding?
– Shakti Kumar
Mar 27 at 11:48
add a comment |
In Elasticsearch, my index size has grown rapidly, thereby delaying the replication. Is there a way to auto partition the index in elasticsearch. I know a way to use create a new index with alias name shared programmatically. Wondering if the same can be handled at admin level.
For ex:
index_main has grown to an extent where the replication is causing a problem, I need to automatically create dynamic indexes say index_022019, index_032019 etc.
elasticsearch elasticsearch-aggregation
In Elasticsearch, my index size has grown rapidly, thereby delaying the replication. Is there a way to auto partition the index in elasticsearch. I know a way to use create a new index with alias name shared programmatically. Wondering if the same can be handled at admin level.
For ex:
index_main has grown to an extent where the replication is causing a problem, I need to automatically create dynamic indexes say index_022019, index_032019 etc.
elasticsearch elasticsearch-aggregation
elasticsearch elasticsearch-aggregation
asked Mar 26 at 7:23
Shakti KumarShakti Kumar
195 bronze badges
195 bronze badges
Did you try using shards?
– Brijesh Shah
Mar 26 at 8:01
Could you elaborate the best way of sharding?
– Shakti Kumar
Mar 27 at 11:48
add a comment |
Did you try using shards?
– Brijesh Shah
Mar 26 at 8:01
Could you elaborate the best way of sharding?
– Shakti Kumar
Mar 27 at 11:48
Did you try using shards?
– Brijesh Shah
Mar 26 at 8:01
Did you try using shards?
– Brijesh Shah
Mar 26 at 8:01
Could you elaborate the best way of sharding?
– Shakti Kumar
Mar 27 at 11:48
Could you elaborate the best way of sharding?
– Shakti Kumar
Mar 27 at 11:48
add a comment |
1 Answer
1
active
oldest
votes
You can increase the number of shards to split your content and parallelize operations.
Here is the link to the official documentation to create shards.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55351733%2fif-my-index-is-growing-further-is-there-a-way-to-auto-partition-the-index%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can increase the number of shards to split your content and parallelize operations.
Here is the link to the official documentation to create shards.
add a comment |
You can increase the number of shards to split your content and parallelize operations.
Here is the link to the official documentation to create shards.
add a comment |
You can increase the number of shards to split your content and parallelize operations.
Here is the link to the official documentation to create shards.
You can increase the number of shards to split your content and parallelize operations.
Here is the link to the official documentation to create shards.
answered Mar 27 at 12:22
Brijesh ShahBrijesh Shah
1747 bronze badges
1747 bronze badges
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55351733%2fif-my-index-is-growing-further-is-there-a-way-to-auto-partition-the-index%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Did you try using shards?
– Brijesh Shah
Mar 26 at 8:01
Could you elaborate the best way of sharding?
– Shakti Kumar
Mar 27 at 11:48