Search in sources :

Example 1 with TrinoThriftId

use of io.trino.plugin.thrift.api.TrinoThriftId in project trino by trinodb.

the class ThriftTpchService method getSplitsSync.

private static TrinoThriftSplitBatch getSplitsSync(TrinoThriftSchemaTableName schemaTableName, int maxSplitCount, TrinoThriftNullableToken nextToken) {
    int totalParts = DEFAULT_NUMBER_OF_SPLITS;
    // last sent part
    int partNumber = nextToken.getToken() == null ? 0 : Ints.fromByteArray(nextToken.getToken().getId());
    int numberOfSplits = min(maxSplitCount, totalParts - partNumber);
    List<TrinoThriftSplit> splits = new ArrayList<>(numberOfSplits);
    for (int i = 0; i < numberOfSplits; i++) {
        SplitInfo splitInfo = normalSplit(schemaTableName.getSchemaName(), schemaTableName.getTableName(), partNumber + 1, totalParts);
        splits.add(new TrinoThriftSplit(new TrinoThriftId(SPLIT_INFO_CODEC.toJsonBytes(splitInfo)), ImmutableList.of()));
        partNumber++;
    }
    TrinoThriftId newNextToken = partNumber < totalParts ? new TrinoThriftId(Ints.toByteArray(partNumber)) : null;
    return new TrinoThriftSplitBatch(splits, newNextToken);
}
Also used : TrinoThriftSplitBatch(io.trino.plugin.thrift.api.TrinoThriftSplitBatch) TrinoThriftSplit(io.trino.plugin.thrift.api.TrinoThriftSplit) ArrayList(java.util.ArrayList) TrinoThriftId(io.trino.plugin.thrift.api.TrinoThriftId)

Example 2 with TrinoThriftId

use of io.trino.plugin.thrift.api.TrinoThriftId in project trino by trinodb.

the class ThriftIndexedTpchService method getIndexSplitsSync.

@Override
protected TrinoThriftSplitBatch getIndexSplitsSync(TrinoThriftSchemaTableName schemaTableName, List<String> indexColumnNames, TrinoThriftPageResult keys, int maxSplitCount, TrinoThriftNullableToken nextToken) throws TrinoThriftServiceException {
    checkArgument(NUMBER_OF_INDEX_SPLITS <= maxSplitCount, "maxSplitCount for lookup splits is too low");
    checkArgument(nextToken.getToken() == null, "no continuation is supported for lookup splits");
    int totalKeys = keys.getRowCount();
    int partSize = totalKeys / NUMBER_OF_INDEX_SPLITS;
    List<TrinoThriftSplit> splits = new ArrayList<>(NUMBER_OF_INDEX_SPLITS);
    for (int splitIndex = 0; splitIndex < NUMBER_OF_INDEX_SPLITS; splitIndex++) {
        int begin = partSize * splitIndex;
        int end = partSize * (splitIndex + 1);
        if (splitIndex + 1 == NUMBER_OF_INDEX_SPLITS) {
            // add remainder to the last split
            end = totalKeys;
        }
        if (begin == end) {
            // split is empty, skip it
            continue;
        }
        SplitInfo splitInfo = indexSplit(schemaTableName.getSchemaName(), schemaTableName.getTableName(), indexColumnNames, thriftPageToList(keys, begin, end));
        splits.add(new TrinoThriftSplit(new TrinoThriftId(SPLIT_INFO_CODEC.toJsonBytes(splitInfo)), ImmutableList.of()));
    }
    return new TrinoThriftSplitBatch(splits, null);
}
Also used : TrinoThriftSplitBatch(io.trino.plugin.thrift.api.TrinoThriftSplitBatch) TrinoThriftSplit(io.trino.plugin.thrift.api.TrinoThriftSplit) ArrayList(java.util.ArrayList) TrinoThriftId(io.trino.plugin.thrift.api.TrinoThriftId)

Example 3 with TrinoThriftId

use of io.trino.plugin.thrift.api.TrinoThriftId in project trino by trinodb.

the class ThriftTpchService method getRowsInternal.

private static TrinoThriftPageResult getRowsInternal(ConnectorPageSource pageSource, String tableName, List<String> columnNames, @Nullable TrinoThriftId nextToken) {
    // very inefficient implementation as it needs to re-generate all previous results to get the next page
    int skipPages = nextToken != null ? Ints.fromByteArray(nextToken.getId()) : 0;
    skipPages(pageSource, skipPages);
    Page page = null;
    while (!pageSource.isFinished() && page == null) {
        page = pageSource.getNextPage();
        skipPages++;
    }
    TrinoThriftId newNextToken = pageSource.isFinished() ? null : new TrinoThriftId(Ints.toByteArray(skipPages));
    return toThriftPage(page, types(tableName, columnNames), newNextToken);
}
Also used : Page(io.trino.spi.Page) TrinoThriftId(io.trino.plugin.thrift.api.TrinoThriftId)

Example 4 with TrinoThriftId

use of io.trino.plugin.thrift.api.TrinoThriftId in project trino by trinodb.

the class TestThriftIndexPageSource method testGetNextPageTwoConcurrentRequests.

@Test
public void testGetNextPageTwoConcurrentRequests() throws Exception {
    final int splits = 3;
    final int lookupRequestsConcurrency = 2;
    final int rowsPerSplit = 1;
    List<SettableFuture<TrinoThriftPageResult>> futures = IntStream.range(0, splits).mapToObj(i -> SettableFuture.<TrinoThriftPageResult>create()).collect(toImmutableList());
    List<CountDownLatch> signals = IntStream.range(0, splits).mapToObj(i -> new CountDownLatch(1)).collect(toImmutableList());
    TestingThriftService client = new TestingThriftService(rowsPerSplit, false, false) {

        @Override
        public ListenableFuture<TrinoThriftPageResult> getRows(TrinoThriftId splitId, List<String> columns, long maxBytes, TrinoThriftNullableToken nextToken) {
            int key = Ints.fromByteArray(splitId.getId());
            signals.get(key).countDown();
            return futures.get(key);
        }
    };
    ThriftConnectorStats stats = new ThriftConnectorStats();
    long pageSizeReceived = 0;
    ThriftIndexPageSource pageSource = new ThriftIndexPageSource((context, headers) -> client, ImmutableMap.of(), stats, new ThriftIndexHandle(new SchemaTableName("default", "table1"), TupleDomain.all()), ImmutableList.of(column("a", INTEGER)), ImmutableList.of(column("b", INTEGER)), new InMemoryRecordSet(ImmutableList.of(INTEGER), generateKeys(0, splits)), MAX_BYTES_PER_RESPONSE, lookupRequestsConcurrency);
    assertNull(pageSource.getNextPage());
    assertEquals((long) stats.getIndexPageSize().getAllTime().getTotal(), 0);
    signals.get(0).await(1, SECONDS);
    signals.get(1).await(1, SECONDS);
    signals.get(2).await(1, SECONDS);
    assertEquals(signals.get(0).getCount(), 0, "first request wasn't sent");
    assertEquals(signals.get(1).getCount(), 0, "second request wasn't sent");
    assertEquals(signals.get(2).getCount(), 1, "third request shouldn't be sent");
    // at this point first two requests were sent
    assertFalse(pageSource.isFinished());
    assertNull(pageSource.getNextPage());
    assertEquals((long) stats.getIndexPageSize().getAllTime().getTotal(), 0);
    // completing the second request
    futures.get(1).set(pageResult(20, null));
    Page page = pageSource.getNextPage();
    pageSizeReceived += page.getSizeInBytes();
    assertEquals((long) stats.getIndexPageSize().getAllTime().getTotal(), pageSizeReceived);
    assertNotNull(page);
    assertEquals(page.getPositionCount(), 1);
    assertEquals(page.getBlock(0).getInt(0, 0), 20);
    // not complete yet
    assertFalse(pageSource.isFinished());
    // once one of the requests completes the next one should be sent
    signals.get(2).await(1, SECONDS);
    assertEquals(signals.get(2).getCount(), 0, "third request wasn't sent");
    // completing the first request
    futures.get(0).set(pageResult(10, null));
    page = pageSource.getNextPage();
    assertNotNull(page);
    pageSizeReceived += page.getSizeInBytes();
    assertEquals((long) stats.getIndexPageSize().getAllTime().getTotal(), pageSizeReceived);
    assertEquals(page.getPositionCount(), 1);
    assertEquals(page.getBlock(0).getInt(0, 0), 10);
    // still not complete
    assertFalse(pageSource.isFinished());
    // completing the third request
    futures.get(2).set(pageResult(30, null));
    page = pageSource.getNextPage();
    assertNotNull(page);
    pageSizeReceived += page.getSizeInBytes();
    assertEquals((long) stats.getIndexPageSize().getAllTime().getTotal(), pageSizeReceived);
    assertEquals(page.getPositionCount(), 1);
    assertEquals(page.getBlock(0).getInt(0, 0), 30);
    // finished now
    assertTrue(pageSource.isFinished());
    // after completion
    assertNull(pageSource.getNextPage());
    pageSource.close();
}
Also used : SettableFuture(com.google.common.util.concurrent.SettableFuture) IntStream(java.util.stream.IntStream) Collections.shuffle(java.util.Collections.shuffle) TrinoThriftBlock.integerData(io.trino.plugin.thrift.api.TrinoThriftBlock.integerData) ListenableFuture(com.google.common.util.concurrent.ListenableFuture) Assert.assertNull(org.testng.Assert.assertNull) TrinoThriftTupleDomain(io.trino.plugin.thrift.api.TrinoThriftTupleDomain) Type(io.trino.spi.type.Type) Page(io.trino.spi.Page) Assert.assertEquals(org.testng.Assert.assertEquals) Test(org.testng.annotations.Test) CompletableFuture(java.util.concurrent.CompletableFuture) SettableFuture(com.google.common.util.concurrent.SettableFuture) ArrayList(java.util.ArrayList) ImmutableList(com.google.common.collect.ImmutableList) TrinoThriftId(io.trino.plugin.thrift.api.TrinoThriftId) Block(io.trino.spi.block.Block) TrinoThriftService(io.trino.plugin.thrift.api.TrinoThriftService) TrinoThriftNullableToken(io.trino.plugin.thrift.api.TrinoThriftNullableToken) TrinoThriftSplit(io.trino.plugin.thrift.api.TrinoThriftSplit) INTEGER(io.trino.spi.type.IntegerType.INTEGER) Assert.assertFalse(org.testng.Assert.assertFalse) Futures.immediateFuture(com.google.common.util.concurrent.Futures.immediateFuture) TrinoThriftPageResult(io.trino.plugin.thrift.api.TrinoThriftPageResult) ImmutableMap(com.google.common.collect.ImmutableMap) ImmutableList.toImmutableList(com.google.common.collect.ImmutableList.toImmutableList) TrinoThriftInteger(io.trino.plugin.thrift.api.datatypes.TrinoThriftInteger) TrinoThriftSplitBatch(io.trino.plugin.thrift.api.TrinoThriftSplitBatch) TrinoThriftNullableTableMetadata(io.trino.plugin.thrift.api.TrinoThriftNullableTableMetadata) Assert.assertNotNull(org.testng.Assert.assertNotNull) TupleDomain(io.trino.spi.predicate.TupleDomain) Ints(com.google.common.primitives.Ints) InMemoryRecordSet(io.trino.spi.connector.InMemoryRecordSet) SchemaTableName(io.trino.spi.connector.SchemaTableName) CountDownLatch(java.util.concurrent.CountDownLatch) List(java.util.List) TrinoThriftSchemaTableName(io.trino.plugin.thrift.api.TrinoThriftSchemaTableName) TrinoThriftNullableColumnSet(io.trino.plugin.thrift.api.TrinoThriftNullableColumnSet) Assert.assertTrue(org.testng.Assert.assertTrue) TrinoThriftNullableSchemaName(io.trino.plugin.thrift.api.TrinoThriftNullableSchemaName) Collections(java.util.Collections) SECONDS(java.util.concurrent.TimeUnit.SECONDS) Page(io.trino.spi.Page) CountDownLatch(java.util.concurrent.CountDownLatch) TrinoThriftId(io.trino.plugin.thrift.api.TrinoThriftId) SchemaTableName(io.trino.spi.connector.SchemaTableName) TrinoThriftSchemaTableName(io.trino.plugin.thrift.api.TrinoThriftSchemaTableName) InMemoryRecordSet(io.trino.spi.connector.InMemoryRecordSet) TrinoThriftPageResult(io.trino.plugin.thrift.api.TrinoThriftPageResult) TrinoThriftNullableToken(io.trino.plugin.thrift.api.TrinoThriftNullableToken) ArrayList(java.util.ArrayList) ImmutableList(com.google.common.collect.ImmutableList) ImmutableList.toImmutableList(com.google.common.collect.ImmutableList.toImmutableList) List(java.util.List) Test(org.testng.annotations.Test)

Aggregations

TrinoThriftId (io.trino.plugin.thrift.api.TrinoThriftId)4 TrinoThriftSplit (io.trino.plugin.thrift.api.TrinoThriftSplit)3 TrinoThriftSplitBatch (io.trino.plugin.thrift.api.TrinoThriftSplitBatch)3 ArrayList (java.util.ArrayList)3 Page (io.trino.spi.Page)2 ImmutableList (com.google.common.collect.ImmutableList)1 ImmutableList.toImmutableList (com.google.common.collect.ImmutableList.toImmutableList)1 ImmutableMap (com.google.common.collect.ImmutableMap)1 Ints (com.google.common.primitives.Ints)1 Futures.immediateFuture (com.google.common.util.concurrent.Futures.immediateFuture)1 ListenableFuture (com.google.common.util.concurrent.ListenableFuture)1 SettableFuture (com.google.common.util.concurrent.SettableFuture)1 TrinoThriftBlock.integerData (io.trino.plugin.thrift.api.TrinoThriftBlock.integerData)1 TrinoThriftNullableColumnSet (io.trino.plugin.thrift.api.TrinoThriftNullableColumnSet)1 TrinoThriftNullableSchemaName (io.trino.plugin.thrift.api.TrinoThriftNullableSchemaName)1 TrinoThriftNullableTableMetadata (io.trino.plugin.thrift.api.TrinoThriftNullableTableMetadata)1 TrinoThriftNullableToken (io.trino.plugin.thrift.api.TrinoThriftNullableToken)1 TrinoThriftPageResult (io.trino.plugin.thrift.api.TrinoThriftPageResult)1 TrinoThriftSchemaTableName (io.trino.plugin.thrift.api.TrinoThriftSchemaTableName)1 TrinoThriftService (io.trino.plugin.thrift.api.TrinoThriftService)1