소스 검색

HUE-8888 [docs] Link to list of SQL connectors in the dev parser section

Romain 5 년 전
부모
커밋
227be01247
2개의 변경된 파일8개의 추가작업 그리고 8개의 파일을 삭제
  1. 4 4
      docs/docs-site/content/developer/_index.md
  2. 4 4
      docs/docs-site/content/developer/parsers/_index.md

+ 4 - 4
docs/docs-site/content/developer/_index.md

@@ -8,16 +8,16 @@ pre = "<b>3. </b>"
 
 Hue services are generic and let you integrate with other analytics systems for [querying](/user/querying/) and [browsing](/user/browsing/). Here is a list of the main APIs:
 
-* Connect or create SQL [autocompletes](/developer/parsers/) or connectors to any database (Impala, MySQL, Presto...)
+* Connect or create SQL [autocompletes](/developer/parsers/) or connectors to [any database](/administrator/configuration/connectors/#databases) (Impala, MySQL, Presto...)
 * Browse additional storage systems (HDFS, S3, ADLS, GS...)
 * List any jobs or queries (YARN, SQL queries, Kubernetes...)
 * Integrate with a [Data Catalog](user/browsing/#data-catalog) (Cloudera Navigator, Apache Atlas...) or a Query Optimization service
 
 In addition, whole new apps can also be created in order to provide end to end solutions.
 
-Majoritively, this section would be useful for:
+Majoritively, this section would be useful for learning about:
 
 * Ramping-up with the overall Hue [development](/developer/development) project
 * How to improve the [SQL autocomplete](/developer/parsers/) for your own database
-* SqlAlchemy is becoming the [standard API](https://github.com/cloudera/hue/blob/master/desktop/libs/notebook/src/notebook/connectors/sql_alchemy.py) for databases other than Hive and Impala
-* Check some [contribution ideas](https://github.com/cloudera/hue/blob/master/CONTRIBUTING.md)
+* How SqlAlchemy is becoming the [standard API](https://github.com/cloudera/hue/blob/master/desktop/libs/notebook/src/notebook/connectors/sql_alchemy.py) for databases other than Hive and Impala
+* Checking and getting started on other [contribution ideas](https://github.com/cloudera/hue/blob/master/CONTRIBUTING.md)

+ 4 - 4
docs/docs-site/content/developer/parsers/_index.md

@@ -5,11 +5,11 @@ draft: false
 weight: 2
 ---
 
-This guide goes you through the steps necessary to create an autocompleter for any SQL dialect in Hue. The major benefits are:
+This guide goes you through the steps necessary to create an autocompleter for any [SQL dialect](/administrator/configuration/connectors/#databases) in Hue. The major benefits are:
 
-* showing only valid syntax in the autocomplete
-* getting the list of tables, columns automatically
-* proper syntax highlighting of the keywords
+* Showing only valid syntax in the autocomplete
+* Getting the list of tables, columns automatically
+* Proper syntax highlighting of the keywords
 
 ## Parser Theory