I am currently using Aurora as my tracking database. This has been working well. However, looking into the tables/queries, I think it would be beneficial to have support for DynamoDB table with msg_id as hash-key and create_dt as the range-key.
As far as I can tell, all the DB interaction is implemented in DbTrackingModule (using a DB connection from IDBHandler)
Would it make sense to create DynamoDbTrackingModule to support the same operations in DbTrackingModule using DynamoDB?
I am happy to implement this and would appreciate some pointers in terms of design choices here before I start.
I am currently using Aurora as my tracking database. This has been working well. However, looking into the tables/queries, I think it would be beneficial to have support for DynamoDB table with
msg_idas hash-key andcreate_dtas the range-key.As far as I can tell, all the DB interaction is implemented in
DbTrackingModule(using a DB connection fromIDBHandler)Would it make sense to create
DynamoDbTrackingModuleto support the same operations inDbTrackingModuleusing DynamoDB?I am happy to implement this and would appreciate some pointers in terms of design choices here before I start.