[RELEASE] ScyllaDB CPP-over-Rust Driver 0.3.0

The ScyllaDB team is pleased to announce ScyllaDB CPP Rust Driver 0.3.0, an API-compatible rewrite of GitHub - scylladb/cpp-driver: Scylla C/C++ Driver as a wrapper for the Rust driver. It will fully replace the CPP driver, which is already reaching its End of Life.
The current driver version should be considered Alpha.

Some minor features still need to be included. See Limitations section in README.md.

The underlying Rust driver used version: 0.15.0.

Currently, the cpp-rust-driver does not fully utilize lazy deserialization mechanism introduced in rust-driver 0.15.0. The support for lazy deserialization, and all features
that depend on it are going to be introduced in some future release.

Changes

Starting from this release, features that are not part of original cpp-driver, but are implemented in cpp-rust-driver as an extension to original API, will be labeled as :rocket: [Extension].

Implemented API functions:

  • CassPrepared: (#185)
    • cass_prepared_parameter_name
    • cass_prepared_parameter_data_type
    • cass_prepared_parameter_data_type_by_name[_n]
  • CassResult: (#136)
    • cass_result_column_type
    • cass_result_column_data_type
  • Heartbeat/Keepalive: (#194)
    • cass_cluster_set_connection_heartbeat_interval
    • cass_cluster_set_connection_idle_timeout
  • Schema agreement: (#198)
    • cass_cluster_set_max_schema_wait_time
    • cass_cluster_set_schema_agreement_interval :rocket: [Extension]
  • Rack awareness: (#195)
    • cass_cluster_set_load_balance_rack_aware[_n]
    • cass_execution_profile_set_load_balance_rack_aware[_n]

New features / enhancements

  • Prepared statements now cache result metadata provided by the server. The metadata is NOT updated when table schema is altered. (#136, #205)

Bug fixes:

  • Fixed cass_result_first_row implementation. Previously, it would panic for RESULT:Rows response with empty rows. (#136)
  • Original cpp-driver tries to prepare an empty statement when null pointer is provided
    to cass_session_prepare. We decided to inherit this behaviour for compatibility reasons. (#194)
  • Adjusted some cluster config defaults, according to the defaults specified by cassandra.h. (#193)
  • Fixed the bug where the driver would fallthrough to default round-robin LBP for execution profiles whose LBP was not set by the user. Now, if the LBP for the execution profile is not set, the driver chooses the global LBP defined on the cluster object. (#197)
  • Fixed the bug where result metadata would be inconsistent for prepared statements when table schema was altered. (#205)

CI / developer tool improvements:

  • Adjusted to rust-driver logic, and enabled the SerialConsistencyTests suite. (#186)
  • Fixed the runner’s image ubuntu version to 22.04 during CI. (#191)
  • Enabled NullStringApiArgsTest suite. (#194)
  • Added an explicit step to update apt cache during CI jobs. (#190)
  • Adjusted, and enabled 2 out of 3 tests from HeartbeatTests suite. (#202)
  • Enabled AlterDoesntUpdateColumnCount test in favor of AlterProperlyUpdatesColumnCount. It is related to the bug fix regarding prepared statement’s result metadata. (#205)

Documentation:

  • Created a docs directory with a sample docs site. Work on the documentation will continue in the near future. (#134)

Others:

  • Adjusted build.rs, so bindgen generates definitions for numeric types automatically. Created modules for each source file generated by bindgen. (#188)
  • Got rid of redundant cassandra.h file in scylla-rust-wrapper. (#196)

Congrats to all contributors and thanks everyone for using our driver!


The source code of the driver can be found here:

Thank you for your attention, please do not hesitate to contact us if you have any questions, issues, feature requests, or are simply interested in our driver!

Contributors since the last release:

commits author
76 Mikołaj Uzarski
3 David Garcia
2 Karol Baryła
1 Dmitry Kropachev
2 Likes