Correcting some minor typos in comments

This commit is contained in:
Christoph Büscher 2017-12-07 16:39:23 +01:00
parent 5a53798f83
commit b83e14858a
5 changed files with 7 additions and 8 deletions

View File

@ -130,7 +130,7 @@ public class TransportMultiSearchAction extends HandledTransportAction<MultiSear
* of concurrent requests. At first glance, it appears that we should never poll from the queue and not obtain a request given * of concurrent requests. At first glance, it appears that we should never poll from the queue and not obtain a request given
* that we only poll here no more times than the number of requests. However, this is not the only consumer of this queue as * that we only poll here no more times than the number of requests. However, this is not the only consumer of this queue as
* earlier requests that have already completed will poll from the queue too and they could complete before later polls are * earlier requests that have already completed will poll from the queue too and they could complete before later polls are
* invoked here. Thus, it can be the case that we poll here and and the queue was empty. * invoked here. Thus, it can be the case that we poll here and the queue was empty.
*/ */
return; return;
} }

View File

@ -1268,7 +1268,7 @@ public class IndicesService extends AbstractLifecycleComponent
/** /**
* Returns a function which given an index name, returns a predicate which fields must match in order to be returned by get mappings, * Returns a function which given an index name, returns a predicate which fields must match in order to be returned by get mappings,
* get index, get field mappings and field capabilities API. Useful to filter the fields that such API return. * get index, get field mappings and field capabilities API. Useful to filter the fields that such API return.
* The predicate receives the the field name as input argument. In case multiple plugins register a field filter through * The predicate receives the field name as input argument. In case multiple plugins register a field filter through
* {@link org.elasticsearch.plugins.MapperPlugin#getFieldFilter()}, only fields that match all the registered filters will be * {@link org.elasticsearch.plugins.MapperPlugin#getFieldFilter()}, only fields that match all the registered filters will be
* returned by get mappings, get index, get field mappings and field capabilities API. * returned by get mappings, get index, get field mappings and field capabilities API.
*/ */

View File

@ -366,7 +366,7 @@ final class QueryAnalyzer {
// positives for percolator queries with range queries than term based queries. // positives for percolator queries with range queries than term based queries.
// The is because the way number fields are extracted from the document to be percolated. // The is because the way number fields are extracted from the document to be percolated.
// Per field a single range is extracted and if a percolator query has two or more range queries // Per field a single range is extracted and if a percolator query has two or more range queries
// on the same field than the the minimum should match can be higher than clauses in the CoveringQuery. // on the same field, then the minimum should match can be higher than clauses in the CoveringQuery.
// Therefore right now the minimum should match is incremented once per number field when processing // Therefore right now the minimum should match is incremented once per number field when processing
// the percolator query at index time. // the percolator query at index time.
if (seenRangeFields.add(t[0].range.fieldName)) { if (seenRangeFields.add(t[0].range.fieldName)) {

View File

@ -67,7 +67,6 @@ import org.elasticsearch.index.store.DirectoryService;
import org.elasticsearch.index.store.Store; import org.elasticsearch.index.store.Store;
import org.elasticsearch.indices.breaker.CircuitBreakerService; import org.elasticsearch.indices.breaker.CircuitBreakerService;
import org.elasticsearch.indices.breaker.HierarchyCircuitBreakerService; import org.elasticsearch.indices.breaker.HierarchyCircuitBreakerService;
import org.elasticsearch.indices.breaker.NoneCircuitBreakerService;
import org.elasticsearch.indices.recovery.PeerRecoveryTargetService; import org.elasticsearch.indices.recovery.PeerRecoveryTargetService;
import org.elasticsearch.indices.recovery.RecoveryFailedException; import org.elasticsearch.indices.recovery.RecoveryFailedException;
import org.elasticsearch.indices.recovery.RecoverySourceHandler; import org.elasticsearch.indices.recovery.RecoverySourceHandler;
@ -309,7 +308,7 @@ public abstract class IndexShardTestCase extends ESTestCase {
} }
/** /**
* Takes an existing shard, closes it and and starts a new initialing shard at the same location * Takes an existing shard, closes it and starts a new initialing shard at the same location
* *
* @param listeners new listerns to use for the newly created shard * @param listeners new listerns to use for the newly created shard
*/ */
@ -321,7 +320,7 @@ public abstract class IndexShardTestCase extends ESTestCase {
} }
/** /**
* Takes an existing shard, closes it and and starts a new initialing shard at the same location * Takes an existing shard, closes it and starts a new initialing shard at the same location
* *
* @param routing the shard routing to use for the newly created shard. * @param routing the shard routing to use for the newly created shard.
* @param listeners new listerns to use for the newly created shard * @param listeners new listerns to use for the newly created shard

View File

@ -72,7 +72,7 @@ public class LongGCDisruption extends SingleNodeDisruption {
assert isDisruptedNodeThread(currentThreadName) == false : assert isDisruptedNodeThread(currentThreadName) == false :
"current thread match pattern. thread name: " + currentThreadName + ", node: " + disruptedNode; "current thread match pattern. thread name: " + currentThreadName + ", node: " + disruptedNode;
// we spawn a background thread to protect against deadlock which can happen // we spawn a background thread to protect against deadlock which can happen
// if there are shared resources between caller thread and and suspended threads // if there are shared resources between caller thread and suspended threads
// see unsafeClasses to how to avoid that // see unsafeClasses to how to avoid that
final AtomicReference<Exception> suspendingError = new AtomicReference<>(); final AtomicReference<Exception> suspendingError = new AtomicReference<>();
final Thread suspendingThread = new Thread(new AbstractRunnable() { final Thread suspendingThread = new Thread(new AbstractRunnable() {