Rust ORM for ScyllaDB and Apache Cassandra
⚠️ This project is currently in an early stage of development. Feedback and contributions are welcomed!
Charybdis is a ORM layer on top of ScyllaDB Rust Driver focused on easy of use and performance
Usage considerations:
- Provide and expressive API for CRUD & Complex Query operations on model as a whole
- Provide easy way to work with subset of model fields by using automatically
generated
partial_<model>!macro - Provide easy way to run complex queries by using automatically generated
find_<model>!macro - Automatic migration tool analyzes the project files and runs migrations according to differences between the model definition and database
Performance consideration:
- It uses prepared statements (shard/token aware) -> bind values
- It expects
CachingSessionas a session arg for operations - Queries are macro generated str constants (no concatenation at runtime)
- By using
find_<model>!macro we can run complex queries that are generated at compile time as&'static str - Although it has expressive API it's thin layer on top of scylla_rust_driver, and it does not introduce any significant overhead
Table of Contents
- Charybdis Models
- Automatic migration with
charybdis-migrate - Basic Operations
- Configuration Options
- Batch Operations
- Partial Model
- Callbacks
- Collection
- Ignored fields
- Roadmap
Charybdis Models
Define Tables
use charybdis_model;
use ;
Define UDT
use charybdis_udt_model;
use Text;
🚨 UDT fields must be in the same order as they are in the database.
Note that in order for migration to correctly detect changes on each migration, type_name has to
match struct name. So if we have struct ReorderData we have to use
#[charybdis_udt_model(type_name = reorderdata)] - without underscores.
Define Materialized Views
use charybdis_view_model;
use ;
Resulting auto-generated migration query will be:
CREATE MATERIALIZED VIEW IF NOT EXISTS users_by_email
AS SELECT created_at, updated_at, username, email, id
FROM users
WHERE email IS NOT NULL AND id IS NOT NULL
PRIMARY KEY (email, id)
Automatic migration
-
charybdis-migrateenables automatic migration to database without need to write migrations by hand. It iterates over project files and generates migrations based on differences between model definitions and database. It supports following operations:- Create new tables
- Create new columns
- Drop columns
- Change field types (drop and recreate column
--drop-and-replaceflag) - Create secondary indexes
- Drop secondary indexes
- Create UDTs
- Create materialized views
- Table options
- ⚠️ If table exists, table options will result in alter table query that without
CLUSTERING ORDERandCOMPACT STORAGEoptions.
- ⚠️ If table exists, table options will result in alter table query that without
Model dropping is not added. If you removed model, you need to drop table manually.
-
Running migration
)⚠️ If you are working with existing datasets, before running migration you need to make sure that your **model ** definitions structure matches the database in respect to table names, column names, column types, partition keys, clustering keys and secondary indexes so you don't alter structure accidentally. If structure is matched, it will not run any migrations. As mentioned above, in case there is no model definition for table, it will not drop it. In future, we will add
modelizecommand that will generatesrc/modelsfiles from existing data source. -
Global secondary indexes
If we have model:
resulting query will be:
CREATE INDEX ON users (username); -
Local secondary Indexes
Indexes that are scoped to the partition key
resulting query will be:
CREATE INDEX ON menus((location), dish_type);
Basic Operations:
For each operation you need to bring respective trait into scope. They are defined
in charybdis::operations module.
Insert
-
use ; async
Find
-
Find by primary key
let user = User ; let user = user.find_by_primary_key.execute.await?; -
Find by partition key
let users = User .find_by_partition_key.execute.await; -
Find by primary key associated
let users = find_by_primary_key_value.execute.await; -
Available find functions
use CachingSession; use CharybdisError; use charybdis_model; use CharybdisModelStream; use ; -
Custom filtering:
Lets use our
Postmodel as an example:We get automatically generated
find_post!macro that follows conventionfind_<struct_name>!. It can be used to create custom queries.Following will return stream of
Postmodels, and query will be constructed at compile time as&'static str.// automatically generated macro rule let posts = find_post! .execute .await?;We can also use
find_first_post!macro to get single result:let post = find_first_post! .execute .await?;If we just need the
Queryand not the result, we can usefind_post_query!macro:let query = find_post_query!;
Update
-
let user = from_json; user.username = "scylla".to_string; user.email = "some@email.com"; user.update.execute.await; -
Collection:
- Let's use our
Usermodel as an example: push_to_<field_name>andpull_from_<field_name>methods are generated for each collection field.let user: User; user.push_tags.execute.await; user.pull_tags.execute.await; user.push_post_ids.execute.await; user.pull_post_ids.execute.await;
- Let's use our
-
Counter
- Let's define post_counter model:
- We can use
increment_<field_name>anddecrement_<field_name>methods to update counter fields.let post_counter: PostCounter; post_counter.increment_likes.execute.await; post_counter.decrement_likes.execute.await; post_counter.increment_comments.execute.await; post_counter.decrement_comments.execute.await;
- Let's define post_counter model:
Delete
-
let user = from_json; user.delete.execute.await; -
Macro generated delete helpers
Lets use our
Postmodel as an example:We have macro generated functions for up to 3 fields from primary key.
delete_by_date.execute.await?; delete_by_date_and_category_id.execute.await?; delete_by_date_and_category_id_and_title.execute.await?; -
Custom delete queries
We can use
delete_post!macro to create custom delete queries.delete_post!.execute.await?
Configuration
Every operation returns CharybdisQuery that can be configured before execution with method
chaining.
let user: User = find_by_id
.consistency
.timeout
.execute
.await?;
let result: QueryResult = user.update.consistency.execute.await?;
Supported configuration options:
consistencyserial_consistencytimestamptimeoutpage_sizetimestamp
Batch
CharybdisModelBatch operations are used to perform multiple operations in a single batch.
-
Batch Operations
let users: ; let batch = batch; // inserts batch.append_inserts; // or updates batch.append_updates; // or deletes batch.append_deletes; batch.execute.await?; -
Chunked Batch Operations
Chunked batch operations are used to operate on large amount of data in chunks.
let users: ; let chunk_size = 100; batch.chunked_inserts.await?; batch.chunked_updates.await?; batch.chunked_deletes.await?; -
Batch Configuration
Batch operations can be configured before execution with method chaining.
let batch = batch .consistency .retry_policy .chunked_inserts .await?;We could also use method chaining to append operations to batch:
let batch = batch .consistency .retry_policy .append_update .append_update .execute .await?; -
Statements Batch
We can use batch statements to perform collection operations in batch:
let batch = batch; let users: ; for user in users batch.execute.await;
Partial Model:
-
Use auto generated
partial_<model>!macro to run operations on subset of the model fields. This macro generates a new struct with same structure as the original model, but only with provided fields. Macro is automatically generated by#[charybdis_model]. It follows conventionpartial_<struct_name>!.// auto-generated macro - available in crate::models::user partial_user!;Now we have new struct
UpdateUsernameUserthat is equivalent toUsermodel, but only withidandusernamefields.let mut update_user_username = UpdateUsernameUser ; update_user_username.update.execute.await?; -
Partial Model Considerations:
partial_<model>requires#[derive(Default)]on native modelpartial_<model>require complete primary key in definition- All derives that are defined bellow
#charybdis_modelmacro will be automatically added to partial model. partial_<model>struct implements same field attributes as native model, so if we have#[serde(rename = "rootId")]on native model field, it will be present on partial model field.partial_<model>should be defined in same file as native model, so it can reuse imports required by native model
-
As Native
In case we need to run operations on native model, we can use
as_nativemethod:let native_user: User = update_user_username.as_native.find_by_primary_key.execute.await?; // action that requires native model authorize_user;as_nativeworks by returning new instance of native model with fields from partial model. For other fields it uses default values. -
Recommended naming convention is
Purpose+Original Struct Name. E.g:UpdateAdresssUser,UpdateDescriptionPost.
Callbacks
Callbacks are convenient way to run additional logic on model before or after certain operations. E.g.
- we can use
before_insertto set default values and/or validate model before insert. - we can use
after_updateto update other data sources, e.g. elastic search.
Implementation:
- Let's say we define custom extension that will be used to
update elastic document on every post update:
- Now we can implement Callback that will utilize this extension:
-
Possible Callbacks:
before_insertbefore_updatebefore_deleteafter_insertafter_updateafter_delete
-
Triggering Callbacks
In order to trigger callback we use<operation>_cb. method:insert_cb,update_cb,delete_cbaccording traits. This enables us to have clear distinction betweeninsertand insert with callbacks (insert_cb). Just as on main operation, we can configure callback operation query before execution.use ; post.insert_cb.execute.await; post.update_cb.execute.await; post.delete_cb.consistency.execute.await;
Collections
For each collection field, we get following:
PUSH_<field_name>_QUERYstatic strPUSH_<field_name>_IF_EXISTS_QUERYstatic str'PULL_<field_name>_QUERYstatic strPULL_<field_name>_IF_EXISTS_QUERYstatic strpush_<field_name>methodpush_<field_name>_if_existsmethodpull_<field_name>methodpull_<field_name>_if_existsmethod
-
Model:
-
Generated Collection Queries:
Generated query will expect value as first bind value and primary key fields as next bind values.
Now we could use this constant within Batch operations.
let batch = batch; let users: ; for user in users batch.execute.await; -
Generated Collection Methods:
push_to_<field_name>andpull_from_<field_name>methods are generated for each collection field.let user: new; user.push_tags.execute.await; user.push_tags_if_exists.execute.await; user.pull_tags.execute.await; user.pull_tags_if_exists.execute.await; user.push_post_ids.execute.await; user.push_post_ids_if_exists.execute.await; user.pull_post_ids.execute.await; user.pull_post_ids_if_exists.execute.await; user.push_books_by_genre.execute.await; user.push_books_by_genre_if_exists.execute.await; user.pull_books_by_genre.execute.await; user.pull_books_by_genre_if_exists.execute.await;
Ignored fields
We can ignore fields by using #[charybdis(ignore)] attribute:
So field organization will be ignored in all operations and
default value will be used when deserializing from other data sources.
It can be used to hold data that is not persisted in database.