### Why are the changes needed? The PR fixes `nonexisting document` issues: ```shell ./kyuubi/docs/client/advanced/features/index.rst:19: WARNING: toctree contains reference to nonexisting document 'client/advanced/features/engine_resources' [toc.not_readable] ./kyuubi/docs/client/odbc/index.rst:20: WARNING: toctree contains reference to nonexisting document 'client/odbc/todo' [toc.not_readable] ./kyuubi/docs/client/thrift/index.rst:20: WARNING: toctree contains reference to nonexisting document 'client/thrift/hive_beeline' [toc.not_readable] ./kyuubi/docs/index.rst:189: WARNING: toctree contains reference to nonexisting document 'sql/index' [toc.not_readable] ./kyuubi/docs/quick_start/index.rst:23: WARNING: toctree contains reference to nonexisting document 'quick_start/quick_start_with_beeline' [toc.not_readable] ``` ### How was this patch tested? Checked that there are no `nonexisting document` warnings during the documentation build process. ```shell make html ``` ### Was this patch authored or co-authored using generative AI tooling? No Closes #6970 from dnskr/doc-fix-nonexisting-document. Closes #6970 a7c2b3617 [dnskr] [DOC] Fix "nonexisting document" issues Authored-by: dnskr <dnskrv88@gmail.com> Signed-off-by: Kent Yao <yao@apache.org>
38 lines
1.4 KiB
ReStructuredText
38 lines
1.4 KiB
ReStructuredText
.. Licensed to the Apache Software Foundation (ASF) under one or more
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
this work for additional information regarding copyright ownership.
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
(the "License"); you may not use this file except in compliance with
|
|
the License. You may obtain a copy of the License at
|
|
|
|
.. http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
.. Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
Clients
|
|
=======
|
|
|
|
This section aims to document the APIs, clients and tools for end-users who are not necessary to care about deployment at the kyuubi server side.
|
|
|
|
Kyuubi provides standards-based drivers for JDBC, and ODBC enabling developers to build database applications in their language of choice.
|
|
|
|
In addition, APIs like REST, Thrift, etc., allow developers to access kyuubi directly and flexibly.
|
|
|
|
.. note::
|
|
When you try some of the examples in this section, make sure you have a available server.
|
|
|
|
.. toctree::
|
|
:maxdepth: 2
|
|
|
|
jdbc/index
|
|
cli/index
|
|
bi_tools/index
|
|
rest/index
|
|
ui/index
|
|
python/index
|
|
advanced/index
|