'DynamoDB NoSQL Workbench test table not visible
I'm new on DynamoDB and using NoSQL Workbench to learn. There is a new "Example" table in "Data modeler" section. I made a new LOCAL connection under "Operation builder" section to work on/test the "Example" table. Connection was created successfully and there was no error. But I can't see any table under Connection part. It says "No table found". I can't understand the problem. I think, I should see the "Example" table that is visible under "Data modeler" section. How can I see the table in Connection section?
Solution 1:[1]
You have to create the table and add items to it. You can add items to the table in the visualizer section, and then commit the items to DynamoDB.
Solution 2:[2]
For MySQL WorkBench to view, you can put the directory name as the same as the image to be uploaded
An example using localstack:
Create the following directory on your computer:
|
|docker
||
| localstack
| |
| |docker-compose.yml
|
docker-compose:
version: '3'
services:
localstack:
container_name: localstack
image: localstack/localstack
hostname: localstack
...
Navigate to directory with CMD:
cd docker/localstack
Run:
docker-compose up -d
Create new connection in NoSQL Workbench \ Operation Builder:
Connection name: localstack
Hostname: localstack
Port: 4566

Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | |
| Solution 2 | benson23 |
