This is an automated email from the ASF dual-hosted git repository. rustyrazorblade pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/cassandra-easy-stress.git
The following commit(s) were added to refs/heads/main by this push: new bb9959d Update documentation links to reflect Apache repository migration (#43) bb9959d is described below commit bb9959d79621edca5f5152a5eb644f797ce1e527 Author: Marouane REJEB <105524863+maroua...@users.noreply.github.com> AuthorDate: Tue May 20 02:19:49 2025 +0200 Update documentation links to reflect Apache repository migration (#43) --- README.md | 8 ++++---- manual/MANUAL.adoc | 4 ++-- .../kotlin/com/rustyrazorblade/easycassstress/SchemaBuilder.kt | 2 +- .../kotlin/com/rustyrazorblade/easycassstress/commands/Run.kt | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index c384e1f..afe8430 100644 --- a/README.md +++ b/README.md @@ -6,19 +6,19 @@ cassandra-easy-stress is a configuration-based tool for doing benchmarks and tes Unfortunately, it can be challenging to configure a workload. There are fairly common data models and workloads seen on Apache Cassandra. This tool aims to provide a means of executing configurable, pre-defined profiles. -Full docs are here: https://rustyrazorblade.github.io/cassandra-easy-stress/ +Full docs are here: https://apache.github.io/cassandra-easy-stress/ # Installation The easiest way to get started on Linux is to use system packages. -Instructions for installation can be found here: https://rustyrazorblade.github.io/cassandra-easy-stress/#_installation +Instructions for installation can be found here: https://apache.github.io/cassandra-easy-stress/#_installation # Building Clone this repo, then build with gradle: - git clone https://github.com/rustyrazorblade/cassandra-easy-stress.git + git clone https://github.com/apache/cassandra-easy-stress.git cd cassandra-easy-stress ./gradlew shadowJar @@ -53,4 +53,4 @@ Time series workload with Cassandra Authentication enabled: # Generating docs -Docs are served out of /docs and can be rebuild using `./gradlew docs`. \ No newline at end of file +Docs are served out of /docs and can be rebuild using `./gradlew docs`. diff --git a/manual/MANUAL.adoc b/manual/MANUAL.adoc index 5a75a7e..d2cf85b 100644 --- a/manual/MANUAL.adoc +++ b/manual/MANUAL.adoc @@ -96,7 +96,7 @@ First you'll need to clone and build the repo. You can grab the source here and ```bash -$ git clone https://github.com/rustyrazorblade/cassandra-easy-stress.git +$ git clone https://github.com/apache/cassandra-easy-stress.git $ cd cassandra-easy-stress $ ./gradlew shadowJar ``` @@ -299,7 +299,7 @@ workload to specify which fields can be used this way. `cassandra-easy-stress` uses the https://logging.apache.org/[Log4J 2] logging framework. -You can find the default log4j config inhttps://github.com/rustyrazorblade/cassandra-easy-stress/blob/main/src/main/resources/log4j2.yaml[`conf`, window="_blank"]. This should be suitable for most use cases. +You can find the default log4j config in https://github.com/apache/cassandra-easy-stress/blob/main/src/main/resources/log4j2.yaml [`conf`, window="_blank"]. This should be suitable for most use cases. To use your own logging configuration, simply set the shell variable `CASSANDRA_EASY_STRESS_LOG4J` to the path of the new logging configuration before running `cassandra-easy-stress` to point to the config file of your choice. diff --git a/src/main/kotlin/com/rustyrazorblade/easycassstress/SchemaBuilder.kt b/src/main/kotlin/com/rustyrazorblade/easycassstress/SchemaBuilder.kt index 2fb5b53..59ab29b 100644 --- a/src/main/kotlin/com/rustyrazorblade/easycassstress/SchemaBuilder.kt +++ b/src/main/kotlin/com/rustyrazorblade/easycassstress/SchemaBuilder.kt @@ -205,7 +205,7 @@ class SchemaBuilder(var baseStatement: String) { /** * Helper function for compaction shortcuts * If the functino parses, we return a - * @see <a href="https://github.com/rustyrazorblade/cassandra-easy-stress/issues/80">Issue 80 on Github</a> + * @see <a href="https://github.com/apache/cassandra-easy-stress/issues/80">Issue 80 on Github</a> */ fun parseCompaction(compaction: String): Compaction { val parsed = compactionShortcutRegex.find(compaction) diff --git a/src/main/kotlin/com/rustyrazorblade/easycassstress/commands/Run.kt b/src/main/kotlin/com/rustyrazorblade/easycassstress/commands/Run.kt index 156e6b3..20f2a4e 100644 --- a/src/main/kotlin/com/rustyrazorblade/easycassstress/commands/Run.kt +++ b/src/main/kotlin/com/rustyrazorblade/easycassstress/commands/Run.kt @@ -459,7 +459,7 @@ class Run(val command: String) : IStressCommand { } catch (e: Exception) { println( "There was an error with cassandra-easy-stress. Please file a bug at " + - "https://github.com/rustyrazorblade/cassandra-easy-stress and report the following exception:\n $e", + "https://github.com/apache/cassandra-easy-stress and report the following exception:\n $e", ) throw e } finally { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org For additional commands, e-mail: commits-h...@cassandra.apache.org