Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

  1. List all Spark applications.

     :::bash
     yarn application --list
  2. Show status of a Spark application.

     :::bash
     yarn application -status application_1459542433815_0002
  3. view logs of a Spark application.

     :::bash
     yarn logs -applicationId application_1459542433815_0002
  4. kill a Spark application.

     :::bash
     yarn application -kill application_1459542433815_0002