-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Non-existent table with local dynamoDB #78
Comments
Also tried defining region explicitly with |
FYI: I am running jcabi-dynamo v0.20. |
@piotrkot looks like table |
@yegor256 The table seems to be fine. It was created from JS shell command with following instructions:
Later I checked this table description and it also seems fine (listed in the first comment). As I said I was able to add item into the table from JavaScript shell but not from jcabi-dynamo. |
@yegor256 That is all the code I have. JS to create a table, JS to check table description (to verify its OK), JS to add an item, and Java code to add the item with jcabi-dynamo. The Java code throws exception. |
@yegor256 It is really simple to reproduce. Please, let me know what you are missing. |
@yegor256 ping |
@piotrkot honestly, I have no idea what's wrong. Obviously, jcabi-dynamo works fine with DynamoDBLocal, you can see them in a few projects, for example here: https://github.com/yegor256/jare All I can suspect is that you drop your DynamoDBLocal before running Java tests. Make sure it's not happening. |
I have a similar problem with local dynamoDB and I use python. ps: i tested dynamoDB local previous ( create a table, restart the machine, and the table was still there. Hum) |
I've got the same problem, it's pretty strange as the table is obviously created and present, but jvm app connected to that endpoint cannot see the table akka/akka-persistence-dynamodb#47 (comment) |
Resolved here https://stackoverflow.com/a/29560004/306488 |
com.amazonaws.services.dynamodbv2.model.ResourceNotFoundException: Cannot do operations on a non-existent table (Service: AmazonDynamoDBv2; Status Code: 400; Error Code: ResourceNotFoundException; |
I am running local dynamoDB (2016-05-17) on port 8000. As described here the local jar file is created - cUniqueSessionID_us-west-2.db.
New table - users - was successfully created from local Javascript shell
I am able to add an item to the table from local Javascript shell but not from jcabi-dynamo.
This is not working although I think it should:
The text was updated successfully, but these errors were encountered: