Welcome to the

Looker Community

The place for data-driven discussion and all your Looker questions, answers, and excitement.

cancel
Showing results for 
Search instead for 
Did you mean: 
Bronze 4
Since ‎09-07-2023
yesterday

My Stats

  • 73 Posts
  • 3 Solutions
  • 7 Likes given
  • 57 Likes received

nick-youngblut's Bio

Badges nick-youngblut Earned

View all badges

Recent Activity

 The GCP Batch console shows info about Batch job such as memory and cores, but not other important information such as time allocated and the size of mounted disks (e.g., local SSDs). It would be very helpful to have this resource allocation informa...
I have 100's of GCP Batch VMs running, and `gcloud compute config-ssh` includes ALL of them, when I just want the few VMs not running via GCP Batch. Is there a way to exclude all GCP Batch VMs when running `gcloud compute config-ssh`? Why would anyon...
The task timeout for GCP Cloud Run times can be set up to 7 days in the GCP console. However, since this option is in preview, trying to set the task timeout >1 day via the CLI:```gcloud run jobs update --task-timeout=7200m```...results in the follow...
A common scenario for creating signed URLs is that one has a directory of many target files. AFAIK, one cannot simply specify the path of the bucket directory holding all of those files. Also, one cannot simply use wildcards to run `gsutil signurl` o...
```gcloud run jobs update --args="--my_arg my,comma,delim,value"```results in the following job config yaml settings:```args:- --my_arg my- comma- delim- value```Using single quotes does NOT help:```gcloud run jobs update --args="--my_arg 'my,comma,d...