use of io.pravega.segmentstore.contracts.tables.TableStore in project pravega by pravega.
the class EndToEndWithScaleTest method setUp.
@Before
public void setUp() throws Exception {
zkTestServer = new TestingServerStarter().start();
serviceBuilder = ServiceBuilder.newInMemoryBuilder(ServiceBuilderConfig.getDefaultConfig());
serviceBuilder.initialize();
StreamSegmentStore store = serviceBuilder.createStreamSegmentService();
TableStore tableStore = serviceBuilder.createTableStoreService();
server = new PravegaConnectionListener(false, servicePort, store, tableStore, serviceBuilder.getLowPriorityExecutor());
server.startListening();
controllerWrapper = new ControllerWrapper(zkTestServer.getConnectString(), false, controllerPort, serviceHost, servicePort, containerCount);
controllerWrapper.awaitRunning();
}
use of io.pravega.segmentstore.contracts.tables.TableStore in project pravega by pravega.
the class TableServiceTests method check.
private void check(HashMap<BufferView, EntryData> keyInfo, TableStore tableStore) throws Exception {
val bySegment = keyInfo.entrySet().stream().collect(Collectors.groupingBy(e -> e.getValue().segmentName));
// Check inexistent keys.
val searchFutures = new ArrayList<CompletableFuture<List<TableEntry>>>();
val iteratorFutures = new ArrayList<CompletableFuture<List<TableEntry>>>();
// Delta Iteration does not support fixed-key-length TableSegments.
val unsortedIteratorFutures = new ArrayList<CompletableFuture<List<TableEntry>>>();
val offsetIteratorFutures = new ArrayList<CompletableFuture<List<IteratorItem<TableEntry>>>>();
val expectedResult = new ArrayList<Map.Entry<BufferView, EntryData>>();
for (val e : bySegment.entrySet()) {
String segmentName = e.getKey();
boolean fixedKeyLength = isFixedKeyLength(segmentName);
val info = tableStore.getInfo(segmentName, TIMEOUT).get(TIMEOUT.toMillis(), TimeUnit.MILLISECONDS);
Assert.assertEquals(segmentName, info.getName());
AssertExtensions.assertGreaterThan("Unexpected length for " + segmentName, 0, info.getLength());
val expectedKeyLength = isFixedKeyLength(segmentName) ? getFixedKeyLength(segmentName) : 0;
Assert.assertEquals("Unexpected key length for " + segmentName, expectedKeyLength, info.getKeyLength());
Assert.assertEquals(fixedKeyLength, info.getType().isFixedKeyLengthTableSegment());
val keys = new ArrayList<BufferView>();
for (val se : e.getValue()) {
keys.add(se.getKey());
expectedResult.add(se);
}
searchFutures.add(tableStore.get(segmentName, keys, TIMEOUT));
CompletableFuture<List<TableEntry>> entryIteratorFuture = tableStore.entryIterator(segmentName, IteratorArgs.builder().fetchTimeout(TIMEOUT).build()).thenCompose(ei -> {
val result = new ArrayList<TableEntry>();
return ei.forEachRemaining(i -> result.addAll(i.getEntries()), executorService()).thenApply(v -> {
if (fixedKeyLength) {
checkSortedOrder(result);
}
return result;
});
});
iteratorFutures.add(entryIteratorFuture);
if (!fixedKeyLength) {
unsortedIteratorFutures.add(entryIteratorFuture);
// For simplicity, always start from beginning of TableSegment.
offsetIteratorFutures.add(tableStore.entryDeltaIterator(segmentName, 0L, TIMEOUT).thenCompose(ei -> {
val result = new ArrayList<IteratorItem<TableEntry>>();
return ei.forEachRemaining(result::add, executorService()).thenApply(v -> result);
}));
}
}
// Check search results.
val actualResults = Futures.allOfWithResults(searchFutures).get(TIMEOUT.toMillis(), TimeUnit.MILLISECONDS).stream().flatMap(List::stream).collect(Collectors.toList());
Assert.assertEquals("Unexpected number of search results.", expectedResult.size(), actualResults.size());
for (int i = 0; i < expectedResult.size(); i++) {
val expectedKey = expectedResult.get(i).getKey();
val expectedEntry = expectedResult.get(i).getValue();
val actual = actualResults.get(i);
if (expectedEntry.isDeleted()) {
// Deleted keys will be returned as nulls.
if (actual != null) {
val r2 = tableStore.get(expectedEntry.segmentName, Collections.singletonList(expectedKey), TIMEOUT).join();
}
Assert.assertNull("Not expecting a value for a deleted Key ", actual);
} else {
Assert.assertEquals("Unexpected value for non-deleted Key.", expectedEntry.getValue(), actual.getValue());
Assert.assertEquals("Unexpected key for non-deleted Key.", expectedKey, actual.getKey().getKey());
Assert.assertEquals("Unexpected TableKey.Version for non-deleted Key.", expectedEntry.getVersion(), actual.getKey().getVersion());
}
}
// Check iterator results. We sort it (and actualResults) by Version/Offset to ease the comparison.
val actualIteratorResults = Futures.allOfWithResults(iteratorFutures).get(TIMEOUT.toMillis(), TimeUnit.MILLISECONDS).stream().flatMap(List::stream).sorted(Comparator.comparingLong(e -> e.getKey().getVersion())).collect(Collectors.toList());
val expectedIteratorResults = actualResults.stream().filter(Objects::nonNull).sorted(Comparator.comparingLong(e -> e.getKey().getVersion())).collect(Collectors.toList());
// These lists are used to compare non-delta based iteration with delta based iteration.
val actualUnsortedIteratorResults = Futures.allOfWithResults(unsortedIteratorFutures).get(TIMEOUT.toMillis(), TimeUnit.MILLISECONDS).stream().flatMap(List::stream).sorted(Comparator.comparingLong(e -> e.getKey().getVersion())).collect(Collectors.toList());
val expectedUnsortedIteratorResults = actualUnsortedIteratorResults.stream().filter(Objects::nonNull).sorted(Comparator.comparingLong(e -> e.getKey().getVersion())).collect(Collectors.toList());
val actualOffsetIteratorList = Futures.allOfWithResults(offsetIteratorFutures).get(TIMEOUT.toMillis(), TimeUnit.MILLISECONDS).stream().flatMap(List::stream).collect(Collectors.toList());
val actualOffsetIteratorResults = processDeltaIteratorItems(actualOffsetIteratorList).stream().sorted(Comparator.comparingLong(e -> e.getKey().getVersion())).collect(Collectors.toList());
AssertExtensions.assertListEquals("Unexpected result from entryIterator().", expectedIteratorResults, actualIteratorResults, TableEntry::equals);
for (val entry : expectedUnsortedIteratorResults) {
Assert.assertNotNull("Missing expected TableEntry from deltaEntryIterator()", actualOffsetIteratorResults.contains(entry));
}
}
use of io.pravega.segmentstore.contracts.tables.TableStore in project pravega by pravega.
the class TableBasedMetadataStoreMockTests method testBadReadMissingNoVersionDuringRead.
@Test
public void testBadReadMissingNoVersionDuringRead() {
TableStore mockTableStore = mock(TableStore.class);
@Cleanup TableBasedMetadataStore tableBasedMetadataStore = spy(new TableBasedMetadataStore("test", mockTableStore, ChunkedSegmentStorageConfig.DEFAULT_CONFIG, executorService()));
when(mockTableStore.createSegment(any(), any(), any())).thenReturn(Futures.failedFuture(new CompletionException(new StreamSegmentExistsException("test"))));
when(tableBasedMetadataStore.read("test")).thenReturn(CompletableFuture.completedFuture(BaseMetadataStore.TransactionData.builder().key("test").value(new MockStorageMetadata("key", "value")).dbObject(Long.valueOf(10)).build()));
val txn = tableBasedMetadataStore.beginTransaction(true, "test");
AssertExtensions.assertFutureThrows("read should throw an exception", tableBasedMetadataStore.get(txn, "test"), ex -> ex instanceof IllegalStateException);
}
use of io.pravega.segmentstore.contracts.tables.TableStore in project pravega by pravega.
the class TableBasedMetadataStoreMockTests method testBadReadExceptionDuringRead.
@Test
public void testBadReadExceptionDuringRead() {
TableStore mockTableStore = mock(TableStore.class);
TableBasedMetadataStore tableBasedMetadataStore = spy(new TableBasedMetadataStore("test", mockTableStore, ChunkedSegmentStorageConfig.DEFAULT_CONFIG, executorService()));
when(mockTableStore.createSegment(any(), any(), any())).thenReturn(Futures.failedFuture(new CompletionException(new StreamSegmentExistsException("test"))));
when(tableBasedMetadataStore.read("test")).thenReturn(CompletableFuture.completedFuture(null));
val txn = tableBasedMetadataStore.beginTransaction(true, "test");
AssertExtensions.assertFutureThrows("read should throw an exception", tableBasedMetadataStore.get(txn, "test"), ex -> ex instanceof IllegalStateException);
}
use of io.pravega.segmentstore.contracts.tables.TableStore in project pravega by pravega.
the class TableBasedMetadataStoreMockTests method testBadReadMissingDbObjectDuringRead.
@Test
public void testBadReadMissingDbObjectDuringRead() {
TableStore mockTableStore = mock(TableStore.class);
TableBasedMetadataStore tableBasedMetadataStore = spy(new TableBasedMetadataStore("test", mockTableStore, ChunkedSegmentStorageConfig.DEFAULT_CONFIG, executorService()));
when(mockTableStore.createSegment(any(), any(), any())).thenReturn(Futures.failedFuture(new CompletionException(new StreamSegmentExistsException("test"))));
when(tableBasedMetadataStore.read("test")).thenReturn(CompletableFuture.completedFuture(BaseMetadataStore.TransactionData.builder().key("test").build()));
val txn = tableBasedMetadataStore.beginTransaction(true, "test");
AssertExtensions.assertFutureThrows("read should throw an exception", tableBasedMetadataStore.get(txn, "test"), ex -> ex instanceof IllegalStateException);
}
Aggregations