Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to download documentation for Spark?

Tags:

apache-spark

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

I know it is not a strictly programming question, but I cannot think of any other place to ask this question.

like image 720
Bhushan Avatar asked Mar 04 '15 23:03

Bhushan


People also ask

Does Spark have its own file system?

Spark does not have its system to organize files in a distributed way(the file system). For this reason, programmers install Spark on top of Hadoop so that Spark's advanced analytics applications can make use of the data stored using the Hadoop Distributed File System(HDFS).

Is Spark still in demand?

Huge Demand For Spark Experts Today, there are well over 1,000 contributors to the Apache Spark project across 250+ companies worldwide. Some of the biggest and fastest growing companies use Spark to process data and enable downstream analytics and machine learning.

Where is Spark data stored?

Spark stores data in RDD on different partitions. They help with rearranging the computations and optimizing the data processing. They are also fault tolerance because an RDD know how to recreate and recompute the datasets. RDDs are immutable.


1 Answers

You can use wget to download the spark latest 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

Reference: https://stackoverflow.com/a/21875199/3907204

like image 197
Kharthigeyan Avatar answered Oct 12 '22 23:10

Kharthigeyan