SOLR-11988: Fix exists() method in EphemeralDirectoryFactory/MockDirectoryFactory to prevent false positives

This commit is contained in:
Chris Hostetter 2018-02-16 11:28:09 -07:00
parent 32f3570f08
commit ee51b658ec
4 changed files with 125 additions and 10 deletions

View File

@ -210,6 +210,8 @@ Bug Fixes
* SOLR-11739: Fix race condition that made Solr accept duplicate async IDs in collection API operations (Tomás Fernánadez Löbbe)
* SOLR-11988: Fix exists() method in EphemeralDirectoryFactory/MockDirectoryFactory to prevent false positives (hossman)
Optimizations
----------------------

View File

@ -109,9 +109,14 @@ public abstract class DirectoryFactory implements NamedListInitializedPlugin,
protected abstract LockFactory createLockFactory(String rawLockType) throws IOException;
/**
* Returns true if a Directory exists for a given path.
* Returns true if a Directory exists for a given path in the underlying (stable) storage <em>and</em>
* contains at least one file.
* Note that the existence of a {@link Directory} <em>Object</em> as returned by a previous call to the
* {@link #get} method (on the specified <code>path</code>) is not enough to cause this method to return
* true. Some prior user of that Directory must have written &amp; synced at least one file to that
* Directory (and at least one file must still exist)
*
* @throws IOException If there is a low-level I/O error.
*
*/
public abstract boolean exists(String path) throws IOException;

View File

@ -33,16 +33,18 @@ public abstract class EphemeralDirectoryFactory extends CachingDirectoryFactory
public boolean exists(String path) throws IOException {
String fullPath = normalize(path);
synchronized (this) {
CacheValue cacheValue = byPathCache.get(fullPath);
Directory directory = null;
if (cacheValue != null) {
directory = cacheValue.directory;
}
if (directory == null) {
final CacheValue cacheValue = byPathCache.get(fullPath);
if (null == cacheValue) {
return false;
} else {
return true;
}
final Directory directory = cacheValue.directory;
if (null == directory) {
return false;
}
if (0 < directory.listAll().length) {
return true;
}
return false;
}
}

View File

@ -0,0 +1,106 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF 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.apache.solr.core;
import org.apache.lucene.store.Directory;
import org.apache.lucene.store.IndexOutput;
import org.apache.lucene.store.IOContext;
import org.apache.solr.common.util.NamedList;
import org.apache.solr.SolrTestCaseJ4;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
/**
* Test some expected equivilencies of all DirectoryFactory implementations.
* <p>
* TODO: test more methods besides exists(String)
* </p>
*/
public class TestDirectoryFactory extends SolrTestCaseJ4 {
// TODO: what do we need to setup to be able to test HdfsDirectoryFactory?
public static final List<Class<? extends DirectoryFactory>> ALL_CLASSES
= Arrays.asList(MMapDirectoryFactory.class,
MockDirectoryFactory.class,
MockFSDirectoryFactory.class,
NRTCachingDirectoryFactory.class,
NIOFSDirectoryFactory.class,
RAMDirectoryFactory.class,
SimpleFSDirectoryFactory.class,
StandardDirectoryFactory.class);
/* Test that MockDirectoryFactory's exist method behaves consistent w/other impls */
public void testExistsEquivilence() throws Exception {
// TODO: ideally we'd init all of these using DirectoryFactory.loadDirectoryFactory() ...
// ...but the scaffolding needed for dealing with the CoreContainer/SolrConfig is a PITA
for (Class<? extends DirectoryFactory> clazz : ALL_CLASSES) {
testExistsBehavior(clazz);
}
}
private void testExistsBehavior(Class<? extends DirectoryFactory> clazz) throws Exception {
final String path = createTempDir().toString() + "/" + clazz + "_somedir";
DirectoryFactory dirFac = null;
try {
dirFac = clazz.newInstance();
dirFac.initCoreContainer(null); // greybox testing directly against path
dirFac.init(new NamedList());
assertFalse(path + " should not exist yet", dirFac.exists(path));
Directory dir = dirFac.get(path, DirectoryFactory.DirContext.DEFAULT,
DirectoryFactory.LOCK_TYPE_SINGLE);
try {
assertFalse(path + " should still not exist", dirFac.exists(path));
try (IndexOutput file = dir.createOutput("test_file", IOContext.DEFAULT)) {
file.writeInt(42);
// TODO: even StandardDirectoryFactory & NRTCachingDirectoryFactory can't agree on this...
// ... should we consider this explicitly undefinied?
// ... or should *all* Caching DirFactories consult the cache as well as the disk itself?
// assertFalse(path + " should still not exist until file is closed", dirFac.exists(path));
} // implicitly close file...
// TODO: even StandardDirectoryFactory & NRTCachingDirectoryFactory can't agree on this...
// ... should we consider this explicitly undefinied?
// ... or should *all* Caching DirFactories consult the cache as well as the disk itself?
// assertTrue(path + " should exist once file is closed", dirFac.exists(path));
dir.sync(Collections.singleton("test_file"));
assertTrue(path + " should exist once file is synced", dirFac.exists(path));
} finally {
dirFac.release(dir);
}
assertTrue(path + " should still exist even after being released", dirFac.exists(path));
} catch (AssertionError ae) {
throw new AssertionError(clazz + ": " + ae.getMessage());
} finally {
if (null != dirFac) {
dirFac.close();
}
}
}
}