Adding Integ testing for prefetch.
This commit is contained in:
parent
d3b81cb463
commit
e437fa8436
3 changed files with 198 additions and 3 deletions
|
|
@ -189,7 +189,7 @@ class KinesisDataFetcher {
|
|||
return iterator;
|
||||
}
|
||||
|
||||
private void sleepBeforeNextCall() {
|
||||
protected void sleepBeforeNextCall() {
|
||||
if (lastResponseTime != null) {
|
||||
long timeDiff = Duration.between(lastResponseTime, Instant.now()).abs().toMillis();
|
||||
if (timeDiff < idleMillisBetweenCalls) {
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@ public class AsynchronousGetRecordsRetrievalStrategyIntegrationTest {
|
|||
|
||||
@Before
|
||||
public void setup() {
|
||||
dataFetcher = spy(new KinesisDataFetcherForTests(mockKinesisProxy, mockShardInfo));
|
||||
dataFetcher = spy(new KinesisDataFetcherForTests(mockKinesisProxy, mockShardInfo, configuration));
|
||||
rejectedExecutionHandler = spy(new ThreadPoolExecutor.AbortPolicy());
|
||||
executorService = spy(new ThreadPoolExecutor(
|
||||
CORE_POOL_SIZE,
|
||||
|
|
@ -153,7 +153,8 @@ public class AsynchronousGetRecordsRetrievalStrategyIntegrationTest {
|
|||
}
|
||||
|
||||
private class KinesisDataFetcherForTests extends KinesisDataFetcher {
|
||||
public KinesisDataFetcherForTests(final IKinesisProxy kinesisProxy, final ShardInfo shardInfo) {
|
||||
public KinesisDataFetcherForTests(final IKinesisProxy kinesisProxy, final ShardInfo shardInfo,
|
||||
final KinesisClientLibConfiguration configuration) {
|
||||
super(kinesisProxy, shardInfo, configuration);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,194 @@
|
|||
/*
|
||||
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||
*
|
||||
* Licensed under the Amazon Software License (the "License").
|
||||
* You may not use this file except in compliance with the License.
|
||||
* A copy of the License is located at
|
||||
*
|
||||
* http://aws.amazon.com/asl/
|
||||
*
|
||||
* or in the "license" file accompanying this file. This file 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 com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.assertFalse;
|
||||
import static org.junit.Assert.assertNotEquals;
|
||||
import static org.junit.Assert.assertNotNull;
|
||||
import static org.junit.Assert.assertThat;
|
||||
import static org.junit.Assert.assertTrue;
|
||||
import static org.mockito.Mockito.mock;
|
||||
import static org.mockito.Mockito.spy;
|
||||
import static org.mockito.Mockito.verify;
|
||||
import static org.mockito.Mockito.when;
|
||||
|
||||
import java.nio.ByteBuffer;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
import java.util.concurrent.ExecutorService;
|
||||
import java.util.concurrent.Executors;
|
||||
|
||||
import com.amazonaws.services.kinesis.clientlibrary.types.ProcessRecordsInput;
|
||||
import com.amazonaws.services.kinesis.model.Record;
|
||||
import org.junit.After;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.mockito.Mock;
|
||||
import org.mockito.runners.MockitoJUnitRunner;
|
||||
|
||||
import com.amazonaws.services.kinesis.clientlibrary.proxies.IKinesisProxy;
|
||||
import com.amazonaws.services.kinesis.model.GetRecordsResult;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@RunWith(MockitoJUnitRunner.class)
|
||||
public class PrefetchGetRecordsCacheIntegrationTest {
|
||||
private static final int MAX_SIZE = 3;
|
||||
private static final int MAX_BYTE_SIZE = 5 * 1024 * 1024;
|
||||
private static final int MAX_RECORDS_COUNT = 30_000;
|
||||
private static final int MAX_RECORDS_PER_CALL = 10_000;
|
||||
private static final long IDLE_MILLIS_BETWEEN_CALLS = 500L;
|
||||
|
||||
private PrefetchGetRecordsCache getRecordsCache;
|
||||
private GetRecordsRetrievalStrategy getRecordsRetrievalStrategy;
|
||||
private KinesisDataFetcher dataFetcher;
|
||||
private ExecutorService executorService;
|
||||
private List<Record> records;
|
||||
|
||||
@Mock
|
||||
private IKinesisProxy proxy;
|
||||
|
||||
@Mock
|
||||
private ShardInfo shardInfo;
|
||||
|
||||
@Mock
|
||||
private KinesisClientLibConfiguration configuration;
|
||||
|
||||
@Before
|
||||
public void setup() {
|
||||
when(configuration.getIdleMillisBetweenCalls()).thenReturn(IDLE_MILLIS_BETWEEN_CALLS);
|
||||
|
||||
records = new ArrayList<>();
|
||||
dataFetcher = new KinesisDataFetcherForTest(proxy, shardInfo, configuration);
|
||||
getRecordsRetrievalStrategy = spy(new SynchronousGetRecordsRetrievalStrategy(dataFetcher));
|
||||
executorService = spy(Executors.newFixedThreadPool(1));
|
||||
|
||||
getRecordsCache = new PrefetchGetRecordsCache(MAX_SIZE,
|
||||
MAX_BYTE_SIZE,
|
||||
MAX_RECORDS_COUNT,
|
||||
MAX_RECORDS_PER_CALL,
|
||||
getRecordsRetrievalStrategy,
|
||||
executorService);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testRollingCache() {
|
||||
getRecordsCache.start();
|
||||
sleep(IDLE_MILLIS_BETWEEN_CALLS);
|
||||
|
||||
ProcessRecordsInput processRecordsInput1 = getRecordsCache.getNextResult();
|
||||
|
||||
assertTrue(processRecordsInput1.getRecords().isEmpty());
|
||||
assertEquals(processRecordsInput1.getMillisBehindLatest(), new Long(1000));
|
||||
assertNotNull(processRecordsInput1.getCacheEntryTime());
|
||||
|
||||
ProcessRecordsInput processRecordsInput2 = getRecordsCache.getNextResult();
|
||||
|
||||
assertNotEquals(processRecordsInput1, processRecordsInput2);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testFullCache() {
|
||||
getRecordsCache.start();
|
||||
sleep(MAX_SIZE * IDLE_MILLIS_BETWEEN_CALLS);
|
||||
|
||||
assertEquals(getRecordsCache.getRecordsResultQueue.size(), MAX_SIZE);
|
||||
|
||||
ProcessRecordsInput processRecordsInput1 = getRecordsCache.getNextResult();
|
||||
ProcessRecordsInput processRecordsInput2 = getRecordsCache.getNextResult();
|
||||
|
||||
assertNotEquals(processRecordsInput1, processRecordsInput2);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDifferentShardCaches() {
|
||||
ExecutorService executorService2 = spy(Executors.newFixedThreadPool(1));
|
||||
KinesisDataFetcher kinesisDataFetcher = spy(new KinesisDataFetcherForTest(proxy, shardInfo, configuration));
|
||||
GetRecordsRetrievalStrategy getRecordsRetrievalStrategy2 = spy(new AsynchronousGetRecordsRetrievalStrategy(kinesisDataFetcher, 5 , 5, "Test-shard"));
|
||||
GetRecordsCache getRecordsCache2 = new PrefetchGetRecordsCache(
|
||||
MAX_SIZE,
|
||||
MAX_BYTE_SIZE,
|
||||
MAX_RECORDS_COUNT,
|
||||
MAX_RECORDS_PER_CALL,
|
||||
getRecordsRetrievalStrategy2,
|
||||
executorService2
|
||||
);
|
||||
|
||||
getRecordsCache.start();
|
||||
sleep(IDLE_MILLIS_BETWEEN_CALLS);
|
||||
|
||||
Record record = mock(Record.class);
|
||||
ByteBuffer byteBuffer = ByteBuffer.allocate(512 * 1024);
|
||||
when(record.getData()).thenReturn(byteBuffer);
|
||||
|
||||
records.add(record);
|
||||
records.add(record);
|
||||
records.add(record);
|
||||
records.add(record);
|
||||
getRecordsCache2.start();
|
||||
|
||||
sleep(IDLE_MILLIS_BETWEEN_CALLS);
|
||||
|
||||
ProcessRecordsInput p1 = getRecordsCache.getNextResult();
|
||||
|
||||
ProcessRecordsInput p2 = getRecordsCache2.getNextResult();
|
||||
|
||||
assertNotEquals(p1, p2);
|
||||
assertTrue(p1.getRecords().isEmpty());
|
||||
assertFalse(p2.getRecords().isEmpty());
|
||||
assertEquals(p2.getRecords().size(), records.size());
|
||||
|
||||
getRecordsCache2.shutdown();
|
||||
verify(executorService2).shutdownNow();
|
||||
verify(getRecordsRetrievalStrategy2).shutdown();
|
||||
}
|
||||
|
||||
@After
|
||||
public void shutdown() {
|
||||
getRecordsCache.shutdown();
|
||||
verify(executorService).shutdownNow();
|
||||
verify(getRecordsRetrievalStrategy).shutdown();
|
||||
}
|
||||
|
||||
private void sleep(long millis) {
|
||||
try {
|
||||
Thread.sleep(millis);
|
||||
} catch (InterruptedException e) {}
|
||||
}
|
||||
|
||||
private class KinesisDataFetcherForTest extends KinesisDataFetcher {
|
||||
public KinesisDataFetcherForTest(final IKinesisProxy kinesisProxy,
|
||||
final ShardInfo shardInfo,
|
||||
final KinesisClientLibConfiguration configuration) {
|
||||
super(kinesisProxy, shardInfo, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public GetRecordsResult getRecords(final int maxRecords) {
|
||||
GetRecordsResult getRecordsResult = new GetRecordsResult();
|
||||
getRecordsResult.setRecords(new ArrayList<>(records));
|
||||
getRecordsResult.setMillisBehindLatest(1000L);
|
||||
|
||||
sleepBeforeNextCall();
|
||||
|
||||
return getRecordsResult;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue