Page MenuHomePhabricator

[services] Tunnelbroker - Function to put message items to the database by batch
ClosedPublic

Authored by max on Jun 28 2022, 6:44 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Nov 2, 2:21 PM
Unknown Object (File)
Sat, Nov 2, 2:21 PM
Unknown Object (File)
Sat, Nov 2, 2:21 PM
Unknown Object (File)
Sat, Nov 2, 2:21 PM
Unknown Object (File)
Sat, Nov 2, 2:21 PM
Unknown Object (File)
Sat, Nov 2, 2:21 PM
Unknown Object (File)
Sat, Nov 2, 2:20 PM
Unknown Object (File)
Sat, Nov 2, 2:17 PM

Details

Summary

This diff introduces the function to put messages to the database by a batch using the innerBatchWriteItem function from D4373.

Linear task: ENG-1301

Test Plan

Run test from D4377

Diff Detail

Repository
rCOMM Comm
Branch
add-put-messages-items-by-batch
Lint
No Lint Coverage
Unit
No Test Coverage

Event Timeline

tomek requested changes to this revision.Jun 29 2022, 5:01 AM
tomek added inline comments.
services/tunnelbroker/src/Database/DatabaseManager.cpp
171–194 ↗(On Diff #13894)

Could you find a way to avoid the duplication between this and putMessageItem?

199–201 ↗(On Diff #13894)

According to the documentation https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_BatchWriteItem.html

The individual PutItem and DeleteItem operations specified in BatchWriteItem are atomic; however BatchWriteItem as a whole is not. If any requested operations fail because the table's provisioned throughput is exceeded or an internal processing failure occurs, the failed operations are returned in the UnprocessedItems response parameter. You can investigate and optionally resend the requests. Typically, you would call BatchWriteItem in a loop. Each iteration would check for unprocessed items and submit a new BatchWriteItem request with those unprocessed items until all items have been processed.

especially

Typically, you would call BatchWriteItem in a loop. Each iteration would check for unprocessed items and submit a new BatchWriteItem request with those unprocessed items until all items have been processed.

Can we have something like that? Probably innerBatchWriteItem should be modified.

This revision now requires changes to proceed.Jun 29 2022, 5:01 AM
max marked 2 inline comments as done.

Using a private function to populate put requests in a one place instead of duplicating it.

services/tunnelbroker/src/Database/DatabaseManager.cpp
171–194 ↗(On Diff #13894)

Could you find a way to avoid the duplication between this and putMessageItem?

I've added a private function to populate the PutRequest and PutItemRequest in one place.

199–201 ↗(On Diff #13894)

According to the documentation https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_BatchWriteItem.html

The individual PutItem and DeleteItem operations specified in BatchWriteItem are atomic; however BatchWriteItem as a whole is not. If any requested operations fail because the table's provisioned throughput is exceeded or an internal processing failure occurs, the failed operations are returned in the UnprocessedItems response parameter. You can investigate and optionally resend the requests. Typically, you would call BatchWriteItem in a loop. Each iteration would check for unprocessed items and submit a new BatchWriteItem request with those unprocessed items until all items have been processed.

especially

Typically, you would call BatchWriteItem in a loop. Each iteration would check for unprocessed items and submit a new BatchWriteItem request with those unprocessed items until all items have been processed.

Can we have something like that? Probably innerBatchWriteItem should be modified.

innerBatchWriteItem in D4373 was modified according to this issue.

tomek added inline comments.
services/tunnelbroker/src/Database/DatabaseManager.cpp
138–142

It's probably possible to simplify the usage a bit by:

  1. creating a new instance of T in this function
  2. specialize based only on the return type

It would only work when T have a default constructor, but it's still worth considering

140

We shouldn't start a parameter name with uppercase letter

171–194 ↗(On Diff #13894)

Great!

This revision is now accepted and ready to land.Jul 1 2022, 3:43 AM
max marked 3 inline comments as done.

Rebase on the stack updates (innerBatchWriteItem function), fixed parameter name.

services/tunnelbroker/src/Database/DatabaseManager.cpp
138–142

It would only work when T have a default constructor, but it's still worth considering.

Yes, I was thinking about such an approach too, but not sure it's worth it here. Thanks for the suggestion!

140

We shouldn't start a parameter name with uppercase letter

Fixed, thanks!

Rebase on parents changes.

karol added inline comments.
services/tunnelbroker/src/Database/DatabaseManager.cpp
182–184 ↗(On Diff #14182)

Rebase on master.
The variable name was changed from curWriteRequest to writeRequest.

This revision was landed with ongoing or failed builds.Jul 25 2022, 6:58 AM
This revision was automatically updated to reflect the committed changes.