An open API service indexing awesome lists of open source software.

https://github.com/geektimus/spark-training

Project containing all the exercises related to the spark, some of them with explanations.
https://github.com/geektimus/spark-training

Last synced: 25 days ago
JSON representation

Project containing all the exercises related to the spark, some of them with explanations.

Awesome Lists containing this project

README

        

# Spark Certification Preparation

## Exercises

**TextAnalyzer:** Find the top n most common words in a text file

```shell
java -jar target/spark-certification-1.0-SNAPSHOT-dev.jar text-file.txt number-of-words
```

Notes:

* We need to improve the parameter handling in the main class.

## Tests

To run the tests we just run.

```sbt test```