use of com.questdb.ex.FactoryFullException in project questdb by bluestreak01.
the class CachingReaderFactoryTest method testAllocateAndClear.
@Test
public void testAllocateAndClear() throws Exception {
final JournalMetadata<?> m = new JournalStructure("z").$date("ts").$().build();
getFactory().writer(m).close();
try (CachingReaderFactory rf = new CachingReaderFactory(factoryContainer.getConfiguration(), 1, 2)) {
int n = 2;
final CyclicBarrier barrier = new CyclicBarrier(n);
final CountDownLatch halt = new CountDownLatch(n);
final AtomicInteger errors = new AtomicInteger();
final AtomicInteger readerCount = new AtomicInteger();
new Thread(() -> {
try {
for (int i = 0; i < 1000; i++) {
try (Journal ignored = rf.reader(m)) {
readerCount.incrementAndGet();
} catch (FactoryFullException ignored) {
}
if (i == 1) {
barrier.await();
}
LockSupport.parkNanos(10L);
}
} catch (Exception e) {
e.printStackTrace();
errors.incrementAndGet();
} finally {
halt.countDown();
}
}).start();
new Thread(() -> {
try {
barrier.await();
for (int i = 0; i < 1000; i++) {
rf.releaseInactive();
LockSupport.parkNanos(10L);
}
} catch (Exception e) {
e.printStackTrace();
errors.incrementAndGet();
} finally {
halt.countDown();
}
}).start();
halt.await();
Assert.assertTrue(readerCount.get() > 0);
Assert.assertEquals(0, errors.get());
}
}
use of com.questdb.ex.FactoryFullException in project questdb by bluestreak01.
the class CachingReaderFactoryTest method testGetReadersBeforeFailure.
@SuppressWarnings("InfiniteLoopStatement")
@Test
public void testGetReadersBeforeFailure() throws Exception {
// create journal
final JournalMetadata<?> m = new JournalStructure("x").$date("ts").$().build();
((WriterFactory) getFactory()).writer(m).close();
try (final CachingReaderFactory rf = new CachingReaderFactory(factoryContainer.getConfiguration(), 1000, 2)) {
ObjList<Journal> readers = new ObjList<>();
try {
do {
readers.add(rf.reader(m));
} while (true);
} catch (FactoryFullException e) {
Assert.assertEquals(rf.getMaxEntries(), readers.size());
} finally {
for (int i = 0, n = readers.size(); i < n; i++) {
readers.getQuick(i).close();
}
}
}
}
Aggregations