Search in sources :

Example 6 with EventJournalInitialSubscriberState

use of com.hazelcast.internal.journal.EventJournalInitialSubscriberState in project hazelcast by hazelcast.

the class AbstractEventJournalBasicTest method allowReadingWithFutureSeq.

@Test
public void allowReadingWithFutureSeq() throws Exception {
    final EventJournalTestContext<String, Integer, EJ_TYPE> context = createContext();
    final EventJournalInitialSubscriberState state = subscribeToEventJournal(context.dataAdapter, partitionId);
    assertEquals(0, state.getOldestSequence());
    assertEquals(-1, state.getNewestSequence());
    assertEventJournalSize(context.dataAdapter, 0);
    final Integer value = RANDOM.nextInt();
    final CountDownLatch latch = new CountDownLatch(1);
    final int startSequence = 1;
    final BiConsumer<ReadResultSet<EJ_TYPE>, Throwable> callback = (response, t) -> {
        if (t == null) {
            latch.countDown();
            assertEquals(1, response.size());
            final EventJournalEventAdapter<String, Integer, EJ_TYPE> journalAdapter = context.eventJournalAdapter;
            final EJ_TYPE e = response.get(0);
            assertEquals(ADDED, journalAdapter.getType(e));
            assertEquals(value, journalAdapter.getNewValue(e));
        } else {
            rethrow(t);
        }
    };
    CompletionStage<ReadResultSet<EJ_TYPE>> callbackStage = readFromEventJournal(context.dataAdapter, startSequence, 1, partitionId, TRUE_PREDICATE, IDENTITY_FUNCTION).whenCompleteAsync(callback);
    assertTrueEventually(() -> {
        context.dataAdapter.put(randomPartitionKey(), value);
        assertTrue(latch.await(200, TimeUnit.MILLISECONDS));
    }, 30);
    // ensure no exception thrown from callback
    callbackStage.toCompletableFuture().join();
}
Also used : ADDED(com.hazelcast.journal.EventJournalEventAdapter.EventType.ADDED) EventType(com.hazelcast.journal.EventJournalEventAdapter.EventType) EventJournalConfig(com.hazelcast.config.EventJournalConfig) HashMap(java.util.HashMap) Random(java.util.Random) Function(java.util.function.Function) ExceptionUtil.rethrow(com.hazelcast.internal.util.ExceptionUtil.rethrow) MapUtil.createHashMap(com.hazelcast.internal.util.MapUtil.createHashMap) LOADED(com.hazelcast.journal.EventJournalEventAdapter.EventType.LOADED) ArrayList(java.util.ArrayList) ConcurrentMap(java.util.concurrent.ConcurrentMap) Map(java.util.Map) Accessors.getNode(com.hazelcast.test.Accessors.getNode) BiConsumer(java.util.function.BiConsumer) RingbufferService(com.hazelcast.ringbuffer.impl.RingbufferService) Before(org.junit.Before) Config(com.hazelcast.config.Config) HazelcastInstance(com.hazelcast.core.HazelcastInstance) NodeEngineImpl(com.hazelcast.spi.impl.NodeEngineImpl) RingbufferContainer(com.hazelcast.ringbuffer.impl.RingbufferContainer) ObjectNamespace(com.hazelcast.internal.services.ObjectNamespace) Predicate(java.util.function.Predicate) Assert.assertNotNull(org.junit.Assert.assertNotNull) SetUtil(com.hazelcast.internal.util.SetUtil) HazelcastTestSupport(com.hazelcast.test.HazelcastTestSupport) Set(java.util.Set) Assert.assertTrue(org.junit.Assert.assertTrue) Test(org.junit.Test) Node(com.hazelcast.instance.impl.Node) Assert.assertNotEquals(org.junit.Assert.assertNotEquals) ClusterProperty(com.hazelcast.spi.properties.ClusterProperty) TimeUnit(java.util.concurrent.TimeUnit) CountDownLatch(java.util.concurrent.CountDownLatch) CompletionStage(java.util.concurrent.CompletionStage) Assert.assertNull(org.junit.Assert.assertNull) Entry(java.util.Map.Entry) AssertTask(com.hazelcast.test.AssertTask) ReadResultSet(com.hazelcast.ringbuffer.ReadResultSet) EventJournalInitialSubscriberState(com.hazelcast.internal.journal.EventJournalInitialSubscriberState) EVICTED(com.hazelcast.journal.EventJournalEventAdapter.EventType.EVICTED) Assert.assertEquals(org.junit.Assert.assertEquals) ReadResultSet(com.hazelcast.ringbuffer.ReadResultSet) CountDownLatch(java.util.concurrent.CountDownLatch) EventJournalInitialSubscriberState(com.hazelcast.internal.journal.EventJournalInitialSubscriberState) Test(org.junit.Test)

Example 7 with EventJournalInitialSubscriberState

use of com.hazelcast.internal.journal.EventJournalInitialSubscriberState in project hazelcast by hazelcast.

the class ClientCacheProxy method onInitialize.

@Override
protected void onInitialize() {
    super.onInitialize();
    eventJournalReadResponseDecoder = message -> {
        final CacheEventJournalReadCodec.ResponseParameters params = CacheEventJournalReadCodec.decodeResponse(message);
        final ReadResultSetImpl resultSet = new ReadResultSetImpl<>(params.readCount, params.items, params.itemSeqs, params.nextSeq);
        resultSet.setSerializationService(getSerializationService());
        return resultSet;
    };
    eventJournalSubscribeResponseDecoder = message -> {
        final ResponseParameters resp = CacheEventJournalSubscribeCodec.decodeResponse(message);
        return new EventJournalInitialSubscriberState(resp.oldestSequence, resp.newestSequence);
    };
}
Also used : EventJournalInitialSubscriberState(com.hazelcast.internal.journal.EventJournalInitialSubscriberState) CacheEventJournalReadCodec(com.hazelcast.client.impl.protocol.codec.CacheEventJournalReadCodec) ResponseParameters(com.hazelcast.client.impl.protocol.codec.CacheEventJournalSubscribeCodec.ResponseParameters) ReadResultSetImpl(com.hazelcast.ringbuffer.impl.ReadResultSetImpl)

Example 8 with EventJournalInitialSubscriberState

use of com.hazelcast.internal.journal.EventJournalInitialSubscriberState in project hazelcast by hazelcast.

the class AbstractEventJournalBasicTest method nextSequenceProceedsWhenReadFromEventJournalWhileMinSizeIsZero.

@Test
public void nextSequenceProceedsWhenReadFromEventJournalWhileMinSizeIsZero() throws Exception {
    final EventJournalTestContext<String, Integer, EJ_TYPE> context = createContext();
    final int count = 1000;
    assertEventJournalSize(context.dataAdapter, 0);
    for (int i = 0; i < count; i++) {
        context.dataAdapter.put(randomPartitionKey(), i);
    }
    final EventJournalInitialSubscriberState state = subscribeToEventJournal(context.dataAdapter, partitionId);
    assertEquals(500, state.getOldestSequence());
    assertEquals(999, state.getNewestSequence());
    assertEventJournalSize(context.dataAdapter, 500);
    final int startSequence = 0;
    final ReadResultSet<EJ_TYPE> resultSet = readFromEventJournal(context.dataAdapter, startSequence, 1, 0, partitionId, TRUE_PREDICATE, IDENTITY_FUNCTION).toCompletableFuture().get();
    assertEquals(1, resultSet.size());
    assertEquals(1, resultSet.readCount());
    assertNotEquals(startSequence + resultSet.readCount(), resultSet.getNextSequenceToReadFrom());
    assertEquals(501, resultSet.getNextSequenceToReadFrom());
    final long lostCount = resultSet.getNextSequenceToReadFrom() - resultSet.readCount() - startSequence;
    assertEquals(500, lostCount);
}
Also used : EventJournalInitialSubscriberState(com.hazelcast.internal.journal.EventJournalInitialSubscriberState) Test(org.junit.Test)

Aggregations

EventJournalInitialSubscriberState (com.hazelcast.internal.journal.EventJournalInitialSubscriberState)8 Test (org.junit.Test)3 CacheService (com.hazelcast.cache.impl.CacheService)1 ICacheService (com.hazelcast.cache.impl.ICacheService)1 ClientDelegatingFuture (com.hazelcast.client.impl.ClientDelegatingFuture)1 ClientMessage (com.hazelcast.client.impl.protocol.ClientMessage)1 CacheEventJournalReadCodec (com.hazelcast.client.impl.protocol.codec.CacheEventJournalReadCodec)1 ResponseParameters (com.hazelcast.client.impl.protocol.codec.CacheEventJournalSubscribeCodec.ResponseParameters)1 ResponseParameters (com.hazelcast.client.impl.protocol.codec.MapEventJournalSubscribeCodec.ResponseParameters)1 ClientInvocation (com.hazelcast.client.impl.spi.impl.ClientInvocation)1 ClientInvocationFuture (com.hazelcast.client.impl.spi.impl.ClientInvocationFuture)1 Config (com.hazelcast.config.Config)1 EventJournalConfig (com.hazelcast.config.EventJournalConfig)1 HazelcastInstance (com.hazelcast.core.HazelcastInstance)1 Node (com.hazelcast.instance.impl.Node)1 ObjectNamespace (com.hazelcast.internal.services.ObjectNamespace)1 ExceptionUtil.rethrow (com.hazelcast.internal.util.ExceptionUtil.rethrow)1 MapUtil.createHashMap (com.hazelcast.internal.util.MapUtil.createHashMap)1 SetUtil (com.hazelcast.internal.util.SetUtil)1 EventType (com.hazelcast.journal.EventJournalEventAdapter.EventType)1