Open ranchodeluxe opened 4 years ago
Hi @ ranchodeluxe Having a look...
@ranchodeluxe Can you please provide me with a sample of both hashmaps you're using here lower_left and lower_left?
Hello, I am facing the same issue. Indeed it is due to pagination.
The ExclusiveStartKey
remains in the params dict, it must be removed before next query.
Simple fix in DynamoDBManager.py:
while 'LastEvaluatedKey' in response:
params['ExclusiveStartKey']=response['LastEvaluatedKey']
response = self.config.dynamoDBClient.query(**params)
del params['ExclusiveStartKey'] # cleanup
data.extend(response['Items'])
Hello, We are doing a simple bbox request that results in this
ValidationError
below.We are trying to figure out why this error is only occurring for general geographic region. Our data has
geohash
keys and it works fine in other regions. I feel likequeryRectangle
might be changing the query condition while paginating? Wondering if anyone here has seen this type of behavior before?