use of com.questdb.store.factory.configuration.JournalStructure in project questdb by bluestreak01.
the class MultiColumnJoinTest method setUp.
@Before
public void setUp() throws Exception {
getFactory().getConfiguration().exists("");
try (JournalWriter a = getFactory().writer(new JournalStructure("a").$int("x").$str("y").$double("amount").$())) {
try (JournalWriter b = getFactory().writer(new JournalStructure("b").$int("x").$str("y").$str("name").$())) {
Rnd rnd = new Rnd();
for (int i = 0; i < 10; i++) {
int x = rnd.nextInt();
String y = rnd.nextString(rnd.nextPositiveInt() % 15);
JournalEntryWriter ewa = a.entryWriter();
JournalEntryWriter ewb = b.entryWriter();
ewa.putInt(0, x);
ewa.putStr(1, y);
ewa.putDouble(2, rnd.nextDouble());
ewa.append();
ewb.putInt(0, x);
ewb.putStr(1, y);
ewb.putStr(2, rnd.nextChars(rnd.nextPositiveInt() % 20));
ewb.append();
}
}
// a.commit();
// b.commit();
}
}
use of com.questdb.store.factory.configuration.JournalStructure in project questdb by bluestreak01.
the class CachingReaderFactoryTest method testSerialOpenClose.
@Test
public void testSerialOpenClose() 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)) {
Journal firstReader = null;
for (int i = 0; i < 1000; i++) {
try (Journal reader = rf.reader(m)) {
if (firstReader == null) {
firstReader = reader;
}
Assert.assertNotNull(reader);
Assert.assertSame(firstReader, reader);
}
}
}
}
use of com.questdb.store.factory.configuration.JournalStructure in project questdb by bluestreak01.
the class CachingReaderFactoryTest method testCloseWithActiveReader.
@Test
public void testCloseWithActiveReader() 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)) {
Journal reader = rf.reader(m);
Assert.assertNotNull(reader);
rf.close();
Assert.assertTrue(reader.isOpen());
reader.close();
Assert.assertFalse(reader.isOpen());
}
}
use of com.questdb.store.factory.configuration.JournalStructure 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.store.factory.configuration.JournalStructure 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