jamesmcm opened a new issue, #1019:
URL: https://github.com/apache/datafusion-ballista/issues/1019

   **Describe the bug**
   
   I'm setting the job name with:
   
   ```rust
       let start = SystemTime::now();
       let since_the_epoch = start
           .duration_since(UNIX_EPOCH)
           .expect("Time went backwards");
   
       let n: usize = 10;
       let job_name = format!("top_{}_{}", n, since_the_epoch.as_secs());
   
       let config = BallistaConfig::builder()
           .set("ballista.job.name", &job_name)
           .build()?;
   ```
   
   But it isn't shown in the Web UI (`None` is shown as the job name).
   
   This is the same both locally and in a GKE cluster.
   
   **To Reproduce**
   
   Run a job with the above config.
   
   **Expected behavior**
   
   The job name should appear in the Web UI
   
   **Additional context**
   
   It seems the relevant code is 
https://github.com/apache/datafusion-ballista/blob/04766d5fd7cbb15d583f736979c11de06c720928/ballista/core/src/config.rs#L30
 but I can't see anything wrong.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to