gh-97 Bug fixes in dynamodb plugin

I have fixed a bug in insert() and delete() methods.There are also
some cosmetic changes to readme and properties files.
This commit is contained in:
Janani Narayanan 2012-10-22 10:58:38 -07:00 коммит произвёл Michi Mutsuzaki
Родитель 3827d9a303
Коммит 9fef32a19f
5 изменённых файлов: 11 добавлений и 8 удалений

Просмотреть файл

@ -3,10 +3,13 @@ CONFIGURE
YCSB_HOME - YCSB home directory
DYNAMODB_HOME - Amazon DynamoDB package files
Please refer to https://github.com/brianfrankcooper/YCSB/wiki/Using-the-Database-Libraries
for more information on setup.
BENCHMARK
$YCSB_HOME/bin/ycsb load dynamodb -P worklaods/workloada -P dynamodb.properties
$YCSB_HOME/bin/ycsb run dynamodb -P worklaods/workloada -P dynamodb.properties
$YCSB_HOME/bin/ycsb load dynamodb -P workloads/workloada -P dynamodb.properties
$YCSB_HOME/bin/ycsb run dynamodb -P workloads/workloada -P dynamodb.properties
PROPERTIES

Просмотреть файл

@ -249,7 +249,7 @@ public class DynamoDBClient extends DB {
logger.error(ex.getMessage());
return CLIENT_ERROR;
}
return res.getConsumedCapacityUnits().intValue();
return OK;
}
@Override
@ -267,7 +267,7 @@ public class DynamoDBClient extends DB {
logger.error(ex.getMessage());
return CLIENT_ERROR;
}
return res.getConsumedCapacityUnits().intValue();
return OK;
}
private static Map<String, AttributeValue> createAttributes(