Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3512953
D13569.id44813.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D13569.id44813.diff
View Options
diff --git a/services/identity/src/database/device_list.rs b/services/identity/src/database/device_list.rs
--- a/services/identity/src/database/device_list.rs
+++ b/services/identity/src/database/device_list.rs
@@ -10,8 +10,9 @@
},
},
database::{
- AttributeExtractor, AttributeMap, DBItemAttributeError, DBItemError,
- DynamoDBError, TryFromAttribute,
+ batch_operations::ExponentialBackoffConfig, AttributeExtractor,
+ AttributeMap, DBItemAttributeError, DBItemError, DynamoDBError,
+ TryFromAttribute,
},
};
use serde::Serialize;
@@ -24,6 +25,7 @@
error_types, USERS_TABLE, USERS_TABLE_DEVICELIST_TIMESTAMP_ATTRIBUTE_NAME,
USERS_TABLE_PARTITION_KEY,
},
+ ddb_utils::is_transaction_conflict,
error::{DeviceListError, Error},
grpc_services::{
protos::{self, unauth::DeviceType},
@@ -820,7 +822,8 @@
);
return Err(Error::InvalidFormat);
}
- self
+
+ let db_operation = self
.client
.update_item()
.table_name(devices_table::NAME)
@@ -837,18 +840,29 @@
.expression_attribute_names("#content_prekey", ATTR_CONTENT_PREKEY)
.expression_attribute_names("#notif_prekey", ATTR_NOTIF_PREKEY)
.expression_attribute_values(":content_prekey", content_prekey.into())
- .expression_attribute_values(":notif_prekey", notif_prekey.into())
- .send()
- .await
- .map_err(|e| {
- error!(
- errorType = error_types::DEVICE_LIST_DB_LOG,
- "Failed to update device prekeys: {:?}", e
- );
- Error::AwsSdk(e.into())
- })?;
-
- Ok(())
+ .expression_attribute_values(":notif_prekey", notif_prekey.into());
+
+ let retry_config = ExponentialBackoffConfig::default();
+ let mut exponential_backoff = retry_config.new_counter();
+ loop {
+ let result = db_operation.clone().send().await;
+
+ match result {
+ Ok(_) => return Ok(()),
+ Err(err) => match DynamoDBError::from(err) {
+ ref conflict_err if is_transaction_conflict(conflict_err) => {
+ exponential_backoff.sleep_and_retry().await?;
+ }
+ error => {
+ error!(
+ errorType = error_types::DEVICE_LIST_DB_LOG,
+ "Failed to update device prekeys: {:?}", error
+ );
+ return Err(error.into());
+ }
+ },
+ }
+ }
}
/// Checks if given device exists on user's current device list
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Dec 22, 9:17 PM (17 h, 30 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2692670
Default Alt Text
D13569.id44813.diff (2 KB)
Attached To
Mode
D13569: [identity] Add exponential backoff to refresh_user_prekeys
Attached
Detach File
Event Timeline
Log In to Comment