检查DynamoDb中是否存在表格的最佳方法是什么?
如果代码是PHP,我将不胜感激。
是否有效。
* 稍后作为示例添加到错误代码400的各种情况
检查表是否存在非常容易,它可以具有以下之一 TableStatus =>创建,激活,删除或更新
但是如果我得到错误400,它可能意味着不止一件事。
1)错误地将空字符串作为表名发送。
[x-aws-body] => {"表名":""} )
[body] => CFSimpleXML Object
(
[__type] => com.amazon.coral.validate#ValidationException
[message] => The paramater 'tableName' must be at least 3 characters long and at most 255 characters long
)
[status] => 400
2)发送到DynamoDB的命令中的语法错误,例如写入tabel_name而不是table_name。
[x-aws-body] => {" TabelName":" TEST7"} )
[body] => CFSimpleXML Object
(
[__type] => com.amazon.coral.validate#ValidationException
[message] => The paramater 'tableName' is required but was not present in the request
)
[status] => 400
3)如果我同时超过桌面上的预备容量,我会猜测但是没有检查。
答案 0 :(得分:7)
其中一些答案使用的是较旧的SDK,因此我认为我会用我编码的内容更新这个有用的问题并且效果很好。较新的例外确实使这项任务更容易。这个函数为你提供了一个很好的布尔值来在脚本中使用。
use Aws\DynamoDb\Exception\ResourceNotFoundException; // <-- make sure this line is at the top
public function TableExists($tableName) {
$ddb = DynamoDbClient::factory(array('region' => 'us-east-1')); // EC2 role security
try {
$result = $ddb->describeTable(array(
"TableName" => $tableName
));
} catch (ResourceNotFoundException $e) {
// if this exception is thrown, the table doesn't exist
return false;
}
// no exception thrown? table exists!
return true;
}
希望这个完整的工作代码可以帮助你们。
答案 1 :(得分:6)
您可以查看官方PHP SDK的“ describe_table ”。 400 表示“不存在”官方文档中有一个非常广泛的示例。看一下如何在“删除”示例中使用它,就在底部。
以下是doc
中的(剥离)示例<?php
require_once dirname(__FILE__) . '/sdk/sdk.class.php';
$dynamodb = new AmazonDynamoDB();
$table_name = 'ExampleTable';
$response = $dynamodb->describe_table(array('TableName' => $table_name));
if((integer) $response->status !== 400)
{
$error_type = $response->body->__type;
$error_code = explode('#', $error_type)[1];
if($error_code == 'ResourceNotFoundException')
{
echo "Table ".$table_name." exists.";
}
}
?>
答案 2 :(得分:6)
我认为使用describeTable
解决这个问题的答案是一个很好的答案,但是对状态代码响应的愚弄使得代码的可读性更低,更容易混淆。
我选择使用listTables
检查表是否存在。以下是 docs
$tableName = 'my_table';
$client = DynamoDbClient::factory(array('region' => 'us-west-2'));
$response = $client->listTables();
if (!in_array($tableName, $response['TableNames'])) {
// handle non-existence.
// throw an error if you want or whatever
}
// handle existence
echo "Table " . $tableName . " exists";
答案 3 :(得分:3)
使用DynamoDB,您需要解析错误消息的内容,以便了解您收到的错误类型,因为状态代码几乎总是400.这是一个示例函数,可用于确定表是否存在。它还允许您指定状态,如果您想检查它是否存在和,如果它处于某种状态。
<?php
function doesTableExist(AmazonDynamoDB $ddb, $tableName, $desiredStatus = null)
{
$response = $ddb->describe_table(array('TableName' => $tableName));
if ($response->isOK()) {
if ($desiredStatus) {
$status = $response->body->Table->TableStatus->to_string();
return ($status === $desiredStatus);
} else {
return true;
}
} elseif ($response->status === 400) {
$error = explode('#', $response->body->__type->to_string());
$error = end($error);
if ($error === 'ResourceNotFoundException') {
return false;
}
}
throw new DynamoDB_Exception('Error performing the DescribeTable operation.');
}
更新:在DynamoDB客户端的AWS SDK for PHP 2中,specific exceptions are thrown,使这种方式更容易处理。此外,还有“Waiter”对象,including one for this use case(see usage in the unit test),用于在表存在之前休眠。
答案 4 :(得分:1)
如果您只想知道表格是否存在,上述答案是正确的。我想在这里提出另一个有用的观点。
在多线程或生产级代码中应该非常小心。
假设一个线程删除了表,那么您仍然可以得到表存在的答案来回答第二个线程的查询,直到表被完全删除。在这种情况下,一旦删除了表,第二个线程中的表句柄就像僵尸一样,就像C ++中的悬空指针错误一样。
答案 5 :(得分:0)
使用dynamodb cli,您可以非常简单地完成以下操作:
aws dynamodb describe-table --table-name "my-table"
如果表存在,则返回
0 -- Command was successful. There were no errors thrown by either the CLI or by the service the request was made to.
如果表不存在,则返回
255 -- Command failed. There were errors thrown by either the CLI or by the service the request was made to.
另见: