sparkle-0.2: README.md
# Sparkle: Apache Spark applications in Haskell
[](https://circleci.com/gh/tweag/sparkle)
*Sparkle [spär′kəl]:* a library for writing resilient analytics
applications in Haskell that scale to thousands of nodes, using
[Spark][spark] and the rest of the Apache ecosystem under the hood.
**This is an early tech preview, not production ready.**
[spark]: http://spark.apache.org/
## Getting started
The tl;dr using the `hello` app as an example on your local machine:
```
$ stack build hello
$ stack exec sparkle package sparkle-example-hello
$ spark-submit --master 'local[1]' sparkle-example-hello.jar
```
**Requirements:**
* the [Stack][stack] build tool;
* either, the [Nix][nix] package manager,
* or, OpenJDK, Gradle and Spark >= 1.6 installed from your distro.
To run a Spark application the process is as follows:
1. **create** an application in the `apps/` folder, in-repo or as
a submodule;
1. **add** your app to `stack.yaml`;
1. **build** the app;
1. **package** your app into a deployable JAR container;
1. **submit** it to a local or cluster deployment of Spark.
**If you run into issues, read the Troubleshooting section below
first.**
To build:
```
$ stack [--nix] build
```
You can optionally pass `--nix` to all Stack commands to ask Nix to
make Spark and Gradle available in a local sandbox for good build
results reproducibility. Otherwise you'll need these installed through
your OS distribution's package manager for the next steps (and you'll
need to tell Stack how to find the JVM header files and shared
libraries).
To package your app (omit the square bracket part entirely if you're
not using `--nix`):
```
$ [stack --nix exec --] sparkle package <app-executable-name>
```
Finally, to run your application, for example locally:
```
$ [stack --nix exec --] spark-submit --master 'local[1]' <app-executable-name>.jar
```
See [here][spark-submit] for other options, including lauching
a [whole cluster from scratch on EC2][spark-ec2].
[stack]: https://github.com/commercialhaskell/stack
[spark-submit]: http://spark.apache.org/docs/latest/submitting-applications.html
[spark-ec2]: http://spark.apache.org/docs/latest/ec2-scripts.html
[nix]: http://nixos.org/nix
## Troubleshooting
### `jvm` library or header files not found
You'll need to tell Stack where to find your local JVM installation.
Something like the following in your `~/.stack/config.yaml` should do
the trick, but check that the paths match up what's on your system:
```
extra-include-dirs: [/usr/lib/jvm/java-7-openjdk-amd64/include]
extra-lib-dirs: [/usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/server]
```
Or use `--nix`: since it won't use your globally installed JDK, it
will have no trouble finding its own locally installed one.
### Can't build sparkle on OS X
OS X is not a supported platform for now. There are several issues to
make sparkle work on OS X, tracked
[in this ticket](https://github.com/tweag/sparkle/issues/12).
### Gradle <= 2.12 incompatible with JDK 9
If you're using JDK 9, note that you'll need to either downgrade to
JDK 8 or update your Gradle version, since Gradle versions up to and
including 2.12 are not compatible with JDK 9.
## License
Copyright (c) 2015-2016 EURL Tweag.
All rights reserved.
Sparkle is free software, and may be redistributed under the terms
specified in the [LICENSE](LICENSE) file.
## About

Sparkle is maintained by [Tweag I/O](http://tweag.io/).
Have questions? Need help? Tweet at
[@tweagio](http://twitter.com/tweagio).