spring-data-dynamodb icon indicating copy to clipboard operation
spring-data-dynamodb copied to clipboard

This module deals with enhanced support for a data access layer built on AWS DynamoDB.

Results 102 spring-data-dynamodb issues
Sort by recently updated
recently updated
newest added

Currently we are using the dynamoDBMapper to access the db resource . And we have one use case to access the cross account resource. And we are trying to use...

I have a main Player table and two gsi tables demonstrated below: Player ------------------------------ Partition Key - PlayerId Attribute - ScoreType1 Attribute - ScoreType2 Attribute - IsoCountryCode GSI-1 ------------------------------ Partition...

https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBMapper.Transactions.html Support has been added, I went ahead and did a couple test builds but they don't work like traditional transactions. I basically just added code to the DynamoOperations interface...

## Expected Behavior test works ## Actual Behavior test doesnt work. I make small test for dynamodb. test is failed with message `This Spring Data DynamoDB implementation might not be...

https://github.com/aws/aws-sdk-java-v2/blob/dynamodb-enhanced/services-custom/dynamodb-enhanced/README.md It's finally happening, might start a fork to get ahead of the ball. Async Clients! Transactions! Hooray. Please let me now if anyone want's to help! ## Specifications -...

Hello Experts, Below is the code that I am using in my application. **DateTime** is the field used as sort key for table and GSI. When we query as below...

bug
update documentation

## Expected Behavior I have my dev and stage env in one AWS region and I am using the suffix `_dev and _stage` to tables. Is there any way to...

## Expected Behavior TableNameResolver should be called for every query ## Actual Behavior TableNameResolver is not called for secondary indexes ## Steps to Reproduce the Problem 1. Create a GSI...

## Expected Behavior I have a paging repository as follows: ``` public interface PagingMessageLogRepository extends PagingAndSortingRepository { Page findByInstanceIdOrderByInsertedDateDesc(Long instanceId, Pageable pageable); Page findByInstanceIdInOrderByInsertedDateDesc(List instanceId, Pageable pageable); } ``` instanceId...