DynamoDB javascript Shellを使用して簡単なテーブルを作成しようとしていますが、この例外が発生しています。
{
"message": "The number of attributes in key schema must match the number of attributes defined in attribute definitions.",
"code": "ValidationException",
"time": "2015-06-16T10:24:23.319Z",
"statusCode": 400,
"retryable": false
}
以下は、私が作成しようとしているテーブルです。
var params = {
TableName: 'table_name',
KeySchema: [
{
AttributeName: 'hash_key_attribute_name',
KeyType: 'HASH',
},
],
AttributeDefinitions: [
{
AttributeName: 'hash_key_attribute_name',
AttributeType: 'S',
},
{
AttributeName: 'attribute_name_1',
AttributeType: 'S',
}
],
ProvisionedThroughput: {
ReadCapacityUnits: 1,
WriteCapacityUnits: 1,
},
};
dynamodb.createTable(params, function(err, data) {
if (err) print(err);
else print(data);
});
ただし、2番目の属性をkeySchemaに追加すると、正常に機能します。作業テーブルの下:
var params = {
TableName: 'table_name',
KeySchema: [
{
AttributeName: 'hash_key_attribute_name',
KeyType: 'HASH',
},
{
AttributeName: 'attribute_name_1',
KeyType: 'RANGE',
}
],
AttributeDefinitions: [
{
AttributeName: 'hash_key_attribute_name',
AttributeType: 'S',
},
{
AttributeName: 'attribute_name_1',
AttributeType: 'S',
}
],
ProvisionedThroughput: {
ReadCapacityUnits: 1,
WriteCapacityUnits: 1,
},
};
dynamodb.createTable(params, function(err, data) {
if (err) print(err);
else print(data);
});
キースキーマに範囲を追加したくありません。それを修正する方法はありますか?
DynamoDBはスキーマレスです(キースキーマを除く)
つまり、テーブルを作成するときにキースキーマ(属性名とタイプ)を指定する必要があります。さて、キー以外の属性を指定する必要はありません。後で任意の属性を持つアイテムを配置できます(もちろんキーを含める必要があります)。
ドキュメントページ から、AttributeDefinitions
は次のように定義されます。
テーブルとインデックスのキースキーマを記述する属性の配列。
テーブルを作成するとき、AttributeDefinitions
フィールドはハッシュおよび/または範囲キーのみに使用されます。最初のケースでは、2つのAttributeDefinitionsを提供している間、ハッシュキー(番号1)のみがあります。これが例外の根本的な原因です。
TL; DRAttributeDefinitions
には非キー属性定義を含めないでください。
「AttributeDefinitions」で非キー属性を使用する場合、それをインデックスとして使用する必要があります。そうしないと、dynamodbが機能しなくなります。 link を参照してください
したがって、インデックスまたは主キーとして使用しない場合は、「AttributeDefinitions」に非キー属性を配置する必要はありません。
var params = {
TableName: 'table_name',
KeySchema: [ // The type of of schema. Must start with a HASH type, with an optional second RANGE.
{ // Required HASH type attribute
AttributeName: 'UserId',
KeyType: 'HASH',
},
{ // Optional RANGE key type for HASH + RANGE tables
AttributeName: 'RemindTime',
KeyType: 'RANGE',
}
],
AttributeDefinitions: [ // The names and types of all primary and index key attributes only
{
AttributeName: 'UserId',
AttributeType: 'S', // (S | N | B) for string, number, binary
},
{
AttributeName: 'RemindTime',
AttributeType: 'S', // (S | N | B) for string, number, binary
},
{
AttributeName: 'AlarmId',
AttributeType: 'S', // (S | N | B) for string, number, binary
},
// ... more attributes ...
],
ProvisionedThroughput: { // required provisioned throughput for the table
ReadCapacityUnits: 1,
WriteCapacityUnits: 1,
},
LocalSecondaryIndexes: [ // optional (list of LocalSecondaryIndex)
{
IndexName: 'index_UserId_AlarmId',
KeySchema: [
{ // Required HASH type attribute - must match the table's HASH key attribute name
AttributeName: 'UserId',
KeyType: 'HASH',
},
{ // alternate RANGE key attribute for the secondary index
AttributeName: 'AlarmId',
KeyType: 'RANGE',
}
],
Projection: { // required
ProjectionType: 'ALL', // (ALL | KEYS_ONLY | INCLUDE)
},
},
// ... more local secondary indexes ...
],
};
dynamodb.createTable(params, function(err, data) {
if (err) ppJson(err); // an error occurred
else ppJson(data); // successful response
});
私もこの問題を抱えていたので、他の人に役立つ場合に備えて、ここで私が間違ったことを投稿します。
CreateTableRequestには、GlobalSecondaryIndexesの空の配列がありました。
CreateTableRequest createTableRequest = new CreateTableRequest
{
TableName = TableName,
ProvisionedThroughput = new ProvisionedThroughput { ReadCapacityUnits = 2, WriteCapacityUnits = 2 },
KeySchema = new List<KeySchemaElement>
{
new KeySchemaElement
{
AttributeName = "Field1",
KeyType = KeyType.HASH
},
new KeySchemaElement
{
AttributeName = "Field2",
KeyType = KeyType.RANGE
}
},
AttributeDefinitions = new List<AttributeDefinition>()
{
new AttributeDefinition
{
AttributeName = "Field1",
AttributeType = ScalarAttributeType.S
},
new AttributeDefinition
{
AttributeName = "Field2",
AttributeType = ScalarAttributeType.S
}
},
//GlobalSecondaryIndexes = new List<GlobalSecondaryIndex>
//{
//}
};
テーブル作成でこれらの行をコメントアウトすると、問題が解決しました。したがって、リストは空ではなくヌルでなければなりません。