Эх сурвалжийг харах

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

Romain 6 жил өмнө
parent
commit
227be01247

+ 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:
 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...)
 * Browse additional storage systems (HDFS, S3, ADLS, GS...)
 * List any jobs or queries (YARN, SQL queries, Kubernetes...)
 * 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
 * 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.
 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
 * Ramping-up with the overall Hue [development](/developer/development) project
 * How to improve the [SQL autocomplete](/developer/parsers/) for your own database
 * 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
 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
 ## Parser Theory