| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124 |
- // Primitives for reading/writing BigTable tables
- use {
- crate::{
- access_token::{AccessToken, Scope},
- compression::{compress_best, decompress},
- root_ca_certificate, CredentialType,
- },
- backoff::{future::retry, Error as BackoffError, ExponentialBackoff},
- log::*,
- std::{
- str::FromStr,
- time::{Duration, Instant},
- },
- thiserror::Error,
- tonic::{codegen::InterceptedService, transport::ClientTlsConfig, Request, Status},
- };
- #[allow(clippy::all)]
- mod google {
- mod rpc {
- include!(concat!(
- env!("CARGO_MANIFEST_DIR"),
- concat!("/proto/google.rpc.rs")
- ));
- }
- pub mod bigtable {
- pub mod v2 {
- include!(concat!(
- env!("CARGO_MANIFEST_DIR"),
- concat!("/proto/google.bigtable.v2.rs")
- ));
- }
- }
- }
- use google::bigtable::v2::*;
- pub type RowKey = String;
- pub type RowData = Vec<(CellName, CellValue)>;
- pub type RowDataSlice<'a> = &'a [(CellName, CellValue)];
- pub type CellName = String;
- pub type CellValue = Vec<u8>;
- pub enum CellData<B, P> {
- Bincode(B),
- Protobuf(P),
- }
- #[derive(Debug, Error)]
- pub enum Error {
- #[error("AccessToken: {0}")]
- AccessToken(String),
- #[error("Certificate: {0}")]
- Certificate(String),
- #[error("I/O: {0}")]
- Io(std::io::Error),
- #[error("Transport: {0}")]
- Transport(tonic::transport::Error),
- #[error("Invalid URI {0}: {1}")]
- InvalidUri(String, String),
- #[error("Row not found")]
- RowNotFound,
- #[error("Row write failed")]
- RowWriteFailed,
- #[error("Row delete failed")]
- RowDeleteFailed,
- #[error("Object not found: {0}")]
- ObjectNotFound(String),
- #[error("Object is corrupt: {0}")]
- ObjectCorrupt(String),
- #[error("RPC: {0}")]
- Rpc(Box<tonic::Status>),
- #[error("Timeout")]
- Timeout,
- }
- fn to_backoff_err(err: Error) -> BackoffError<Error> {
- if let Error::Rpc(ref status) = err {
- if status.code() == tonic::Code::NotFound && status.message().starts_with("table") {
- return BackoffError::Permanent(err);
- }
- }
- err.into()
- }
- impl std::convert::From<std::io::Error> for Error {
- fn from(err: std::io::Error) -> Self {
- Self::Io(err)
- }
- }
- impl std::convert::From<tonic::transport::Error> for Error {
- fn from(err: tonic::transport::Error) -> Self {
- Self::Transport(err)
- }
- }
- impl std::convert::From<tonic::Status> for Error {
- fn from(err: tonic::Status) -> Self {
- Self::Rpc(Box::new(err))
- }
- }
- pub type Result<T> = std::result::Result<T, Error>;
- type InterceptedRequestResult = std::result::Result<Request<()>, Status>;
- #[derive(Clone)]
- pub struct BigTableConnection {
- access_token: Option<AccessToken>,
- channel: tonic::transport::Channel,
- table_prefix: String,
- app_profile_id: String,
- timeout: Option<Duration>,
- max_message_size: usize,
- }
- impl BigTableConnection {
- /// Establish a connection to the BigTable instance named `instance_name`. If read-only access
- /// is required, the `read_only` flag should be used to reduce the requested OAuth2 scope.
- ///
- /// The GOOGLE_APPLICATION_CREDENTIALS environment variable will be used to determine the
- /// program name that contains the BigTable instance in addition to access credentials.
- ///
- /// The BIGTABLE_EMULATOR_HOST environment variable is also respected.
- ///
- /// The BIGTABLE_PROXY environment variable is used to configure the gRPC connection through a
- /// forward proxy (see HTTP_PROXY).
- ///
- pub async fn new(
- instance_name: &str,
- app_profile_id: &str,
- read_only: bool,
- timeout: Option<Duration>,
- credential_type: CredentialType,
- max_message_size: usize,
- ) -> Result<Self> {
- match std::env::var("BIGTABLE_EMULATOR_HOST") {
- Ok(endpoint) => {
- info!("Connecting to bigtable emulator at {endpoint}");
- Self::new_for_emulator(
- instance_name,
- app_profile_id,
- &endpoint,
- timeout,
- max_message_size,
- )
- }
- Err(_) => {
- let access_token = AccessToken::new(
- if read_only {
- Scope::BigTableDataReadOnly
- } else {
- Scope::BigTableData
- },
- credential_type,
- )
- .await
- .map_err(Error::AccessToken)?;
- let table_prefix = format!(
- "projects/{}/instances/{}/tables/",
- access_token.project(),
- instance_name
- );
- let endpoint = {
- let endpoint =
- tonic::transport::Channel::from_static("https://bigtable.googleapis.com")
- .tls_config(
- ClientTlsConfig::new()
- .ca_certificate(
- root_ca_certificate::load().map_err(Error::Certificate)?,
- )
- .domain_name("bigtable.googleapis.com"),
- )?;
- if let Some(timeout) = timeout {
- endpoint.timeout(timeout)
- } else {
- endpoint
- }
- };
- let mut http = hyper::client::HttpConnector::new();
- http.enforce_http(false);
- http.set_nodelay(true);
- let channel = match std::env::var("BIGTABLE_PROXY") {
- Ok(proxy_uri) => {
- let proxy = hyper_proxy::Proxy::new(
- hyper_proxy::Intercept::All,
- proxy_uri
- .parse::<http::Uri>()
- .map_err(|err| Error::InvalidUri(proxy_uri, err.to_string()))?,
- );
- let mut proxy_connector =
- hyper_proxy::ProxyConnector::from_proxy(http, proxy)?;
- // tonic handles TLS as a separate layer
- proxy_connector.set_tls(None);
- endpoint.connect_with_connector_lazy(proxy_connector)
- }
- _ => endpoint.connect_with_connector_lazy(http),
- };
- Ok(Self {
- access_token: Some(access_token),
- channel,
- table_prefix,
- app_profile_id: app_profile_id.to_string(),
- timeout,
- max_message_size,
- })
- }
- }
- }
- pub fn new_for_emulator(
- instance_name: &str,
- app_profile_id: &str,
- endpoint: &str,
- timeout: Option<Duration>,
- max_message_size: usize,
- ) -> Result<Self> {
- Ok(Self {
- access_token: None,
- channel: tonic::transport::Channel::from_shared(format!("http://{endpoint}"))
- .map_err(|err| Error::InvalidUri(String::from(endpoint), err.to_string()))?
- .connect_lazy(),
- table_prefix: format!("projects/emulator/instances/{instance_name}/tables/"),
- app_profile_id: app_profile_id.to_string(),
- timeout,
- max_message_size,
- })
- }
- /// Create a new BigTable client.
- ///
- /// Clients require `&mut self`, due to `Tonic::transport::Channel` limitations, however
- /// creating new clients is cheap and thus can be used as a work around for ease of use.
- pub fn client(&self) -> BigTable<impl FnMut(Request<()>) -> InterceptedRequestResult> {
- let access_token = self.access_token.clone();
- let client = bigtable_client::BigtableClient::with_interceptor(
- self.channel.clone(),
- move |mut req: Request<()>| {
- if let Some(access_token) = &access_token {
- match FromStr::from_str(&access_token.get()) {
- Ok(authorization_header) => {
- req.metadata_mut()
- .insert("authorization", authorization_header);
- }
- Err(err) => {
- warn!("Failed to set authorization header: {err}");
- }
- }
- }
- Ok(req)
- },
- )
- .max_decoding_message_size(self.max_message_size)
- .max_encoding_message_size(self.max_message_size);
- BigTable {
- access_token: self.access_token.clone(),
- client,
- table_prefix: self.table_prefix.clone(),
- app_profile_id: self.app_profile_id.clone(),
- timeout: self.timeout,
- }
- }
- pub async fn put_bincode_cells_with_retry<T>(
- &self,
- table: &str,
- cells: &[(RowKey, T)],
- ) -> Result<usize>
- where
- T: serde::ser::Serialize,
- {
- retry(ExponentialBackoff::default(), || async {
- let mut client = self.client();
- let result = client.put_bincode_cells(table, cells).await;
- result.map_err(to_backoff_err)
- })
- .await
- }
- pub async fn delete_rows_with_retry(&self, table: &str, row_keys: &[RowKey]) -> Result<()> {
- retry(ExponentialBackoff::default(), || async {
- let mut client = self.client();
- Ok(client.delete_rows(table, row_keys).await?)
- })
- .await
- }
- pub async fn get_bincode_cells_with_retry<T>(
- &self,
- table: &str,
- row_keys: &[RowKey],
- ) -> Result<Vec<(RowKey, Result<T>)>>
- where
- T: serde::de::DeserializeOwned,
- {
- retry(ExponentialBackoff::default(), || async {
- let mut client = self.client();
- Ok(client.get_bincode_cells(table, row_keys).await?)
- })
- .await
- }
- pub async fn put_protobuf_cells_with_retry<T>(
- &self,
- table: &str,
- cells: &[(RowKey, T)],
- ) -> Result<usize>
- where
- T: prost::Message,
- {
- retry(ExponentialBackoff::default(), || async {
- let mut client = self.client();
- let result = client.put_protobuf_cells(table, cells).await;
- result.map_err(to_backoff_err)
- })
- .await
- }
- }
- pub struct BigTable<F: FnMut(Request<()>) -> InterceptedRequestResult> {
- access_token: Option<AccessToken>,
- client: bigtable_client::BigtableClient<InterceptedService<tonic::transport::Channel, F>>,
- table_prefix: String,
- app_profile_id: String,
- timeout: Option<Duration>,
- }
- impl<F: FnMut(Request<()>) -> InterceptedRequestResult> BigTable<F> {
- async fn decode_read_rows_response(
- &self,
- mut rrr: tonic::codec::Streaming<ReadRowsResponse>,
- ) -> Result<Vec<(RowKey, RowData)>> {
- let mut rows: Vec<(RowKey, RowData)> = vec![];
- let mut row_key = None;
- let mut row_data = vec![];
- let mut cell_name = None;
- let mut cell_timestamp = 0;
- let mut cell_value = vec![];
- let mut cell_version_ok = true;
- let started = Instant::now();
- while let Some(res) = rrr.message().await? {
- if let Some(timeout) = self.timeout {
- if Instant::now().duration_since(started) > timeout {
- return Err(Error::Timeout);
- }
- }
- for (i, mut chunk) in res.chunks.into_iter().enumerate() {
- // The comments for `read_rows_response::CellChunk` provide essential details for
- // understanding how the below decoding works...
- trace!("chunk {i}: {chunk:?}");
- // Starting a new row?
- if !chunk.row_key.is_empty() {
- row_key = String::from_utf8(chunk.row_key).ok(); // Require UTF-8 for row keys
- }
- // Starting a new cell?
- if let Some(qualifier) = chunk.qualifier {
- if let Some(cell_name) = cell_name {
- row_data.push((cell_name, cell_value));
- cell_value = vec![];
- }
- cell_name = String::from_utf8(qualifier).ok(); // Require UTF-8 for cell names
- cell_timestamp = chunk.timestamp_micros;
- cell_version_ok = true;
- } else {
- // Continuing the existing cell. Check if this is the start of another version of the cell
- if chunk.timestamp_micros != 0 {
- if chunk.timestamp_micros < cell_timestamp {
- cell_version_ok = false; // ignore older versions of the cell
- } else {
- // newer version of the cell, remove the older cell
- cell_version_ok = true;
- cell_value = vec![];
- cell_timestamp = chunk.timestamp_micros;
- }
- }
- }
- if cell_version_ok {
- cell_value.append(&mut chunk.value);
- }
- // End of a row?
- if chunk.row_status.is_some() {
- if let Some(read_rows_response::cell_chunk::RowStatus::CommitRow(_)) =
- chunk.row_status
- {
- if let Some(cell_name) = cell_name {
- row_data.push((cell_name, cell_value));
- }
- if let Some(row_key) = row_key {
- rows.push((row_key, row_data))
- }
- }
- row_key = None;
- row_data = vec![];
- cell_value = vec![];
- cell_name = None;
- }
- }
- }
- Ok(rows)
- }
- fn refresh_access_token(&self) {
- if let Some(ref access_token) = self.access_token {
- access_token.refresh();
- }
- }
- /// Get `table` row keys in lexical order.
- ///
- /// If `start_at` is provided, the row key listing will start with key.
- /// Otherwise the listing will start from the start of the table.
- ///
- /// If `end_at` is provided, the row key listing will end at the key. Otherwise it will
- /// continue until the `rows_limit` is reached or the end of the table, whichever comes first.
- /// If `rows_limit` is zero, this method will return an empty array.
- pub async fn get_row_keys(
- &mut self,
- table_name: &str,
- start_at: Option<RowKey>,
- end_at: Option<RowKey>,
- rows_limit: i64,
- ) -> Result<Vec<RowKey>> {
- if rows_limit == 0 {
- return Ok(vec![]);
- }
- self.refresh_access_token();
- let response = self
- .read_rows(
- table_name,
- ReadRowsRequest {
- table_name: format!("{}{}", self.table_prefix, table_name),
- app_profile_id: self.app_profile_id.clone(),
- rows_limit,
- rows: Some(RowSet {
- row_keys: vec![],
- row_ranges: vec![RowRange {
- start_key: start_at.map(|row_key| {
- row_range::StartKey::StartKeyClosed(row_key.into_bytes())
- }),
- end_key: end_at.map(|row_key| {
- row_range::EndKey::EndKeyClosed(row_key.into_bytes())
- }),
- }],
- }),
- filter: Some(RowFilter {
- filter: Some(row_filter::Filter::Chain(row_filter::Chain {
- filters: vec![
- RowFilter {
- // Return minimal number of cells
- filter: Some(row_filter::Filter::CellsPerRowLimitFilter(1)),
- },
- RowFilter {
- // Only return the latest version of each cell
- filter: Some(row_filter::Filter::CellsPerColumnLimitFilter(1)),
- },
- RowFilter {
- // Strip the cell values
- filter: Some(row_filter::Filter::StripValueTransformer(true)),
- },
- ],
- })),
- }),
- request_stats_view: 0,
- reversed: false,
- },
- )
- .await?
- .into_inner();
- let rows = self.decode_read_rows_response(response).await?;
- Ok(rows.into_iter().map(|r| r.0).collect())
- }
- /// Check whether a row key exists in a `table`
- pub async fn row_key_exists(&mut self, table_name: &str, row_key: RowKey) -> Result<bool> {
- self.refresh_access_token();
- let response = self
- .read_rows(
- table_name,
- ReadRowsRequest {
- table_name: format!("{}{}", self.table_prefix, table_name),
- app_profile_id: self.app_profile_id.clone(),
- rows_limit: 1,
- rows: Some(RowSet {
- row_keys: vec![row_key.into_bytes()],
- row_ranges: vec![],
- }),
- filter: Some(RowFilter {
- filter: Some(row_filter::Filter::StripValueTransformer(true)),
- }),
- request_stats_view: 0,
- reversed: false,
- },
- )
- .await?
- .into_inner();
- let rows = self.decode_read_rows_response(response).await?;
- Ok(!rows.is_empty())
- }
- /// Get latest data from `table`.
- ///
- /// All column families are accepted, and only the latest version of each column cell will be
- /// returned.
- ///
- /// If `start_at` is provided, the row key listing will start with key, or the next key in the
- /// table if the explicit key does not exist. Otherwise the listing will start from the start
- /// of the table.
- ///
- /// If `end_at` is provided, the row key listing will end at the key. Otherwise it will
- /// continue until the `rows_limit` is reached or the end of the table, whichever comes first.
- /// If `rows_limit` is zero, this method will return an empty array.
- pub async fn get_row_data(
- &mut self,
- table_name: &str,
- start_at: Option<RowKey>,
- end_at: Option<RowKey>,
- rows_limit: i64,
- ) -> Result<Vec<(RowKey, RowData)>> {
- if rows_limit == 0 {
- return Ok(vec![]);
- }
- self.refresh_access_token();
- let response = self
- .read_rows(
- table_name,
- ReadRowsRequest {
- table_name: format!("{}{}", self.table_prefix, table_name),
- app_profile_id: self.app_profile_id.clone(),
- rows_limit,
- rows: Some(RowSet {
- row_keys: vec![],
- row_ranges: vec![RowRange {
- start_key: start_at.map(|row_key| {
- row_range::StartKey::StartKeyClosed(row_key.into_bytes())
- }),
- end_key: end_at.map(|row_key| {
- row_range::EndKey::EndKeyClosed(row_key.into_bytes())
- }),
- }],
- }),
- filter: Some(RowFilter {
- // Only return the latest version of each cell
- filter: Some(row_filter::Filter::CellsPerColumnLimitFilter(1)),
- }),
- request_stats_view: 0,
- reversed: false,
- },
- )
- .await?
- .into_inner();
- self.decode_read_rows_response(response).await
- }
- /// Get latest data from multiple rows of `table`, if those rows exist.
- pub async fn get_multi_row_data(
- &mut self,
- table_name: &str,
- row_keys: &[RowKey],
- ) -> Result<Vec<(RowKey, RowData)>> {
- self.refresh_access_token();
- let response = self
- .read_rows(
- table_name,
- ReadRowsRequest {
- table_name: format!("{}{}", self.table_prefix, table_name),
- app_profile_id: self.app_profile_id.clone(),
- rows_limit: 0, // return all existing rows
- rows: Some(RowSet {
- row_keys: row_keys
- .iter()
- .map(|k| k.as_bytes().to_vec())
- .collect::<Vec<_>>(),
- row_ranges: vec![],
- }),
- filter: Some(RowFilter {
- // Only return the latest version of each cell
- filter: Some(row_filter::Filter::CellsPerColumnLimitFilter(1)),
- }),
- request_stats_view: 0,
- reversed: false,
- },
- )
- .await?
- .into_inner();
- self.decode_read_rows_response(response).await
- }
- /// Get latest data from a single row of `table`, if that row exists. Returns an error if that
- /// row does not exist.
- ///
- /// All column families are accepted, and only the latest version of each column cell will be
- /// returned.
- pub async fn get_single_row_data(
- &mut self,
- table_name: &str,
- row_key: RowKey,
- ) -> Result<RowData> {
- self.refresh_access_token();
- let response = self
- .read_rows(
- table_name,
- ReadRowsRequest {
- table_name: format!("{}{}", self.table_prefix, table_name),
- app_profile_id: self.app_profile_id.clone(),
- rows_limit: 1,
- rows: Some(RowSet {
- row_keys: vec![row_key.into_bytes()],
- row_ranges: vec![],
- }),
- filter: Some(RowFilter {
- // Only return the latest version of each cell
- filter: Some(row_filter::Filter::CellsPerColumnLimitFilter(1)),
- }),
- request_stats_view: 0,
- reversed: false,
- },
- )
- .await?
- .into_inner();
- let rows = self.decode_read_rows_response(response).await?;
- rows.into_iter()
- .next()
- .map(|r| r.1)
- .ok_or(Error::RowNotFound)
- }
- /// Delete one or more `table` rows
- async fn delete_rows(&mut self, table_name: &str, row_keys: &[RowKey]) -> Result<()> {
- self.refresh_access_token();
- let mut entries = vec![];
- for row_key in row_keys {
- entries.push(mutate_rows_request::Entry {
- row_key: row_key.as_bytes().to_vec(),
- mutations: vec![Mutation {
- mutation: Some(mutation::Mutation::DeleteFromRow(
- mutation::DeleteFromRow {},
- )),
- }],
- });
- }
- let mut response = self
- .client
- .mutate_rows(MutateRowsRequest {
- table_name: format!("{}{}", self.table_prefix, table_name),
- app_profile_id: self.app_profile_id.clone(),
- entries,
- })
- .await?
- .into_inner();
- while let Some(res) = response.message().await? {
- for entry in res.entries {
- if let Some(status) = entry.status {
- if status.code != 0 {
- eprintln!("delete_rows error {}: {}", status.code, status.message);
- warn!("delete_rows error {}: {}", status.code, status.message);
- return Err(Error::RowDeleteFailed);
- }
- }
- }
- }
- Ok(())
- }
- /// Store data for one or more `table` rows in the `family_name` Column family
- async fn put_row_data(
- &mut self,
- table_name: &str,
- family_name: &str,
- row_data: &[(&RowKey, RowData)],
- ) -> Result<()> {
- self.refresh_access_token();
- let mut entries = vec![];
- for (row_key, row_data) in row_data {
- let mutations = row_data
- .iter()
- .map(|(column_key, column_value)| Mutation {
- mutation: Some(mutation::Mutation::SetCell(mutation::SetCell {
- family_name: family_name.to_string(),
- column_qualifier: column_key.clone().into_bytes(),
- timestamp_micros: -1, // server assigned
- value: column_value.to_vec(),
- })),
- })
- .collect();
- entries.push(mutate_rows_request::Entry {
- row_key: (*row_key).clone().into_bytes(),
- mutations,
- });
- }
- let mut response = self
- .client
- .mutate_rows(MutateRowsRequest {
- table_name: format!("{}{}", self.table_prefix, table_name),
- app_profile_id: self.app_profile_id.clone(),
- entries,
- })
- .await?
- .into_inner();
- while let Some(res) = response.message().await? {
- for entry in res.entries {
- if let Some(status) = entry.status {
- if status.code != 0 {
- eprintln!("put_row_data error {}: {}", status.code, status.message);
- warn!("put_row_data error {}: {}", status.code, status.message);
- return Err(Error::RowWriteFailed);
- }
- }
- }
- }
- Ok(())
- }
- pub async fn get_bincode_cell<T>(&mut self, table: &str, key: RowKey) -> Result<T>
- where
- T: serde::de::DeserializeOwned,
- {
- let row_data = self.get_single_row_data(table, key.clone()).await?;
- deserialize_bincode_cell_data(&row_data, table, key.to_string())
- }
- pub async fn get_bincode_cells<T>(
- &mut self,
- table: &str,
- keys: &[RowKey],
- ) -> Result<Vec<(RowKey, Result<T>)>>
- where
- T: serde::de::DeserializeOwned,
- {
- Ok(self
- .get_multi_row_data(table, keys)
- .await?
- .into_iter()
- .map(|(key, row_data)| {
- let key_str = key.to_string();
- (
- key,
- deserialize_bincode_cell_data(&row_data, table, key_str),
- )
- })
- .collect())
- }
- pub async fn get_protobuf_cell<P>(&mut self, table: &str, key: RowKey) -> Result<P>
- where
- P: prost::Message + Default,
- {
- let row_data = self.get_single_row_data(table, key.clone()).await?;
- deserialize_protobuf_cell_data(&row_data, table, key.to_string())
- }
- pub async fn get_protobuf_or_bincode_cell<B, P>(
- &mut self,
- table: &str,
- key: RowKey,
- ) -> Result<CellData<B, P>>
- where
- B: serde::de::DeserializeOwned,
- P: prost::Message + Default,
- {
- let row_data = self.get_single_row_data(table, key.clone()).await?;
- deserialize_protobuf_or_bincode_cell_data(&row_data, table, key)
- }
- pub async fn get_protobuf_or_bincode_cells<'a, B, P>(
- &mut self,
- table: &'a str,
- row_keys: impl IntoIterator<Item = RowKey>,
- ) -> Result<impl Iterator<Item = (RowKey, CellData<B, P>)> + 'a>
- where
- B: serde::de::DeserializeOwned,
- P: prost::Message + Default,
- {
- Ok(self
- .get_multi_row_data(
- table,
- row_keys.into_iter().collect::<Vec<RowKey>>().as_slice(),
- )
- .await?
- .into_iter()
- .map(|(key, row_data)| {
- let key_str = key.to_string();
- (
- key,
- deserialize_protobuf_or_bincode_cell_data(&row_data, table, key_str).unwrap(),
- )
- }))
- }
- pub async fn put_bincode_cells<T>(
- &mut self,
- table: &str,
- cells: &[(RowKey, T)],
- ) -> Result<usize>
- where
- T: serde::ser::Serialize,
- {
- let mut bytes_written = 0;
- let mut new_row_data = vec![];
- for (row_key, data) in cells {
- let data = compress_best(&bincode::serialize(&data).unwrap())?;
- bytes_written += data.len();
- new_row_data.push((row_key, vec![("bin".to_string(), data)]));
- }
- self.put_row_data(table, "x", &new_row_data).await?;
- Ok(bytes_written)
- }
- pub async fn put_protobuf_cells<T>(
- &mut self,
- table: &str,
- cells: &[(RowKey, T)],
- ) -> Result<usize>
- where
- T: prost::Message,
- {
- let mut bytes_written = 0;
- let mut new_row_data = vec![];
- for (row_key, data) in cells {
- let mut buf = Vec::with_capacity(data.encoded_len());
- data.encode(&mut buf).unwrap();
- let data = compress_best(&buf)?;
- bytes_written += data.len();
- new_row_data.push((row_key, vec![("proto".to_string(), data)]));
- }
- self.put_row_data(table, "x", &new_row_data).await?;
- Ok(bytes_written)
- }
- async fn read_rows(
- &mut self,
- table_name: &str,
- request: ReadRowsRequest,
- ) -> Result<tonic::Response<tonic::Streaming<ReadRowsResponse>>> {
- let datapoint_bigtable = if table_name == "blocks" {
- "bigtable_blocks"
- } else if table_name == "tx" {
- "bigtable_tx"
- } else if table_name == "tx-by-addr" {
- "bigtable_tx-by-addr"
- } else if table_name == "entries" {
- "bigtable_entries"
- } else {
- "bigtable_unknown"
- };
- datapoint_info!(datapoint_bigtable, ("read_rows", 1, i64));
- tokio::time::timeout(
- self.timeout.unwrap_or(Duration::from_secs(30)),
- self.client.read_rows(request),
- )
- .await
- .map_err(|_| {
- datapoint_error!(datapoint_bigtable, ("timeout", 1, i64));
- Error::Timeout
- })?
- .map_err(Error::from)
- }
- }
- pub(crate) fn deserialize_protobuf_or_bincode_cell_data<B, P>(
- row_data: RowDataSlice,
- table: &str,
- key: RowKey,
- ) -> Result<CellData<B, P>>
- where
- B: serde::de::DeserializeOwned,
- P: prost::Message + Default,
- {
- match deserialize_protobuf_cell_data(row_data, table, key.to_string()) {
- Ok(result) => return Ok(CellData::Protobuf(result)),
- Err(err) => match err {
- Error::ObjectNotFound(_) => {}
- _ => return Err(err),
- },
- }
- deserialize_bincode_cell_data(row_data, table, key).map(CellData::Bincode)
- }
- pub(crate) fn deserialize_protobuf_cell_data<T>(
- row_data: RowDataSlice,
- table: &str,
- key: RowKey,
- ) -> Result<T>
- where
- T: prost::Message + Default,
- {
- let value = &row_data
- .iter()
- .find(|(name, _)| name == "proto")
- .ok_or_else(|| Error::ObjectNotFound(format!("{table}/{key}")))?
- .1;
- let data = decompress(value)?;
- T::decode(&data[..]).map_err(|err| {
- warn!("Failed to deserialize {table}/{key}: {err}");
- Error::ObjectCorrupt(format!("{table}/{key}"))
- })
- }
- pub(crate) fn deserialize_bincode_cell_data<T>(
- row_data: RowDataSlice,
- table: &str,
- key: RowKey,
- ) -> Result<T>
- where
- T: serde::de::DeserializeOwned,
- {
- let value = &row_data
- .iter()
- .find(|(name, _)| name == "bin")
- .ok_or_else(|| Error::ObjectNotFound(format!("{table}/{key}")))?
- .1;
- let data = decompress(value)?;
- bincode::deserialize(&data).map_err(|err| {
- warn!("Failed to deserialize {table}/{key}: {err}");
- Error::ObjectCorrupt(format!("{table}/{key}"))
- })
- }
- #[cfg(test)]
- mod tests {
- use {
- super::*,
- crate::StoredConfirmedBlock,
- prost::Message,
- solana_hash::Hash,
- solana_keypair::Keypair,
- solana_message::v0::LoadedAddresses,
- solana_storage_proto::convert::generated,
- solana_system_transaction as system_transaction,
- solana_transaction::versioned::VersionedTransaction,
- solana_transaction_context::TransactionReturnData,
- solana_transaction_status::{
- ConfirmedBlock, TransactionStatusMeta, TransactionWithStatusMeta,
- VersionedTransactionWithStatusMeta,
- },
- std::convert::TryInto,
- };
- fn confirmed_block_into_protobuf(confirmed_block: ConfirmedBlock) -> generated::ConfirmedBlock {
- let ConfirmedBlock {
- previous_blockhash,
- blockhash,
- parent_slot,
- transactions,
- rewards,
- num_partitions,
- block_time,
- block_height,
- } = confirmed_block;
- generated::ConfirmedBlock {
- previous_blockhash,
- blockhash,
- parent_slot,
- transactions: transactions.into_iter().map(|tx| tx.into()).collect(),
- rewards: rewards.into_iter().map(|r| r.into()).collect(),
- num_partitions: num_partitions
- .map(|num_partitions| generated::NumPartitions { num_partitions }),
- block_time: block_time.map(|timestamp| generated::UnixTimestamp { timestamp }),
- block_height: block_height.map(|block_height| generated::BlockHeight { block_height }),
- }
- }
- #[test]
- fn test_deserialize_protobuf_or_bincode_cell_data() {
- let from = Keypair::new();
- let recipient = solana_pubkey::new_rand();
- let transaction = system_transaction::transfer(&from, &recipient, 42, Hash::default());
- let with_meta = TransactionWithStatusMeta::Complete(VersionedTransactionWithStatusMeta {
- transaction: VersionedTransaction::from(transaction),
- meta: TransactionStatusMeta {
- status: Ok(()),
- fee: 1,
- pre_balances: vec![43, 0, 1],
- post_balances: vec![0, 42, 1],
- inner_instructions: Some(vec![]),
- log_messages: Some(vec![]),
- pre_token_balances: Some(vec![]),
- post_token_balances: Some(vec![]),
- rewards: Some(vec![]),
- loaded_addresses: LoadedAddresses::default(),
- return_data: Some(TransactionReturnData::default()),
- compute_units_consumed: Some(1234),
- cost_units: Some(5678),
- },
- });
- let expected_block = ConfirmedBlock {
- transactions: vec![with_meta],
- parent_slot: 1,
- blockhash: Hash::default().to_string(),
- previous_blockhash: Hash::default().to_string(),
- rewards: vec![],
- num_partitions: None,
- block_time: Some(1_234_567_890),
- block_height: Some(1),
- };
- let bincode_block = compress_best(
- &bincode::serialize::<StoredConfirmedBlock>(&expected_block.clone().into()).unwrap(),
- )
- .unwrap();
- let protobuf_block = confirmed_block_into_protobuf(expected_block.clone());
- let mut buf = Vec::with_capacity(protobuf_block.encoded_len());
- protobuf_block.encode(&mut buf).unwrap();
- let protobuf_block = compress_best(&buf).unwrap();
- let deserialized = deserialize_protobuf_or_bincode_cell_data::<
- StoredConfirmedBlock,
- generated::ConfirmedBlock,
- >(
- &[("proto".to_string(), protobuf_block.clone())],
- "",
- "".to_string(),
- )
- .unwrap();
- if let CellData::Protobuf(protobuf_block) = deserialized {
- assert_eq!(expected_block, protobuf_block.try_into().unwrap());
- } else {
- panic!("deserialization should produce CellData::Protobuf");
- }
- let deserialized = deserialize_protobuf_or_bincode_cell_data::<
- StoredConfirmedBlock,
- generated::ConfirmedBlock,
- >(
- &[("bin".to_string(), bincode_block.clone())],
- "",
- "".to_string(),
- )
- .unwrap();
- if let CellData::Bincode(bincode_block) = deserialized {
- let mut block = expected_block;
- if let TransactionWithStatusMeta::Complete(VersionedTransactionWithStatusMeta {
- meta,
- ..
- }) = &mut block.transactions[0]
- {
- meta.inner_instructions = None; // Legacy bincode implementation does not support inner_instructions
- meta.log_messages = None; // Legacy bincode implementation does not support log_messages
- meta.pre_token_balances = None; // Legacy bincode implementation does not support token balances
- meta.post_token_balances = None; // Legacy bincode implementation does not support token balances
- meta.rewards = None; // Legacy bincode implementation does not support rewards
- meta.return_data = None; // Legacy bincode implementation does not support return data
- meta.compute_units_consumed = None; // Legacy bincode implementation does not support CU consumed
- meta.cost_units = None; // Legacy bincode implementation does not support CU
- }
- assert_eq!(block, bincode_block.into());
- } else {
- panic!("deserialization should produce CellData::Bincode");
- }
- let result = deserialize_protobuf_or_bincode_cell_data::<
- StoredConfirmedBlock,
- generated::ConfirmedBlock,
- >(&[("proto".to_string(), bincode_block)], "", "".to_string());
- assert!(result.is_err());
- let result = deserialize_protobuf_or_bincode_cell_data::<
- StoredConfirmedBlock,
- generated::ConfirmedBlock,
- >(
- &[("proto".to_string(), vec![1, 2, 3, 4])],
- "",
- "".to_string(),
- );
- assert!(result.is_err());
- let result = deserialize_protobuf_or_bincode_cell_data::<
- StoredConfirmedBlock,
- generated::ConfirmedBlock,
- >(&[("bin".to_string(), protobuf_block)], "", "".to_string());
- assert!(result.is_err());
- let result = deserialize_protobuf_or_bincode_cell_data::<
- StoredConfirmedBlock,
- generated::ConfirmedBlock,
- >(&[("bin".to_string(), vec![1, 2, 3, 4])], "", "".to_string());
- assert!(result.is_err());
- }
- }
|