forked from apache/spark
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SPARK-21485][SQL][DOCS] Spark SQL documentation generation for built…
…-in functions ## What changes were proposed in this pull request? This generates a documentation for Spark SQL built-in functions. One drawback is, this requires a proper build to generate built-in function list. Once it is built, it only takes few seconds by `sql/create-docs.sh`. Please see https://spark-test.github.io/sparksqldoc/ that I hosted to show the output documentation. There are few more works to be done in order to make the documentation pretty, for example, separating `Arguments:` and `Examples:` but I guess this should be done within `ExpressionDescription` and `ExpressionInfo` rather than manually parsing it. I will fix these in a follow up. This requires `pip install mkdocs` to generate HTMLs from markdown files. ## How was this patch tested? Manually tested: ``` cd docs jekyll build ``` , ``` cd docs jekyll serve ``` and ``` cd sql create-docs.sh ``` Author: hyukjinkwon <gurwls223@gmail.com> Closes apache#18702 from HyukjinKwon/SPARK-21485.
- Loading branch information
1 parent
cf29828
commit 60472db
Showing
11 changed files
with
203 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,6 +47,8 @@ dev/pr-deps/ | |
dist/ | ||
docs/_site | ||
docs/api | ||
sql/docs | ||
sql/site | ||
lib_managed/ | ||
lint-r-report.log | ||
log/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
#!/bin/bash | ||
|
||
# | ||
# 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. | ||
# | ||
|
||
# Script to create SQL API docs. This requires `mkdocs` and to build | ||
# Spark first. After running this script the html docs can be found in | ||
# $SPARK_HOME/sql/site | ||
|
||
set -o pipefail | ||
set -e | ||
|
||
FWDIR="$(cd "`dirname "${BASH_SOURCE[0]}"`"; pwd)" | ||
SPARK_HOME="$(cd "`dirname "${BASH_SOURCE[0]}"`"/..; pwd)" | ||
|
||
if ! hash python 2>/dev/null; then | ||
echo "Missing python in your path, skipping SQL documentation generation." | ||
exit 0 | ||
fi | ||
|
||
if ! hash mkdocs 2>/dev/null; then | ||
echo "Missing mkdocs in your path, skipping SQL documentation generation." | ||
exit 0 | ||
fi | ||
|
||
# Now create the markdown file | ||
rm -fr docs | ||
mkdir docs | ||
echo "Generating markdown files for SQL documentation." | ||
"$SPARK_HOME/bin/spark-submit" gen-sql-markdown.py | ||
|
||
# Now create the HTML files | ||
echo "Generating HTML files for SQL documentation." | ||
mkdocs build --clean | ||
rm -fr docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
# | ||
# 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. | ||
# | ||
|
||
import sys | ||
import os | ||
from collections import namedtuple | ||
|
||
ExpressionInfo = namedtuple("ExpressionInfo", "className usage name extended") | ||
|
||
|
||
def _list_function_infos(jvm): | ||
""" | ||
Returns a list of function information via JVM. Sorts wrapped expression infos by name | ||
and returns them. | ||
""" | ||
|
||
jinfos = jvm.org.apache.spark.sql.api.python.PythonSQLUtils.listBuiltinFunctionInfos() | ||
infos = [] | ||
for jinfo in jinfos: | ||
name = jinfo.getName() | ||
usage = jinfo.getUsage() | ||
usage = usage.replace("_FUNC_", name) if usage is not None else usage | ||
extended = jinfo.getExtended() | ||
extended = extended.replace("_FUNC_", name) if extended is not None else extended | ||
infos.append(ExpressionInfo( | ||
className=jinfo.getClassName(), | ||
usage=usage, | ||
name=name, | ||
extended=extended)) | ||
return sorted(infos, key=lambda i: i.name) | ||
|
||
|
||
def _make_pretty_usage(usage): | ||
""" | ||
Makes the usage description pretty and returns a formatted string. | ||
Otherwise, returns None. | ||
""" | ||
|
||
if usage is not None and usage.strip() != "": | ||
usage = "\n".join(map(lambda u: u.strip(), usage.split("\n"))) | ||
return "%s\n\n" % usage | ||
|
||
|
||
def _make_pretty_extended(extended): | ||
""" | ||
Makes the extended description pretty and returns a formatted string. | ||
Otherwise, returns None. | ||
""" | ||
|
||
if extended is not None and extended.strip() != "": | ||
extended = "\n".join(map(lambda u: u.strip(), extended.split("\n"))) | ||
return "```%s```\n\n" % extended | ||
|
||
|
||
def generate_sql_markdown(jvm, path): | ||
""" | ||
Generates a markdown file after listing the function information. The output file | ||
is created in `path`. | ||
""" | ||
|
||
with open(path, 'w') as mdfile: | ||
for info in _list_function_infos(jvm): | ||
mdfile.write("### %s\n\n" % info.name) | ||
usage = _make_pretty_usage(info.usage) | ||
extended = _make_pretty_extended(info.extended) | ||
if usage is not None: | ||
mdfile.write(usage) | ||
if extended is not None: | ||
mdfile.write(extended) | ||
|
||
|
||
if __name__ == "__main__": | ||
from pyspark.java_gateway import launch_gateway | ||
|
||
jvm = launch_gateway().jvm | ||
markdown_file_path = "%s/docs/index.md" % os.path.dirname(sys.argv[0]) | ||
generate_sql_markdown(jvm, markdown_file_path) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# 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. | ||
|
||
site_name: Spark SQL, Built-in Functions | ||
theme: readthedocs | ||
pages: | ||
- 'Functions': 'index.md' |