Job Name Change between 1.7 and 1.8?

Good Morning Team,

Hope all is well.

As part of our transition onto the latest and greatest we noticed what we thought was a change in the way that names were being set for interactive jobs (specifically for jupyter_lab).

In our previous install, the names were set to:
ondemand/sys/dashboard/sys/[interactive_job]

In the current install, 1.8, the names are set to:
sys/dashboards/sys/[interactive_job]

Is there a way to change this globally across all jobs?

Best regards,

Juan

What would you like the name to be? Would you like it to remain what was previous ondemand/sys/dashboard/sys/[interactive_job]. I’m actually surprised, I thought we didn’t change it. When I submit a job I still get this:

ondemand/sys/dashboard/sys/bc_desktop/owens

So it follows the 1.7. Is your experience the same for all interactive apps?

Efranz,

Apologies, I actually am testing this with Jupyter Notebook Server.

Yes - we would like it to be the same as it was before.

I’ve only tested this with JNS (since that is the only interactive app we have configured as of now), but I did have to manually set the job_name on the submit.yml.erb to get it to output the same job name as before.

batch_connect:
template: “basic”
set_host: “host=$(hostname -A | awk ‘{print $2}’)”
script:
queue_name: <%= custom_queue.blank? ? “null” : custom_queue.strip %>
native:
- “-N”
- “<%= bc_num_slots.blank? ? 1 : bc_num_slots %>”
<% Shellwords.split(extra_jupyter_args).each do |arg| %>
- <%= “#{arg}” %>
<% end %>
job_name: “ondemand/sys/dashboard/sys/jupyter_notebook”

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.