skip to Main Content

Getting Crc32MismatchException when using dynamodb enhanced client when we are using queryPaginator – Amazon Web Sevices

Bug description We tried to queryPaginator using DynamoDbEnhancedClient but we got software.amazon.awssdk.core.exception.Crc32MismatchException. software.amazon.awssdk.core.exception.Crc32MismatchException: Expected 4178815326 as the Crc32 checksum but the actual calculated checksum was 3264908315 Expected Behavior I should be able to queryPaginator results Current Behavior Error logs: "exception":"software.amazon.awssdk.core.exception.Crc32MismatchException:…

VIEW QUESTION

Why isn't KenisisClient.putRecord() not accepting a valid PutRecordRequest – Amazon Web Sevices

Here is my code KinesisClient kinesisClient = KinesisClient.builder().build(); PutRecordRequest putRecordRequest = new PutRecordRequest(); putRecordRequest.setStreamName("stream-name"); putRecordRequest.setPartitionKey("SomeString-" + UUID.randomUUID()); putRecordRequest.setData(ByteBuffer.wrap(data)); PutRecordResponse putRecordResponse = kinesisClient.putRecord(putRecordRequest); For some strange reason it's saying it can't resolve the putRecord(PutRecordRequest) method even though it's clearly there when…

VIEW QUESTION

In Java, Azure applicationinsights starter dependency not compatible with spring boot 3.x.x

I wanted to integrate application insights into my spring boot application**(v3.x.x)** and for that I have used below dependency in my build.gradle. implementation 'com.microsoft.azure:applicationinsights-spring-boot-starter:2.6.4' In my controller, I have injected TelemetryClient bean like: @RestController @RequestMapping("/") public class UserController { @Autowired…

VIEW QUESTION
Back To Top
Search