Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
0 answers
73 views

I have a service running on aws fargate. This service is using dynamo db hosted in x region. I want to migrate my dynamo db from one aws region (x) to another (y). If our services can accomodate ...
Vikas's user avatar
  • 11
0 votes
0 answers
38 views

I have the following class that I am using as a dynamodb item in Kotlin @DynamoDbBean data class Transaction( @get:DynamoDbPartitionKey val userId: Int, @get:DynamoDbSortKey val ...
Salil Surendran's user avatar
0 votes
1 answer
72 views

I'm trying to upgrade my DynamoDB client from SDK 1 to SDK 2 (full versions at bottom), and I'm running into a strange issue. Server is unchanged (literally hitting the same tables). We're trying to ...
dlipofsky's user avatar
  • 421
1 vote
0 answers
58 views

I'm implementing a solution with high throughput, 500 - 700 items per second per instance, and I'm using DynamoDB for persistence. For every item I performat least 2 writes and one read, some like: ...
Cristian's user avatar
  • 501
1 vote
1 answer
86 views

I have a DynamoDB table with entries that can have a status (waiting, error, running...). Only up to 25 entries can have running status. My objective is to have an AWS Lambda function that checks if ...
Learning from masters's user avatar
0 votes
0 answers
58 views

I’m seeing a weird intermittent read issue with DynamoDB using the AWS SDK for JavaScript v3. For some (but not all) item IDs, the first call to GetItem returns no item, and the second call ...
ksadjad's user avatar
  • 603
3 votes
1 answer
126 views

I have this data to entry into AWS DynamoDB: item = { "PK": { "S": "DEBUG" }, "SK": { "S": "#ID_LOG#2025-10-09T07:48:...
Medical physicist's user avatar
0 votes
1 answer
46 views

I have an use-case of building a news feed for which I store the articles along with the timestamps in a DynamoDB table. I want to build infinite scrolling capability, and retrieve the article with ...
Ramesh's user avatar
  • 187
0 votes
1 answer
98 views

Suppose I have 110 records and I filter upon status for the first page two calls are made the first calls scans 25 items and after filter it receives 20 matching items , it uses the id of the 25th ...
Khushi Bansal's user avatar
-1 votes
1 answer
62 views

Working on an API endpoint where I need to send custom-formatted Json data to a DynamoDB table, store the original types of each field, and then convert the DynamoDb Json export back into my custom ...
Wallace's user avatar
0 votes
1 answer
52 views

I have a DynamoDB table defined as follows: Partition key: id (string) Sort key: ruleId (string) Example item: { "id": "123", "ruleId": "abc" } What I want is ...
Maayan Israel's user avatar
0 votes
0 answers
79 views

Please help me to understand how to properly and correctly use the list-function of AWS Amplify. After running into many issues of existing data not being found/retrieved, I found out that if no "...
oleracea's user avatar
0 votes
1 answer
74 views

TLDR: DynamoDB async query on GSI is returning duplicates when forcibly timing out the query request. I'm running performance tests on a solution built with CompletionStage and the non-blocking ...
Cristian's user avatar
  • 501
0 votes
1 answer
76 views

I have a table Tours with a Partition Key (PK) id, which is unique and a Global Secondary Index (GSI) geohash, which has repeated values. I need to get all the geohashes in the array geohashNeighbors, ...
Salvi Pascual's user avatar
0 votes
1 answer
51 views

I am doing dynamoDb connection for the first time. My goal is to save some data in dynamodb and I am using AWS SDK2 to doing so below is the error I am getting Few things I have tried Defined a @...
praveen BH's user avatar
1 vote
1 answer
68 views

We have an ecs service that uses Fargate tasks to connect to dynamoDB. The application has an optimized fetch time under 100ms when querying dynamoDB tables in our testing environment. For some R&...
IFaceErrors's user avatar
0 votes
1 answer
118 views

I am using Java 17, Spring Boot 2.6.2, Lombok, & aws-java-sdk-1.12.136 to create a RESTful API CRUD service. I need to create a DynamoDB table which should be able to sort books in chronological ...
PacificNW_Lover's user avatar
0 votes
1 answer
98 views

I'm trying to change my DynamoDB table from Provisioned to On Demand via CDK. The commented out code is what my table was provisioned with before, for autoscaling. table = new TableV2(this, props....
chinahalffull's user avatar
1 vote
0 answers
57 views

In AWS, I have a DynamoDB table with one of the fields as a map (my_map). This table is exposed to Athena, so data can be queried there (and eventually in Grafana). The Athena table shows a schema ...
Nisarg's user avatar
  • 336
0 votes
1 answer
62 views

I'm trying to write data from a Flink SQL job to a DynamoDB table, but I'm consistently getting the following error: Caused by: software.amazon.awssdk.services.dynamodb.model.DynamoDbException: The ...
Chiara Capuano's user avatar
1 vote
1 answer
93 views

My Dynamodb table has both PK and SK. it has huge data set(500 GB). I'm using below syntax for querying data based on PK in Glue, But it does a full table scan leading to the glue timeout. Have ...
mariz's user avatar
  • 541
0 votes
0 answers
54 views

I'm using the AmazonDynamoDBLockClient for some synchronizations and something strange is happening when breakpoints are enabled. Whenever I'm debugging something or the thread is paused on a ...
Cristian's user avatar
  • 501
1 vote
0 answers
71 views

I have this table that has this line on it as you can see below: id,"data_dia","nome_completo","nome_produto","nome_tuna","numero_socio","...
bestry's user avatar
  • 21
0 votes
0 answers
157 views

I found conflicting information w.r.t AWS docs, as the AWS developer guide says: “Synchronous service clients in the AWS SDK for Java 2.x use an Apache-based HTTP client, ApacheHttpClient by ...
vinrt's user avatar
  • 53
2 votes
1 answer
53 views

I have a DynamoDB table with the following item structure: PK: PARENT#<ID>, SK: PARENT#<ID> PK: PARENT#<ID>, SK: CHILD_A#<ID> PK: PARENT#<ID>, SK: CHILD_B#<ID> PK: ...
Reddi's user avatar
  • 773
1 vote
1 answer
53 views

We're using DynamoDB with the Single Table Design pattern for our system, and I need help modeling the Response entity. Context Our platform allows users to create Panels for recruiting participants ...
Jack's user avatar
  • 137
0 votes
0 answers
78 views

I am migrating some services to aws SDK V3, and I need to use web identity token for the credentials, but I am facing a strange problem where it works for an hour and the first request after this hour ...
Augusto Timm's user avatar
0 votes
1 answer
37 views

I want to select all calls happened or at least started or ended between 2 date range in dynamodb. Partition key is some id and sort key is leftRoom. Is it correct approach? left is end time, started ...
Enkhbayar's user avatar
0 votes
1 answer
41 views

I'm using IAmazonDynamoDB.QueryAsync(request) to query and filter on an index. Now, in trying to cast the result to my model type, I'm doing the following: var item = response.Items.First(); // I have ...
The-IT's user avatar
  • 738
1 vote
1 answer
73 views

I am getting an error of: ValidationException: Invalid UpdateExpression: Two document paths overlap with each other; must remove or rewrite one of these paths; path one: [photos], path two: [photos] ...
Renz Carillo's user avatar
-4 votes
1 answer
55 views

I have an interesting use-case where I want to check if in my dynamo table there exists a key value pair whose sort key is a substring of the given input string. I dont want to fetch all the data in ...
Jayant Patil's user avatar
0 votes
0 answers
192 views

In aws sdk v1 : @DynamoDBAutoGeneratedTimestamp(strategy = DynamoDBAutoGenerateStrategy.CREATE) Above annotation was there to create auto generated time field. In aws sdk v2 replaced with below code: ...
adarsh's user avatar
  • 142
0 votes
1 answer
68 views

I want to perform an atomic write in DynamoDB using TransactWriteItems that includes: An atomic update (ADD) on a wallet balance. A PutItem to write a corresponding transaction record. Here is the ...
Shashank's user avatar
0 votes
1 answer
60 views

Environment: NodeJS used with "aws-sdk": "^2.1692.0" to test DynamoDB operations Goal: To fetch an item in an exsiting table called CUSTOMER_LIST which contains a list of items. ...
Sunny's user avatar
  • 435
0 votes
1 answer
43 views

I am trying to insert a record in dynamodb and then get it processed using a lambda via SQS. This record contains a complex object. When I am inserting it using the sdk, i am able to see the record in ...
AppleBud's user avatar
  • 1,541
0 votes
1 answer
89 views

Our team has been running into challenges with hot partitions and we have determined that Contributor Insights would be a great tool to use for future hot partitioning issues. The problem is we do no ...
Frederick Haug's user avatar
1 vote
1 answer
89 views

Extending from DynamoDB Limit on query. I have a use case where the need is to fetch the latest available exchange rate from table. I've considered the following setup: partition key as currency_pair ...
mysteryFruit's user avatar
0 votes
1 answer
104 views

Working with Java and DynamoDB Dax, unable to find any clear examples for Dax. There are 3 packages https://mvnrepository.com/artifact/software.amazon.dax/amazon-dax-client https://mvnrepository.com/...
Interested_Programmer's user avatar
0 votes
0 answers
33 views

I’m using a DynamoDB stream to read data. The data contains several columns, and a few of them are expected to be of SUPER type in Redshift, as they include lists, dictionaries, or string values. I'm ...
junaid raza's user avatar
0 votes
0 answers
62 views

I have below code: DeleteItemOutcome outcome = table.deleteItem(primaryKey); int status = outcome.getDeleteItemResult().getSdkHttpMetadata().getHttpStatusCode(); This is working fine when using with ...
ClassHacker's user avatar
0 votes
0 answers
39 views

Let's say I have 2 types of item in my DDB table: Trains and Passengers. They look like this: { "type": "train", "id": "OrientExpress" // partition key } { ...
fblundun's user avatar
  • 1,017
0 votes
0 answers
22 views

I have a use-case when I need to get all items in a dynamodb table by their partition key. I am using the DynamoDbEnhancedAsyncClient and I want my items to be paginated so that when I do the get ...
Valentin Stamate's user avatar
0 votes
1 answer
66 views

# context : AWS Amplify gen 2 (angular) According to Amplify doc https://docs.amplify.aws/angular/build-a-backend/data/customize-authz/ ,the available authorization strategies do not consider my case,...
Christian Renoux's user avatar
0 votes
1 answer
105 views

I'm trying to setup a devcontainer for rust project which uses dynamodb as its database. This is the compose file (referenced AWS docs) services: api: build: context: . ...
Cloud Engineer's user avatar
0 votes
1 answer
121 views

I have this data model public class ChallengePart_dynamoDB { [DynamoDBProperty("numPlayers")] public string NumPlayers { get; set; } [DynamoDBProperty("header")] ...
Kasper Sommer's user avatar
0 votes
0 answers
132 views

I'm trying to flatten a DynamoDB JSON file with Polars. My JSON file is 1GB, 100mo after compressing to gz but in memory when I read it, it uses 16GB. Because the data comes from DynamoDB, my columns ...
Franck Cussac's user avatar
1 vote
1 answer
63 views

So I currently have tens of thousands of items I need to get from dynamo on a call. In my testing, with just 16K+ items, it takes around 750-1000ms for dynamo to return all the data. Not terrible, ...
Limey's user avatar
  • 2,796
0 votes
1 answer
75 views

I have a project using DynamoDB which I'm upgrading to Java SDK v2.0 Using the new enhanced client and type mapping. I have an index name which I need to pass to @DynamoDbSecondaryPartitionKey, ...
HellaWiggly's user avatar
0 votes
0 answers
41 views

I'm querying a DynamoDB GSI (parentUploadId-index) to get the first incomplete record (where status <> "COMPLETED") for a given parentUploadId. Here's my code: public async Task<(...
vkandvia's user avatar
  • 107
0 votes
2 answers
74 views

I am using the AWS OpenSearch ingestion pipeline for linking data from DDB to OpenSearch. I have set up the DLQ configuration. But I am stuck on forcing a pipeline to send messages to DLQ. Any easy ...
Milind Chaudhary's user avatar

1
2 3 4 5
287