问题描述
我是 boto3 的新用户,我正在使用 DynamoDB.
I'm a new user in boto3 and i'm using DynamoDB.
我浏览了 DynamoDB api,但找不到任何方法可以告诉我表是否已经存在.
I went through over the DynamoDB api and I couldn't find any method which tell me if a table is already exists.
处理此问题的最佳方法是什么?
What is the best approach dealing this issue?
我应该尝试创建一个新表并使用 try catch 包装它吗?
Should I try to create a new table and wrap it using try catch ?
推荐答案
通过阅读文档,我可以看到有三种方法可以检查表是否存在.
From reading the documentation, I can see that there are three methods by which you can check if a table exists.
- CreateTable API 引发错误
ResourceInUseException如果表已经存在.用 try 包裹 create_table 方法来捕捉它 - 您可以使用 ListTables API 获取与当前帐户和端点关联的表名列表.检查您在响应中获得的表名列表中是否存在该表名.
- DescribeTable API 会抛出错误
ResourceNotFoundException如果您请求的表名不存在.
- The CreateTable API throws an error
ResourceInUseExceptionif the table already exists. Wrap the create_table method with try except to catch this - You can use the ListTables API to get the list of table names associated with the current account and endpoint. Check if the table name is present in the list of table names you get in the response.
- The DescribeTable API will throw an error
ResourceNotFoundExceptionif the table name you request doesn't exist.
对我来说,如果您只想创建一个表,第一个选项听起来更好.
To me, the first option sounds better if you just want to create a table.
我看到有些人发现很难捕捉到异常.我会在下面放一些代码让你知道如何处理boto3中的异常.
I see that some people are finding it difficult to catch the exceptions. I will put some code below for you to know how to handle exceptions in boto3.
示例 1
import boto3
dynamodb_client = boto3.client('dynamodb')
try:
response = dynamodb_client.create_table(
AttributeDefinitions=[
{
'AttributeName': 'Artist',
'AttributeType': 'S',
},
{
'AttributeName': 'SongTitle',
'AttributeType': 'S',
},
],
KeySchema=[
{
'AttributeName': 'Artist',
'KeyType': 'HASH',
},
{
'AttributeName': 'SongTitle',
'KeyType': 'RANGE',
},
],
ProvisionedThroughput={
'ReadCapacityUnits': 5,
'WriteCapacityUnits': 5,
},
TableName='test',
)
except dynamodb_client.exceptions.ResourceInUseException:
# do something here as you require
pass
示例 2
import boto3
dynamodb_client = boto3.client('dynamodb')
table_name = 'test'
existing_tables = dynamodb_client.list_tables()['TableNames']
if table_name not in existing_tables:
response = dynamodb_client.create_table(
AttributeDefinitions=[
{
'AttributeName': 'Artist',
'AttributeType': 'S',
},
{
'AttributeName': 'SongTitle',
'AttributeType': 'S',
},
],
KeySchema=[
{
'AttributeName': 'Artist',
'KeyType': 'HASH',
},
{
'AttributeName': 'SongTitle',
'KeyType': 'RANGE',
},
],
ProvisionedThroughput={
'ReadCapacityUnits': 5,
'WriteCapacityUnits': 5,
},
TableName=table_name,
)
示例 3
import boto3
dynamodb_client = boto3.client('dynamodb')
try:
response = dynamodb_client.describe_table(TableName='test')
except dynamodb_client.exceptions.ResourceNotFoundException:
# do something here as you require
pass
这篇关于如何检查 DynamoDB 表是否存在?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)