com.amazon.titan.diskstorage.dynamodb.QueryWithLimitWorker Maven / Gradle / Ivy
/*
* Copyright 2014-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (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/apache2.0
*
* 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.amazon.titan.diskstorage.dynamodb;
import java.util.List;
import java.util.Map;
import com.amazonaws.services.dynamodbv2.model.AttributeValue;
import com.amazonaws.services.dynamodbv2.model.QueryRequest;
import com.google.common.base.Preconditions;
import com.google.common.collect.Iterables;
import com.google.common.collect.Lists;
import com.thinkaurelius.titan.diskstorage.BackendException;
import com.thinkaurelius.titan.diskstorage.StaticBuffer;
/**
* QueryWorker that also enforces a limit on the total number of results it gathers before stopping. The number of items returned by this worker
* will always be less than or equal to the given limit.
*/
public class QueryWithLimitWorker extends QueryWorker {
private int limit;
public QueryWithLimitWorker(DynamoDBDelegate delegate, QueryRequest request, StaticBuffer titanKey, int limit) {
super(delegate, request, titanKey);
this.limit = limit;
request.setLimit(limit);
}
@Override
public QueryResultWrapper next() throws BackendException {
QueryResultWrapper wrapper = super.next();
int returnedCount = getReturnedCount();
// If we already have reached the limit for this query, we can stop making new requests
if (returnedCount >= limit) {
markComplete();
} else {
// Make sure we don't ask DynamoDB for more results than we care about
final int maxRemainingRecords = limit - returnedCount;
Preconditions.checkState(maxRemainingRecords > 0);
getRequest().setLimit(maxRemainingRecords);
}
return wrapper;
}
@Override
protected List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy