{% trans "Current type:" %}
{% if request.session.guide_job_type %}
{{ request.session.guide_job_type}}
{% else %}
{% trans "No type chosen" %}
{% endif %}
{% if request.session.guide_job_type %}
{% if view.show_data_sources %}
{% blocktrans %}Data Sources are what your
job uses for input and output. Depending on the type
of job you will be running, you may need to define one
or more data sources. You can create multiple data
sources by repeating this step.
{% endblocktrans %}
{% blocktrans %}Define your Job Template.
This is where you choose the type of job that you
want to run (Pig, Java Action, Spark, etc) and choose
or upload the files necessary to run it. The inputs
and outputs will be defined later.
{% endblocktrans %}
{% trans "Job template:" %}
{% if request.session.guide_job_name %}
{{ request.session.guide_job_name }}
{% else %}
{% trans "No job template created" %}
{% endif %}
{% blocktrans %}Launch your job. When
launching, you may need to choose your input and
output data sources. This is where you would also
add any special configuration values, parameters,
or arguments that you need to pass along
to your job.
{% endblocktrans %}