org.elasticsearch.indices.recovery.RecoveryStatus Maven / Gradle / Ivy
/*
* 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.indices.recovery;
import org.apache.lucene.store.IndexOutput;
import org.elasticsearch.common.util.concurrent.ConcurrentCollections;
import org.elasticsearch.index.shard.ShardId;
import org.elasticsearch.index.shard.service.InternalIndexShard;
import org.elasticsearch.index.store.Store;
import java.io.IOException;
import java.util.Map.Entry;
import java.util.Set;
import java.util.concurrent.ConcurrentMap;
/**
*
*/
public class RecoveryStatus {
final ShardId shardId;
final long recoveryId;
final InternalIndexShard indexShard;
final RecoveryState recoveryState;
public RecoveryStatus(long recoveryId, InternalIndexShard indexShard) {
this.recoveryId = recoveryId;
this.indexShard = indexShard;
this.shardId = indexShard.shardId();
this.recoveryState = new RecoveryState(shardId);
recoveryState.getTimer().startTime(System.currentTimeMillis());
}
volatile Thread recoveryThread;
private volatile boolean canceled;
volatile boolean sentCanceledToSource;
private volatile ConcurrentMap openIndexOutputs = ConcurrentCollections.newConcurrentMap();
ConcurrentMap checksums = ConcurrentCollections.newConcurrentMap();
public RecoveryState recoveryState() {
return recoveryState;
}
public void stage(RecoveryState.Stage stage) {
recoveryState.setStage(stage);
}
public RecoveryState.Stage stage() {
return recoveryState.getStage();
}
public boolean isCanceled() {
return canceled;
}
public synchronized void cancel() {
canceled = true;
}
public IndexOutput getOpenIndexOutput(String key) {
final ConcurrentMap outputs = openIndexOutputs;
if (canceled || outputs == null) {
return null;
}
return outputs.get(key);
}
public synchronized Set> cancleAndClearOpenIndexInputs() {
cancel();
final ConcurrentMap outputs = openIndexOutputs;
openIndexOutputs = null;
if (outputs == null) {
return null;
}
Set> entrySet = outputs.entrySet();
return entrySet;
}
public IndexOutput removeOpenIndexOutputs(String name) {
final ConcurrentMap outputs = openIndexOutputs;
if (outputs == null) {
return null;
}
return outputs.remove(name);
}
public synchronized IndexOutput openAndPutIndexOutput(String key, String name, Store store) throws IOException {
if (isCanceled()) {
return null;
}
final ConcurrentMap outputs = openIndexOutputs;
IndexOutput indexOutput = store.createOutputRaw(name);
outputs.put(key, indexOutput);
return indexOutput;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy