Bronze 3
Since ‎09-07-2023
a month ago

My Stats

  • 45 Posts
  • 2 Solutions
  • 4 Likes given
  • 47 Likes received

swpnit's Bio

Badges nick-youngblut Earned

View all badges

Recent Activity

My batch job shows "Running" in the Batch console:However, if I click on the job, the status is "Deleting":The console status is not updating to match the actual status of the job (refreshing the page does not help). The job status is always shown as...
I have been connecting via ssh to my GCP Compute Engine VM all day at work without issues.I then used my work VPN this evening, and also ssh'd to my VM. Once I lost connect to the VM (computer went to sleep), I could not ssh back onto the VM, and the...
I cannot find any docs on setting the time zone for an app running on GCP Cloud Run. I tried using 'gcloud run deploy ${APP_NAME} --set-env-vars=TZ=America/Los_Angeles', but setting the TZ env variable did nothing, and the time zone for my app is sti...
As the number of versions of a secret in Secrets Manager increases, the API calls to request the secret value become increasingly slower. When the number of versions is >75, the API requires >10 seconds, which can result in timeout errors for other p...
Based on the Batch API docs there is no ability to filter or sort the jobs. Is this truly the case? Listing all jobs and then post-filtering them, such as: failed_jobs = [] for job in client.list_jobs(parent=parent): if str(job.status.state) == 'Stat...