该问题可能是由于数据库终端点创建失败或 Neptune 服务故障导致的。您可以尝试手动删除终端点并重新创建终端点。下面是一个示例 Python 代码,用于删除 Neptune 数据库终端点:
import boto3
client = boto3.client('neptune')
# Replace 'my-endpoint' with your Neptune endpoint name
response = client.delete_db_cluster_endpoint(
DBClusterEndpointIdentifier='my-endpoint'
)
print(response)
如果您仍然遇到问题,请查看 Neptune 服务的状态和日志以获取更多信息。
上一篇:AWSNeptune性能问题