You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there, my team is running into an issue with this library due to how READ_THROUGHPUT is set for On-Demand tables. The code defaults to the DynamoDB default of 40,000 for On-Demand tables:
However, we have increased the quota for our account with AWS to a value higher than this. Is there a way to get this READ_THROUGHPUT reflected in this library?
One possible way I found is if we set the readRatio to be higher than 1:
My question is, is this an acceptable usage of the readRatio parameter? Or should a more sustainable way to override the default 40,000 READ_THROUGHPUT for On-Demand tables be built into this library?
The text was updated successfully, but these errors were encountered:
Hi there, my team is running into an issue with this library due to how READ_THROUGHPUT is set for On-Demand tables. The code defaults to the DynamoDB default of 40,000 for On-Demand tables:
emr-dynamodb-connector/emr-dynamodb-tools/src/main/java/org/apache/hadoop/dynamodb/tools/DynamoDBExport.java
Lines 120 to 124 in 8d96fcd
However, we have increased the quota for our account with AWS to a value higher than this. Is there a way to get this READ_THROUGHPUT reflected in this library?
One possible way I found is if we set the readRatio to be higher than 1:
emr-dynamodb-connector/emr-dynamodb-tools/src/main/java/org/apache/hadoop/dynamodb/tools/DynamoDBExport.java
Line 141 in 8d96fcd
I believe the library allows this, and I think the correct calculations are reflected:
emr-dynamodb-connector/emr-dynamodb-hadoop/src/main/java/org/apache/hadoop/dynamodb/read/AbstractDynamoDBInputFormat.java
Lines 44 to 65 in bbe15ff
My question is, is this an acceptable usage of the readRatio parameter? Or should a more sustainable way to override the default 40,000 READ_THROUGHPUT for On-Demand tables be built into this library?
The text was updated successfully, but these errors were encountered: