> For the complete documentation index, see [llms.txt](https://documentation.dnanexus.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.dnanexus.com/user/spark/apollo-apps.md).

# 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.
* You can use the 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
