You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kyuubi.apache.org by ul...@apache.org on 2022/04/02 09:49:07 UTC

[incubator-kyuubi] branch master updated: [KYUUBI #2275][DOCS] Fix missing prefix in trino engine quick start

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

ulyssesyou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-kyuubi.git


The following commit(s) were added to refs/heads/master by this push:
     new a18a3a9  [KYUUBI #2275][DOCS] Fix missing prefix in trino engine quick start
a18a3a9 is described below

commit a18a3a956c102b68867f32b73377ef5637b11837
Author: hongdongdong <ho...@cmss.chinamobile.com>
AuthorDate: Sat Apr 2 17:48:54 2022 +0800

    [KYUUBI #2275][DOCS] Fix missing prefix in trino engine quick start
    
    ### _Why are the changes needed?_
    
    Fix missing prefix in trino engine quick start
    
    ### _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.apache.org/docs/latest/develop_tools/testing.html#running-tests) locally before make a pull request
    
    Closes #2276 from hddong/trino-quick-start-fix.
    
    Closes #2275
    
    156ce2ef [hongdongdong] [KYUUBI #2275][DOCS] Fix missing prefix in trino engine quick start
    
    Authored-by: hongdongdong <ho...@cmss.chinamobile.com>
    Signed-off-by: ulysses-you <ul...@apache.org>
---
 docs/quick_start/quick_start.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/quick_start/quick_start.md b/docs/quick_start/quick_start.md
index 9732ec3..cf0c1d9 100644
--- a/docs/quick_start/quick_start.md
+++ b/docs/quick_start/quick_start.md
@@ -179,12 +179,12 @@ Different from Spark/Flink, you must have a Trino cluster first. Trino client st
 
 #### Setup Kyuubi Trino Configration
 
-To enable the Trino engine, the `kyuubi.engine.type` need to be set as `TRINO`. And `session.engine.trino.connection.url` and `session.engine.trino.connection.catalog` are also necessary. You can set all those configs in `$KYUUBI_HOME/conf/kyuubi-defaults.conf`, or set them in your connection parameters.
+To enable the Trino engine, the `kyuubi.engine.type` need to be set as `TRINO`. And `kyuubi.session.engine.trino.connection.url` and `kyuubi.session.engine.trino.connection.catalog` are also necessary. You can set all those configs in `$KYUUBI_HOME/conf/kyuubi-defaults.conf`, or set them in your connection parameters.
 
 ```bash
 kyuubi.engine.type TRINO
-session.engine.trino.connection.url http://localhost:8080    # Your trino cluster server url
-session.engine.trino.connection.catalog hive   # The default catalog connect to.
+kyuubi.session.engine.trino.connection.url http://localhost:8080    # Your trino cluster server url
+kyuubi.session.engine.trino.connection.catalog hive   # The default catalog connect to.
 ```
 
 ### Starting Kyuubi