亚马逊 AWS DynamoDB 桌面客户端-是否存在?

我一直在网上寻找其中的一个,但是我只找到 node.js/ruby 托管的实现。

我渴望拥有一个 DynamoDB 应用程序,类似于 Navicat 之类的应用程序,它带有 msi 安装程序,可以快速运行。

也许有个合理的理由可以解释为什么现在还没有这样的东西?

79671 次浏览

I'm not aware of a dedicated desktop application for using Amazon DynamoDB from Windows yet.

However, the AWS Toolkits for Eclipse and Visual Studio both allow you to create tables, insert and edit data, initiate table scans, and more, straight from your local development environment (see the introductory post AWS Toolkits for Eclipse and Visual Studio Now Support DynamoDB).

So depending on your use case this might be all you need (or even better, if this is targeting a development scenario).


Update

The AWS team has just announced the option to Explore Your DynamoDB Tables Using the AWS Management Console as well:

You can now view and modify the contents of your DynamoDB tables from within the AWS Management Console. With the addition of this new feature, you can learn by doing -- trying out a number of DynamoDB features without even writing any code. You can create a table, add some items, and see them in the table, all through a very clean and simple user interface.

This is obviously a very convenient addition to the rich client options referenced in my initial answer above, please check out the post itself for a short illustrated tour to help you get started.

Amazon provides a local client for DynamoDb. It's a java jar and it runs on Linux and Windows.

It starts a server that binds to port 8000 at localhost (or you can specify another port when you start the server).

Download and unpack the desktop client, change the endpoint inside your app to localhost:8000, and then you can use the desktop client for DynamoDb.

Here you can download and read about installing the dynamodb desktop client.

RazorSQL Database GUI Tool for Amazon DynamoDB

http://razorsql.com/articles/razorsql_amazon_dynamodb.html

If you are using DynamoDB local for development you can use the built-in DynamoDB shell: http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tools.DynamoDBLocal.Shell.html

http://localhost:8000/shell

UPDATE: Amazon does also provide an official client: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/workbench.html