You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have that table deployed on a local dynamodb instance:
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
f9029346a985 amazon/dynamodb-local:latest "java -jar DynamoDBL…" 3 weeks ago Up 2 weeks 0.0.0.0:8000->8000/tcp, :::8000->8000/tcp dynamodb-local
I have made a generic batch writer function for all my batch writing needs. The end result of that python code boils down to this:
When I try to delete now the aforementioned record with this code, it does not work.
If I check the debug logs, there are no unprocessed records nor any other mention of an error whatsoever:
No idea what is going wrong here, but it seems like a bug somewhere in boto3. Any ideas?
Also, I would love to easily catch those unprocessed items, but they seem not to be returned by the batch writer.
Expected Behavior
Well, that it deletes the records for which I specified the keys and does not fail silently on me.
Current Behavior
It does not delete the record nor does it raise an error
Reproduction Steps
If all the stuff mentioned above is deployed, I guess this would suffice:
This can be closed. I just noticed I was targeting the wrong table. Still, it would be nice if this would not simply pass happily without raising an error though...
Comments on closed issues are hard for our team to see.
If you need more assistance, please either tag a team member or open a new issue that references this one.
If you wish to keep having a conversation with other community members under this issue feel free to do so.
Describe the bug
I have a dynamodb table containing this record:
The dynamodb table is defined as follows:
I have that table deployed on a local dynamodb instance:
I have made a generic batch writer function for all my batch writing needs. The end result of that python code boils down to this:
When I try to delete now the aforementioned record with this code, it does not work.
If I check the debug logs, there are no unprocessed records nor any other mention of an error whatsoever:
No idea what is going wrong here, but it seems like a bug somewhere in boto3. Any ideas?
Also, I would love to easily catch those unprocessed items, but they seem not to be returned by the batch writer.
Expected Behavior
Well, that it deletes the records for which I specified the keys and does not fail silently on me.
Current Behavior
It does not delete the record nor does it raise an error
Reproduction Steps
If all the stuff mentioned above is deployed, I guess this would suffice:
Possible Solution
No testcase for this in the boto3 deployment pipeline?
Additional Information/Context
No response
SDK version used
boto3==1.34.25 botocore==1.34.25
Environment details (OS name and version, etc.)
Python 3.11.7 on Ubuntu 22.04.3 LTS
The text was updated successfully, but these errors were encountered: