# Apollo Apps

## Spark Applications

{% hint style="info" %}
A license is required to access Spark functionality on the DNAnexus Platform. [Contact DNAnexus Sales](mailto:sales@dnanexus.com) for more information.
{% endhint %}

The Spark application is an extension of the current app(let) framework. App(let)s have a [specification](/developer/api/running-analyses/io-and-run-specifications.md) for their VM (instance type, OS, packages). This has been extended to allow for an additional optional [cluster specification](/developer/apps/developing-spark-apps.md#cluster-specifications) with `type=dxspark`.

* Calling /app(let)-xxxx/run for Spark apps creates a Spark cluster (+ master VM).
* The master VM (where the app shell code runs) acts as the driver node for Spark.
* Code in the master VM uses the Spark infrastructure.
* Job mechanisms (monitoring, termination, and management) are the same for Spark apps as for any other regular app(let)s on the Platform.
* Spark apps use the same platform `dx` communication between the master VM and DNAnexus API servers.
* There's a log collection [mechanism](/developer/apps/developing-spark-apps.md#collecting-cluster-logs) to collect logs from all nodes.
* You can use the [Spark UI](/developer/apps/developing-spark-apps.md#monitoring-the-spark-ui) to monitor a running job using ssh tunneling.

Spark apps can be launched over a distributed Spark cluster.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://documentation.dnanexus.com/user/spark/apollo-apps.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
