Skip to content

Commit f172332

Browse files
authored
Merge pull request #1393 from wprzytula/codewide-scylladb-rename
codewide: rename Scylla -> ScyllaDB
2 parents c9ca852 + b6c4fc8 commit f172332

File tree

30 files changed

+68
-71
lines changed

30 files changed

+68
-71
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
timeout-minutes: 60
9090
steps:
9191
- uses: actions/checkout@v3
92-
- name: Setup 3-node Scylla cluster
92+
- name: Setup 3-node ScyllaDB cluster
9393
run: |
9494
sudo sh -c "echo 2097152 >> /proc/sys/fs/aio-max-nr"
9595
docker compose -f test/cluster/docker-compose.yml up -d --wait

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ To run a cargo test suite, use the command below (note that you must have Docker
3838
```bash
3939
make test
4040
```
41-
When on non-Linux machine, however, it can be impossible to connect to containerized Scylla instance from outside Docker.\
41+
When on non-Linux machine, however, it can be impossible to connect to containerized ScyllaDB instance from outside Docker.\
4242
If you are using macOS, we provide a `dockerized-test` make target for running tests inside another Docker container:
4343
```bash
4444
make dockerized-test
@@ -110,7 +110,7 @@ There are a few scenarios:
110110
using command like `cargo update -p toml_datetime --precise 0.6.3` and go back to step 3.
111111
5. Rename `Cargo.lock` to `Cargo.lock.msrv`.
112112

113-
### Semver checking
113+
### Semver checking
114114

115115
Our CI runs cargo semver-checks and labels PRs that introduce breaking changes.
116116
If you don't intend to change public API, you can perform the checks locally,

MAINTENANCE.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ For an example, see four last commits of this PR: https://github.com/scylladb/sc
130130

131131
Commits that update `scylla-proxy` / `scylla-macros` / `scylla-cql` change:
132132
- `version` field in relevant `Cargo.toml`
133-
- Version number in crates that depend on given crate (so a commit bumping `scylla-macros` will also change version of
133+
- Version number in crates that depend on given crate (so a commit bumping `scylla-macros` will also change version of
134134
`scylla-macros` in `scylla` and `scylla-cql` crates).
135135
- Version number of the crate in `Cargo.lock.msrv`
136136

@@ -249,7 +249,7 @@ should contain links to relevant PR / PRs.
249249

250250
```
251251
The ScyllaDB team is pleased to announce ScyllaDB Rust Driver X.Y.Z,
252-
an asynchronous CQL driver for Rust, optimized for Scylla, but also compatible with Apache Cassandra!
252+
an asynchronous CQL driver for Rust, optimized for ScyllaDB, but also compatible with Apache Cassandra!
253253
254254
Some interesting statistics:
255255
@@ -300,4 +300,3 @@ Contributors since the last release:
300300
| 17 | Mercedes Marks |
301301
302302
```
303-

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This is a client-side driver for [ScyllaDB] written in pure Rust with a fully as
99
Although optimized for ScyllaDB, the driver is also compatible with [Apache Cassandra®].
1010

1111
## Getting Started
12-
The [documentation book](https://rust-driver.docs.scylladb.com/stable/index.html) is a good place to get started. Another useful resource is the Rust and Scylla [lesson](https://university.scylladb.com/courses/using-scylla-drivers/lessons/rust-and-scylla-2/) on Scylla University.
12+
The [documentation book](https://rust-driver.docs.scylladb.com/stable/index.html) is a good place to get started. Another useful resource is the Rust and ScyllaDB [lesson](https://university.scylladb.com/courses/using-scylla-drivers/lessons/rust-and-scylla-2/) on Scylla University.
1313

1414
## Examples
1515
```rust
@@ -27,7 +27,7 @@ while let Some((a, b, c)) = stream.try_next().await? {
2727
```
2828

2929
Please see the full [example](examples/basic.rs) program for more information.
30-
You can also run the example as follows if you have a Scylla server running:
30+
You can also run the example as follows if you have a ScyllaDB server running:
3131

3232
```sh
3333
SCYLLA_URI="127.0.0.1:9042" cargo run --example basic

docs/book.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[book]
2-
title = "Scylla Rust Driver"
3-
description = "Documentation for Scylla Rust Driver"
2+
title = "ScyllaDB Rust Driver"
3+
description = "Documentation for ScyllaDB Rust Driver"
44
authors = []
55
language = "en"
66
multilingual = false
@@ -16,8 +16,8 @@ git-repository-url = "https://github.com/scylladb/scylla-rust-driver"
1616
[preprocessor.sphinx]
1717
command = '''bash -c '
1818
if test -f "./docs/sphinx_preprocessor.py"; then
19-
python ./docs/sphinx_preprocessor.py "$@"
20-
else
19+
python ./docs/sphinx_preprocessor.py "$@"
20+
else
2121
python ./sphinx_preprocessor.py "$@"
2222
fi' run_preprocessor
2323
'''

docs/source/SUMMARY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Summary
22

3-
[Scylla Rust Driver](index.md)
3+
[ScyllaDB Rust Driver](index.md)
44

55
- [Quick start](quickstart/quickstart.md)
66
- [Creating a project](quickstart/create-project.md)
7-
- [Running Scylla using Docker](quickstart/scylla-docker.md)
7+
- [Running ScyllaDB using Docker](quickstart/scylla-docker.md)
88
- [Connecting and executing a simple CQL statement](quickstart/example.md)
99

1010
- [Migration guides](migration-guides/migration-guides.md)

docs/source/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@
4949
master_doc = 'contents'
5050

5151
# General information about the project.
52-
project = 'Scylla Rust Driver'
52+
project = 'ScyllaDB Rust Driver'
5353
copyright = str(date.today().year) + ', ScyllaDB. All rights reserved.'
54-
author = u'Scylla Project Contributors'
54+
author = u'ScyllaDB Project Contributors'
5555

5656
# List of patterns, relative to source directory, that match files and
5757
# directories to ignore when looking for source files.
@@ -116,7 +116,7 @@ def setup(sphinx):
116116
'github_repository': 'scylladb/scylla-rust-driver',
117117
'github_issues_repository': 'scylladb/scylla-rust-driver',
118118
'hide_banner': 'true',
119-
'site_description': 'Scylla Driver for Rust.',
119+
'site_description': 'ScyllaDB Driver for Rust.',
120120
'hide_edit_this_page_button': 'false',
121121
'hide_feedback_buttons': 'false',
122122
'versions_unstable': UNSTABLE_VERSIONS,

docs/source/connecting/connecting.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Connecting to the cluster
22

3-
Scylla is a distributed database, which means that it operates on multiple nodes running independently.
3+
ScyllaDB is a distributed database, which means that it operates on multiple nodes running independently.
44
When creating a `Session` you can specify a few known nodes to which the driver will try connecting:
55
```rust
66
# extern crate scylla;
@@ -56,9 +56,9 @@ If you need to share `Session` with different threads / Tokio tasks etc. use `Ar
5656
The driver refreshes the cluster metadata periodically, which contains information about cluster topology as well as the cluster schema. By default, the driver refreshes the cluster metadata every 60 seconds.
5757
However, you can set the `cluster_metadata_refresh_interval` to a non-negative value to periodically refresh the cluster metadata. This is useful when you do not have unexpected amount of traffic or when you have an extra traffic causing topology to change frequently.
5858

59-
## Scylla Cloud Serverless
59+
## ScyllaDB Cloud Serverless
6060

61-
Scylla Serverless is an elastic and dynamic deployment model. When creating a `Session` you need to
61+
ScyllaDB Serverless is an elastic and dynamic deployment model. When creating a `Session` you need to
6262
specify the secure connection bundle as follows:
6363

6464
```rust

docs/source/data-types/udt.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# User defined types
2-
Scylla allows users to define their own data types with named fields (See [the official documentation](https://opensource.docs.scylladb.com/stable/cql/types.html#user-defined-types))\
2+
ScyllaDB allows users to define their own data types with named fields (See [the official documentation](https://opensource.docs.scylladb.com/stable/cql/types.html#user-defined-types))\
33
To use user defined types in the driver, you can create a corresponding struct in Rust, and use it to read and write UDT values.
44

55

@@ -75,4 +75,4 @@ while let Some((my_type_value,)) = iter.try_next().await? {
7575
}
7676
# Ok(())
7777
# }
78-
```
78+
```

docs/source/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# Scylla Rust Driver
1+
# ScyllaDB Rust Driver
22
This book contains documentation for [scylla-rust-driver](https://github.com/scylladb/scylla-rust-driver) - a driver
3-
for the [Scylla](https://scylladb.com) database written in Rust.
3+
for [ScyllaDB](https://scylladb.com) written in Rust.
44
Although optimized for Scylla, the driver is also compatible with [Apache Cassandra®](https://cassandra.apache.org/).
55

66
### Other documentation
77
* [Examples](https://github.com/scylladb/scylla-rust-driver/tree/main/examples)
8-
* [Rust and Scylla lesson](https://university.scylladb.com/courses/using-scylla-drivers/lessons/rust-and-scylla-2/) on Scylla University
8+
* [Rust and ScyllaDB lesson](https://university.scylladb.com/courses/using-scylla-drivers/lessons/rust-and-scylla-2/) on Scylla University
99
* [API documentation](https://docs.rs/scylla)
10-
* [Scylla documentation](https://docs.scylladb.com)
10+
* [ScyllaDB documentation](https://docs.scylladb.com)
1111
* [Cassandra® documentation](https://cassandra.apache.org/doc/latest/)
1212

1313

0 commit comments

Comments
 (0)