use of org.neo4j.test.scheduler.ThreadPoolJobScheduler in project neo4j by neo4j.
the class PageCacheStressTest method run.
public void run() throws Exception {
try (FileSystemAbstraction fs = new DefaultFileSystemAbstraction();
JobScheduler jobScheduler = new ThreadPoolJobScheduler()) {
PageSwapperFactory swapperFactory = new SingleFilePageSwapperFactory(fs);
try (PageCache pageCacheUnderTest = new MuninnPageCache(swapperFactory, jobScheduler, config(numberOfCachePages).pageCacheTracer(tracer))) {
PageCacheStresser pageCacheStresser = new PageCacheStresser(numberOfPages, numberOfThreads, workingDirectory);
pageCacheStresser.stress(pageCacheUnderTest, tracer, condition);
}
}
}
use of org.neo4j.test.scheduler.ThreadPoolJobScheduler in project neo4j by neo4j.
the class RandomPageCacheTestHarness method runIteration.
@SuppressWarnings("unchecked")
private void runIteration(long timeout, TimeUnit unit) throws Exception {
assert filePageSize % recordFormat.getRecordSize() == 0 : "File page size must be a multiple of the record size";
if (!fixedRandomSeed) {
randomSeed = ThreadLocalRandom.current().nextLong();
}
FileSystemAbstraction fs = this.fs;
Path[] files = buildFileNames();
RandomAdversary adversary = new RandomAdversary(mischiefRate, failureRate, errorRate);
adversary.setProbabilityFactor(0.0);
if (useAdversarialIO) {
adversary.setSeed(randomSeed);
fs = new AdversarialFileSystemAbstraction(adversary, fs);
}
PageSwapperFactory swapperFactory = new SingleFilePageSwapperFactory(fs);
JobScheduler jobScheduler = new ThreadPoolJobScheduler();
MuninnPageCache cache = new MuninnPageCache(swapperFactory, jobScheduler, MuninnPageCache.config(cachePageCount).pageCacheTracer(tracer));
if (filePageSize == 0) {
filePageSize = cache.pageSize();
}
cache.setPrintExceptionsOnClose(false);
Map<Path, PagedFile> fileMap = new HashMap<>(files.length);
for (int i = 0; i < Math.min(files.length, initialMappedFiles); i++) {
Path file = files[i];
fileMap.put(file, cache.map(file, filePageSize, DEFAULT_DATABASE_NAME));
}
plan = plan(cache, files, fileMap);
AtomicBoolean stopSignal = new AtomicBoolean();
Callable<Void> planRunner = new PlanRunner(plan, stopSignal, profiler);
Future<Void>[] futures = new Future[concurrencyLevel];
for (int i = 0; i < concurrencyLevel; i++) {
futures[i] = executorService.submit(planRunner);
}
if (preparation != null) {
preparation.run(cache, this.fs, plan.getFilesTouched());
}
adversary.setProbabilityFactor(1.0);
plan.start();
long deadlineMillis = System.currentTimeMillis() + unit.toMillis(timeout);
long now;
try {
for (Future<Void> future : futures) {
now = System.currentTimeMillis();
if (deadlineMillis < now) {
throw new TimeoutException();
}
future.get(deadlineMillis - now, TimeUnit.MILLISECONDS);
}
adversary.setProbabilityFactor(0.0);
runVerificationPhase(cache);
} finally {
stopSignal.set(true);
adversary.setProbabilityFactor(0.0);
try {
for (Future<Void> future : futures) {
future.get(10, TimeUnit.SECONDS);
}
} catch (InterruptedException | TimeoutException e) {
for (Future<Void> future : futures) {
future.cancel(true);
}
throw new RuntimeException(e);
}
try {
plan.close();
cache.close();
jobScheduler.close();
if (this.fs instanceof EphemeralFileSystemAbstraction) {
this.fs.close();
this.fs = new EphemeralFileSystemAbstraction();
} else {
for (Path file : files) {
Files.delete(file);
}
}
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}
}
use of org.neo4j.test.scheduler.ThreadPoolJobScheduler in project neo4j by neo4j.
the class BatchingNeoStoresTest method shouldNotOpenStoreWithNodesOrRelationshipsInIt.
@Test
void shouldNotOpenStoreWithNodesOrRelationshipsInIt() throws Throwable {
Config config = Config.defaults();
// GIVEN
someDataInTheDatabase(config);
// WHEN
DirectoryNotEmptyException exception = assertThrows(DirectoryNotEmptyException.class, () -> {
try (JobScheduler jobScheduler = new ThreadPoolJobScheduler()) {
RecordFormats recordFormats = selectForConfig(Config.defaults(), NullLogProvider.getInstance());
try (BatchingNeoStores store = batchingNeoStores(fileSystem, databaseLayout, recordFormats, Configuration.DEFAULT, NullLogService.getInstance(), EMPTY, Config.defaults(), jobScheduler, PageCacheTracer.NULL, INSTANCE)) {
store.createNew();
}
}
});
assertThat(exception.getMessage()).contains("already contains");
}
use of org.neo4j.test.scheduler.ThreadPoolJobScheduler in project neo4j by neo4j.
the class BatchingNeoStoresTest method shouldRespectDbConfig.
@Test
void shouldRespectDbConfig() throws Exception {
// GIVEN
int size = 10;
Config config = Config.newBuilder().set(GraphDatabaseInternalSettings.array_block_size, size).set(GraphDatabaseInternalSettings.string_block_size, size).build();
// WHEN
RecordFormats recordFormats = LATEST_RECORD_FORMATS;
int headerSize = recordFormats.dynamic().getRecordHeaderSize();
try (JobScheduler jobScheduler = new ThreadPoolJobScheduler();
BatchingNeoStores store = batchingNeoStores(fileSystem, databaseLayout, recordFormats, Configuration.DEFAULT, NullLogService.getInstance(), EMPTY, config, jobScheduler, PageCacheTracer.NULL, INSTANCE)) {
store.createNew();
// THEN
assertEquals(size + headerSize, store.getPropertyStore().getArrayStore().getRecordSize());
assertEquals(size + headerSize, store.getPropertyStore().getStringStore().getRecordSize());
}
}
use of org.neo4j.test.scheduler.ThreadPoolJobScheduler in project neo4j by neo4j.
the class GBPTreeBootstrapperTest method setupTest.
private void setupTest(TestSetup testSetup) {
this.layout = testSetup.layout;
this.scheduler = new ThreadPoolJobScheduler();
this.pageCache = StandalonePageCacheFactory.createPageCache(fs, scheduler, testSetup.pageSize);
this.zipName = testSetup.zipName;
this.storeFile = dir.file(STORE);
this.zipFile = dir.file(zipName);
}
Aggregations