forked from opensearch-project/OpenSearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow excluding folder names when scanning for dangling indices (#34349)
ES is scanning for dangling indices on every cluster state update. For this, it lists the subfolders of the indices directory to determine which extra index directories exist on the node where there's no corresponding index in the cluster state. These are potential targets for dangling index import. On certain machine types, and with large number of indices, this subfolder listing can be horribly slow. This means that every cluster state update will be slowed down by potentially hundreds of milliseconds. One of the reasons for this poor performance is that Files.isDirectory() is a relatively expensive call on some OS and JDK versions. There is no need though to do all these isDirectory calls for folders which we know we are going to discard anyhow in the next step of the dangling indices logic. This commit allows adding an exclusion predicate to the availableIndexFolders methods which can dramatically speed up this method when scanning for dangling indices.
- Loading branch information
Showing
4 changed files
with
145 additions
and
7 deletions.
There are no files selected for viewing
94 changes: 94 additions & 0 deletions
94
benchmarks/src/main/java/org/elasticsearch/benchmark/fs/AvailableIndexFoldersBenchmark.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
/* | ||
* Licensed to Elasticsearch under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.elasticsearch.benchmark.fs; | ||
|
||
import org.elasticsearch.common.logging.LogConfigurator; | ||
import org.elasticsearch.common.settings.Settings; | ||
import org.elasticsearch.env.Environment; | ||
import org.elasticsearch.env.NodeEnvironment; | ||
import org.openjdk.jmh.annotations.Benchmark; | ||
import org.openjdk.jmh.annotations.BenchmarkMode; | ||
import org.openjdk.jmh.annotations.Fork; | ||
import org.openjdk.jmh.annotations.Measurement; | ||
import org.openjdk.jmh.annotations.Mode; | ||
import org.openjdk.jmh.annotations.OutputTimeUnit; | ||
import org.openjdk.jmh.annotations.Scope; | ||
import org.openjdk.jmh.annotations.Setup; | ||
import org.openjdk.jmh.annotations.State; | ||
import org.openjdk.jmh.annotations.Warmup; | ||
|
||
import java.io.IOException; | ||
import java.nio.file.Files; | ||
import java.nio.file.Path; | ||
import java.util.HashSet; | ||
import java.util.Set; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
@Warmup(iterations = 5, time = 1, timeUnit = TimeUnit.SECONDS) | ||
@Measurement(iterations = 5, time = 1, timeUnit = TimeUnit.SECONDS) | ||
@Fork(3) | ||
@BenchmarkMode(Mode.AverageTime) | ||
@OutputTimeUnit(TimeUnit.NANOSECONDS) | ||
@State(Scope.Benchmark) | ||
public class AvailableIndexFoldersBenchmark { | ||
|
||
private NodeEnvironment.NodePath nodePath; | ||
private NodeEnvironment nodeEnv; | ||
private Set<String> excludedDirs; | ||
|
||
@Setup | ||
public void setup() throws IOException { | ||
Path path = Files.createTempDirectory("test"); | ||
String[] paths = new String[] {path.toString()}; | ||
nodePath = new NodeEnvironment.NodePath(path); | ||
|
||
LogConfigurator.setNodeName("test"); | ||
Settings settings = Settings.builder() | ||
.put(Environment.PATH_HOME_SETTING.getKey(), path) | ||
.putList(Environment.PATH_DATA_SETTING.getKey(), paths).build(); | ||
nodeEnv = new NodeEnvironment(settings, new Environment(settings, null)); | ||
|
||
Files.createDirectories(nodePath.indicesPath); | ||
excludedDirs = new HashSet<>(); | ||
int numIndices = 5000; | ||
for (int i = 0; i < numIndices; i++) { | ||
String dirName = "dir" + i; | ||
Files.createDirectory(nodePath.indicesPath.resolve(dirName)); | ||
excludedDirs.add(dirName); | ||
} | ||
if (nodeEnv.availableIndexFoldersForPath(nodePath).size() != numIndices) { | ||
throw new IllegalStateException("bad size"); | ||
} | ||
if (nodeEnv.availableIndexFoldersForPath(nodePath, excludedDirs::contains).size() != 0) { | ||
throw new IllegalStateException("bad size"); | ||
} | ||
} | ||
|
||
|
||
@Benchmark | ||
public Set<String> availableIndexFolderNaive() throws IOException { | ||
return nodeEnv.availableIndexFoldersForPath(nodePath); | ||
} | ||
|
||
@Benchmark | ||
public Set<String> availableIndexFolderOptimized() throws IOException { | ||
return nodeEnv.availableIndexFoldersForPath(nodePath, excludedDirs::contains); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters