Where to download documentation for Spark?

Where can I download documentation for Spark? Although available as web pages , it will be much easier to connect it to a source in Eclipse.

I know that this is not a strictly programming question, but I cannot think of another place to ask this question.

+6
source share
3 answers

I had the same question and I found this page while searching for an answer. Below I worked for me. Note: you need to install Ruby and Python. See the instructions in this Readme in the Prerequisites section.

git clone https://github.com/apache/spark.git 

Optionally, change the branches if you want documentation for a specific version of Spark, for example I wanted Scala docs for Spark 1.6

 git branch -a git checkout remotes/origin/branch-1.6 

cd to docs directory

 cd docs 

Run jekyll build - see above read for parameters

 jekyll build 

Optononym move API documents somewhere else

 mv <path/to/spark>/docs/api <other/location/ 

Note. The pre-built Spark tar file does not seem to include a document directory for some reason.

0
source

Use WinHTTrack or any other standalone site download server.

0
source

You can use wget to download the latest version of a document.

 mkdir spark_latest_docs cd spark_latest_docs wget -m -p -E -k -K -np https://spark.apache.org/docs/latest/ open ./spark.apache.org/docs/latest/index.html 

Link: fooobar.com/questions/180734 / ...

0
source

Source: https://habr.com/ru/post/1214702/


All Articles