We have an application that constantly write to datalake. The append method below is called about 1000 times a minutes. public class AdlAppender { private static final String datalake = ...
I have an array I want to append to in my dynamo table, currently I can't do this with DynamoDBMapper.save(). I first have to read the row out of dynamo, append to the array in memory, and then save ...