-
Notifications
You must be signed in to change notification settings - Fork 289
Azure Cosmos multiple stores per container #2953
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,5 @@ | ||
| use anyhow::Result; | ||
| use azure_data_cosmos::prelude::Operation; | ||
| use azure_data_cosmos::resources::collection::PartitionKey; | ||
| use azure_data_cosmos::{ | ||
| prelude::{AuthorizationToken, CollectionClient, CosmosClient, Query}, | ||
| CosmosEntity, | ||
|
|
@@ -13,6 +12,12 @@ use std::sync::{Arc, Mutex}; | |
|
|
||
| pub struct KeyValueAzureCosmos { | ||
| client: CollectionClient, | ||
| /// An optional app id | ||
| /// | ||
| /// If provided, the store will handle multiple stores per container using a | ||
| /// partition key of `/$app_id/$store_name`, otherwise there will be one container | ||
| /// per store, and the partition key will be `/id`. | ||
| app_id: Option<String>, | ||
| } | ||
|
|
||
| /// Azure Cosmos Key / Value runtime config literal options for authentication | ||
|
|
@@ -71,6 +76,7 @@ impl KeyValueAzureCosmos { | |
| database: String, | ||
| container: String, | ||
| auth_options: KeyValueAzureCosmosAuthOptions, | ||
| app_id: Option<String>, | ||
| ) -> Result<Self> { | ||
| let token = match auth_options { | ||
| KeyValueAzureCosmosAuthOptions::RuntimeConfigValues(config) => { | ||
|
|
@@ -86,15 +92,16 @@ impl KeyValueAzureCosmos { | |
| let database_client = cosmos_client.database_client(database); | ||
| let client = database_client.collection_client(container); | ||
|
|
||
| Ok(Self { client }) | ||
| Ok(Self { client, app_id }) | ||
| } | ||
| } | ||
|
|
||
| #[async_trait] | ||
| impl StoreManager for KeyValueAzureCosmos { | ||
| async fn get(&self, _name: &str) -> Result<Arc<dyn Store>, Error> { | ||
| async fn get(&self, name: &str) -> Result<Arc<dyn Store>, Error> { | ||
| Ok(Arc::new(AzureCosmosStore { | ||
| client: self.client.clone(), | ||
| store_id: self.app_id.as_ref().map(|i| format!("{i}/{name}")), | ||
| })) | ||
| } | ||
|
|
||
|
|
@@ -114,13 +121,10 @@ impl StoreManager for KeyValueAzureCosmos { | |
| #[derive(Clone)] | ||
| struct AzureCosmosStore { | ||
| client: CollectionClient, | ||
| } | ||
|
|
||
| struct CompareAndSwap { | ||
| key: String, | ||
| client: CollectionClient, | ||
| bucket_rep: u32, | ||
| etag: Mutex<Option<String>>, | ||
| /// An optional store id to use as a partition key for all operations. | ||
| /// | ||
| /// If the store id not set, the store will use `/id` as the partition key. | ||
| store_id: Option<String>, | ||
| } | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there a reason we don't set partition here instead of suffixing the request? Are we anticipating gets across stores? async fn get_pair(&self, key: &str) -> Result<Option<Pair>, Error> {
let query = self
.client
.query_documents(Query::new(self.get_query(key)))
.query_cross_partition(true)
.max_item_count(1);
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure I understand your question. Can you reformulate it? |
||
|
|
||
| #[async_trait] | ||
|
|
@@ -134,6 +138,7 @@ impl Store for AzureCosmosStore { | |
| let pair = Pair { | ||
| id: key.to_string(), | ||
| value: value.to_vec(), | ||
| store_id: self.store_id.clone(), | ||
| }; | ||
| self.client | ||
| .create_document(pair) | ||
|
|
@@ -145,7 +150,10 @@ impl Store for AzureCosmosStore { | |
|
|
||
| async fn delete(&self, key: &str) -> Result<(), Error> { | ||
| if self.exists(key).await? { | ||
| let document_client = self.client.document_client(key, &key).map_err(log_error)?; | ||
| let document_client = self | ||
| .client | ||
| .document_client(key, &self.store_id) | ||
| .map_err(log_error)?; | ||
| document_client.delete_document().await.map_err(log_error)?; | ||
| } | ||
| Ok(()) | ||
|
|
@@ -160,12 +168,7 @@ impl Store for AzureCosmosStore { | |
| } | ||
|
|
||
| async fn get_many(&self, keys: Vec<String>) -> Result<Vec<(String, Option<Vec<u8>>)>, Error> { | ||
| let in_clause: String = keys | ||
| .into_iter() | ||
| .map(|k| format!("'{}'", k)) | ||
| .collect::<Vec<String>>() | ||
| .join(", "); | ||
| let stmt = Query::new(format!("SELECT * FROM c WHERE c.id IN ({})", in_clause)); | ||
| let stmt = Query::new(self.get_in_query(keys)); | ||
| let query = self | ||
| .client | ||
| .query_documents(stmt) | ||
|
|
@@ -175,9 +178,11 @@ impl Store for AzureCosmosStore { | |
| let mut stream = query.into_stream::<Pair>(); | ||
| while let Some(resp) = stream.next().await { | ||
| let resp = resp.map_err(log_error)?; | ||
| for (pair, _) in resp.results { | ||
| res.push((pair.id, Some(pair.value))); | ||
| } | ||
| res.extend( | ||
| resp.results | ||
| .into_iter() | ||
| .map(|(pair, _)| (pair.id, Some(pair.value))), | ||
| ); | ||
| } | ||
| Ok(res) | ||
| } | ||
|
|
@@ -200,7 +205,7 @@ impl Store for AzureCosmosStore { | |
| let operations = vec![Operation::incr("/value", delta).map_err(log_error)?]; | ||
| let _ = self | ||
| .client | ||
| .document_client(key.clone(), &key.as_str()) | ||
| .document_client(key.clone(), &self.store_id) | ||
| .map_err(log_error)? | ||
| .patch_document(operations) | ||
| .await | ||
|
|
@@ -227,21 +232,39 @@ impl Store for AzureCosmosStore { | |
| client: self.client.clone(), | ||
| etag: Mutex::new(None), | ||
| bucket_rep, | ||
| store_id: self.store_id.clone(), | ||
| })) | ||
| } | ||
| } | ||
|
|
||
| struct CompareAndSwap { | ||
| key: String, | ||
| client: CollectionClient, | ||
| bucket_rep: u32, | ||
| etag: Mutex<Option<String>>, | ||
| store_id: Option<String>, | ||
| } | ||
|
|
||
| impl CompareAndSwap { | ||
| fn get_query(&self) -> String { | ||
| let mut query = format!("SELECT * FROM c WHERE c.id='{}'", self.key); | ||
| self.append_store_id(&mut query, true); | ||
| query | ||
| } | ||
|
|
||
| fn append_store_id(&self, query: &mut String, condition_already_exists: bool) { | ||
| append_store_id_condition(query, self.store_id.as_deref(), condition_already_exists); | ||
| } | ||
| } | ||
|
|
||
| #[async_trait] | ||
| impl Cas for CompareAndSwap { | ||
| /// `current` will fetch the current value for the key and store the etag for the record. The | ||
| /// etag will be used to perform and optimistic concurrency update using the `if-match` header. | ||
| async fn current(&self) -> Result<Option<Vec<u8>>, Error> { | ||
| let mut stream = self | ||
| .client | ||
| .query_documents(Query::new(format!( | ||
| "SELECT * FROM c WHERE c.id='{}'", | ||
| self.key | ||
| ))) | ||
| .query_documents(Query::new(self.get_query())) | ||
| .query_cross_partition(true) | ||
| .max_item_count(1) | ||
| .into_stream::<Pair>(); | ||
|
|
@@ -272,15 +295,15 @@ impl Cas for CompareAndSwap { | |
| /// `swap` updates the value for the key using the etag saved in the `current` function for | ||
| /// optimistic concurrency. | ||
| async fn swap(&self, value: Vec<u8>) -> Result<(), SwapError> { | ||
| let pk = PartitionKey::from(&self.key); | ||
| let pair = Pair { | ||
| id: self.key.clone(), | ||
| value, | ||
| store_id: self.store_id.clone(), | ||
| }; | ||
|
|
||
| let doc_client = self | ||
| .client | ||
| .document_client(&self.key, &pk) | ||
| .document_client(&self.key, &pair.partition_key()) | ||
| .map_err(log_cas_error)?; | ||
|
|
||
| let etag_value = self.etag.lock().unwrap().clone(); | ||
|
|
@@ -318,55 +341,97 @@ impl AzureCosmosStore { | |
| async fn get_pair(&self, key: &str) -> Result<Option<Pair>, Error> { | ||
| let query = self | ||
| .client | ||
| .query_documents(Query::new(format!("SELECT * FROM c WHERE c.id='{}'", key))) | ||
| .query_documents(Query::new(self.get_query(key))) | ||
| .query_cross_partition(true) | ||
| .max_item_count(1); | ||
|
|
||
| // There can be no duplicated keys, so we create the stream and only take the first result. | ||
| let mut stream = query.into_stream::<Pair>(); | ||
| let res = stream.next().await; | ||
| match res { | ||
| Some(r) => { | ||
| let r = r.map_err(log_error)?; | ||
| match r.results.first().cloned() { | ||
| Some((p, _)) => Ok(Some(p)), | ||
| None => Ok(None), | ||
| } | ||
| } | ||
| None => Ok(None), | ||
| } | ||
| let Some(res) = stream.next().await else { | ||
| return Ok(None); | ||
| }; | ||
| Ok(res | ||
| .map_err(log_error)? | ||
| .results | ||
| .first() | ||
| .map(|(p, _)| p.clone())) | ||
| } | ||
|
|
||
| async fn get_keys(&self) -> Result<Vec<String>, Error> { | ||
| let query = self | ||
| .client | ||
| .query_documents(Query::new("SELECT * FROM c".to_string())) | ||
| .query_documents(Query::new(self.get_keys_query())) | ||
| .query_cross_partition(true); | ||
| let mut res = Vec::new(); | ||
|
|
||
| let mut stream = query.into_stream::<Pair>(); | ||
| while let Some(resp) = stream.next().await { | ||
| let resp = resp.map_err(log_error)?; | ||
| for (pair, _) in resp.results { | ||
| res.push(pair.id); | ||
| } | ||
| res.extend(resp.results.into_iter().map(|(pair, _)| pair.id)); | ||
| } | ||
|
|
||
| Ok(res) | ||
| } | ||
|
|
||
| fn get_query(&self, key: &str) -> String { | ||
| let mut query = format!("SELECT * FROM c WHERE c.id='{}'", key); | ||
| self.append_store_id(&mut query, true); | ||
| query | ||
| } | ||
|
|
||
| fn get_keys_query(&self) -> String { | ||
| let mut query = "SELECT * FROM c".to_owned(); | ||
| self.append_store_id(&mut query, false); | ||
| query | ||
| } | ||
|
|
||
| fn get_in_query(&self, keys: Vec<String>) -> String { | ||
| let in_clause: String = keys | ||
| .into_iter() | ||
| .map(|k| format!("'{k}'")) | ||
| .collect::<Vec<String>>() | ||
| .join(", "); | ||
|
|
||
| let mut query = format!("SELECT * FROM c WHERE c.id IN ({})", in_clause); | ||
| self.append_store_id(&mut query, true); | ||
| query | ||
| } | ||
|
|
||
| fn append_store_id(&self, query: &mut String, condition_already_exists: bool) { | ||
| append_store_id_condition(query, self.store_id.as_deref(), condition_already_exists); | ||
| } | ||
| } | ||
|
|
||
| /// Appends an option store id condition to the query. | ||
| fn append_store_id_condition( | ||
| query: &mut String, | ||
| store_id: Option<&str>, | ||
| condition_already_exists: bool, | ||
| ) { | ||
| if let Some(s) = store_id { | ||
| if condition_already_exists { | ||
| query.push_str(" AND"); | ||
| } else { | ||
| query.push_str(" WHERE"); | ||
| } | ||
| query.push_str(" c.store_id='"); | ||
| query.push_str(s); | ||
| query.push('\'') | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What is the purpose of this trailing
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We're pushing single quote ( |
||
| } | ||
| } | ||
|
|
||
| #[derive(Serialize, Deserialize, Clone, Debug)] | ||
| pub struct Pair { | ||
| // In Azure CosmosDB, the default partition key is "/id", and this implementation assumes that partition ID is not changed. | ||
| pub id: String, | ||
| pub value: Vec<u8>, | ||
| #[serde(skip_serializing_if = "Option::is_none")] | ||
| pub store_id: Option<String>, | ||
| } | ||
|
|
||
| impl CosmosEntity for Pair { | ||
| type Entity = String; | ||
|
|
||
| fn partition_key(&self) -> Self::Entity { | ||
| self.id.clone() | ||
| self.store_id.clone().unwrap_or_else(|| self.id.clone()) | ||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.