An asynchronous Rust client for Cloud Spanner.
The client uses gRPC to interface with Cloud Spanner. As such, this crate uses tonic
and related crates (i.e.: prost
, tower
and tokio
).
The client also uses bb8
to maintain a pool of Cloud Spanner sessions (conceptually similar to a connection pool in other databases).
The implementation is heavily inspired by the excellent postgres
and related crates.
Spanner is a complex database and this client does not implement all available features. The current focus is on getting idiomatic SQL support for both reads and writes.
It's not recommended to use this in production for any serious workload.
- SQL read-only, single use, time-bounded transactions
- SQL read-write transactions with retries
- Type classes to convert Rust values to/from Cloud Spanner values
- Timestamp and Date type support (chrono feature?)
- Json type support (serde json feature)
- Streaming result sets
- Derive
ToSpanner
andFromSpanner
forstruct
s
- DDL statements
use spanner_rs::{Client, Error, ReadContext, TransactionContext};
#[tokio::main]
async fn main() -> Result<(), Error> {
let mut client = Client::configure()
.project("my-gcp-project")
.instance("my-instance")
.database("my-database")
.connect()
.await?;
// assuming the following table:
// person(id INT64, name STRING(MAX), data BYTES(MAX))
client
.read_write()
.run(|tx| {
tx.execute_update(
"INSERT INTO person(id, name, data) VALUES(@id, @name, NULL)",
&[("id", &42), ("name", &"ferris")],
)
})
.await?;
let result_set = client
.read_only()
.execute_query("SELECT * FROM person", &[])
.await?;
for row in result_set.iter() {
let id: u32 = row.get("id")?;
let name: &str = row.get("name")?;
let data: Option<&[u8]> = row.get("data")?;
println!("found person: {} {} {:?}", id, name, data);
}
Ok(())
}