You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kyuubi.apache.org by ch...@apache.org on 2023/05/21 14:26:44 UTC

[kyuubi] branch branch-1.7 updated: [KYUUBI #4864] [DOCS] Fix grammar in HA section

This is an automated email from the ASF dual-hosted git repository.

chengpan pushed a commit to branch branch-1.7
in repository https://gitbox.apache.org/repos/asf/kyuubi.git


The following commit(s) were added to refs/heads/branch-1.7 by this push:
     new 88d398c04 [KYUUBI #4864] [DOCS] Fix grammar in HA section
88d398c04 is described below

commit 88d398c04a38eadab9c5621dc2cb4ee725a9c815
Author: mans2singh <ma...@yahoo.com>
AuthorDate: Sun May 21 22:26:17 2023 +0800

    [KYUUBI #4864] [DOCS] Fix grammar in HA section
    
    ### _Why are the changes needed?_
    The upgrade section states <code>Kyuubi server supports **stop** gracefully</code>.  Update to <code>Kyuubi server supports **stopping** gracefully</code>
    
    ### _How was this patch tested?_
    - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible
    
    - [ ] Add screenshots for manual tests if appropriate
    
    - [ ] [Run test](https://kyuubi.readthedocs.io/en/master/develop_tools/testing.html#running-tests) locally before make a pull request
    
    Closes #4864 from mans2singh/ISSUE-4863.
    
    Closes #4864
    
    5e853f84e [mans2singh] Updated key features section
    
    Authored-by: mans2singh <ma...@yahoo.com>
    Signed-off-by: Cheng Pan <ch...@apache.org>
    (cherry picked from commit 974fa73cac37d4d1bf3b905f62f4276f6f620cc8)
    Signed-off-by: Cheng Pan <ch...@apache.org>
---
 docs/deployment/high_availability_guide.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/deployment/high_availability_guide.md b/docs/deployment/high_availability_guide.md
index 353e549eb..51c878157 100644
--- a/docs/deployment/high_availability_guide.md
+++ b/docs/deployment/high_availability_guide.md
@@ -39,7 +39,7 @@ Using multiple Kyuubi service units with load balancing instead of a single unit
 - High concurrency
   - By adding or removing Kyuubi server instances can easily scale up or down to meet the need of client requests.
 - Upgrade smoothly
-  - Kyuubi server supports stop gracefully. We could delete a `k.i.` but not stop it immediately.
+  - Kyuubi server supports stopping gracefully. We could delete a `k.i.` but not stop it immediately.
     In this case, the `k.i.` will not take any new connection request but only operation requests from existing connections.
     After all connection are released, it stops then.
   - The dependencies of Kyuubi engines are free to change, such as bump up versions, modify configurations, add external jars, relocate to another engine home. Everything will be reloaded during start and stop.