diff --git a/documentation/sphinx/source/downloads.rst b/documentation/sphinx/source/downloads.rst index 28d873e764..dabd3cc69b 100644 --- a/documentation/sphinx/source/downloads.rst +++ b/documentation/sphinx/source/downloads.rst @@ -10,38 +10,38 @@ macOS The macOS installation package is supported on macOS 10.7+. It includes the client and (optionally) the server. -* `FoundationDB-6.2.23.pkg `_ +* `FoundationDB-6.2.24.pkg `_ Ubuntu ------ The Ubuntu packages are supported on 64-bit Ubuntu 12.04+, but beware of the Linux kernel bug in Ubuntu 12.x. -* `foundationdb-clients-6.2.23-1_amd64.deb `_ -* `foundationdb-server-6.2.23-1_amd64.deb `_ (depends on the clients package) +* `foundationdb-clients-6.2.24-1_amd64.deb `_ +* `foundationdb-server-6.2.24-1_amd64.deb `_ (depends on the clients package) RHEL/CentOS EL6 --------------- The RHEL/CentOS EL6 packages are supported on 64-bit RHEL/CentOS 6.x. -* `foundationdb-clients-6.2.23-1.el6.x86_64.rpm `_ -* `foundationdb-server-6.2.23-1.el6.x86_64.rpm `_ (depends on the clients package) +* `foundationdb-clients-6.2.24-1.el6.x86_64.rpm `_ +* `foundationdb-server-6.2.24-1.el6.x86_64.rpm `_ (depends on the clients package) RHEL/CentOS EL7 --------------- The RHEL/CentOS EL7 packages are supported on 64-bit RHEL/CentOS 7.x. -* `foundationdb-clients-6.2.23-1.el7.x86_64.rpm `_ -* `foundationdb-server-6.2.23-1.el7.x86_64.rpm `_ (depends on the clients package) +* `foundationdb-clients-6.2.24-1.el7.x86_64.rpm `_ +* `foundationdb-server-6.2.24-1.el7.x86_64.rpm `_ (depends on the clients package) Windows ------- The Windows installer is supported on 64-bit Windows XP and later. It includes the client and (optionally) the server. -* `foundationdb-6.2.23-x64.msi `_ +* `foundationdb-6.2.24-x64.msi `_ API Language Bindings ===================== @@ -58,18 +58,18 @@ On macOS and Windows, the FoundationDB Python API bindings are installed as part If you need to use the FoundationDB Python API from other Python installations or paths, download the Python package: -* `foundationdb-6.2.23.tar.gz `_ +* `foundationdb-6.2.24.tar.gz `_ Ruby 1.9.3/2.0.0+ ----------------- -* `fdb-6.2.23.gem `_ +* `fdb-6.2.24.gem `_ Java 8+ ------- -* `fdb-java-6.2.23.jar `_ -* `fdb-java-6.2.23-javadoc.jar `_ +* `fdb-java-6.2.24.jar `_ +* `fdb-java-6.2.24-javadoc.jar `_ Go 1.11+ -------- diff --git a/documentation/sphinx/source/release-notes/release-notes-620.rst b/documentation/sphinx/source/release-notes/release-notes-620.rst index 12e557c1ff..840272639c 100644 --- a/documentation/sphinx/source/release-notes/release-notes-620.rst +++ b/documentation/sphinx/source/release-notes/release-notes-620.rst @@ -4,6 +4,14 @@ Release Notes ############# +6.2.24 +====== + +Features +-------- + +* Added the ``suspend`` command to ``fdbcli`` which kills a process and prevents it from rejoining the cluster for a specified duration. `(PR #3550) `_ + 6.2.23 ====== diff --git a/fdbcli/fdbcli.actor.cpp b/fdbcli/fdbcli.actor.cpp index 48dea0235c..9ff7efe7ef 100644 --- a/fdbcli/fdbcli.actor.cpp +++ b/fdbcli/fdbcli.actor.cpp @@ -556,7 +556,7 @@ void initHelp() { helpMap["suspend"] = CommandHelp( "suspend
*", "attempts to suspend one or more processes in the cluster", - "If parameters are specified, populates the list of processes which can be suspended. Processes cannot be suspended before this list has been populated.\n\nFor each IP:port pair in
*, attempt to suspend the processes for the specified SECONDS after which the process will die."); + "If no parameters are specified, populates the list of processes which can be suspended. Processes cannot be suspended before this list has been populated.\n\nFor each IP:port pair in
*, attempt to suspend the processes for the specified SECONDS after which the process will die."); helpMap["profile"] = CommandHelp( " ", "namespace for all the profiling-related commands.",