Lingqing Gan

Results 35 comments of Lingqing Gan

Could you please archive and then unarchive the run on UI and then check the storage_state from sdk, and see if it behaves the same? Thank you.

Could you please discuss the problem in this issue? https://github.com/kubeflow/manifests/issues/2165

Hi @tswast, here's a copy from the error log: https://gist.github.com/Linchin/3e9b172f7f8b976f5bc2a9bcad0adfc2 For example, google-cloud-bigquery is resolved to be v3.4.1, with the current version at v3.14.1.

Hi @adonoho, thank you for reporting this issue. I tried, but haven't been able to reproduce it. I suspect this has something to do with your network being unstable. Maybe...

Indeed `df.to_gbq()` doesn't have a timeout option. I'm more thinking about using Python to do it, such as the examples [here](https://stackoverflow.com/questions/492519/timeout-on-a-function-call).

Thanks for reporting the issue! I am able to reproduce it, but it seems to only happen when tqdm is used.

It seems tqdm opens a new thread when an `tqdm` object is created, but it's not closed when tqdm is closed. ``` import tqdm # Create a list of numbers...

This is caused by tqdm [creating a new thread with class `TMonitor`](https://github.com/tqdm/tqdm/blob/cc372d09dcd5a5eabdc6ed4cf365bdb0be004d44/tqdm/std.py#L671) while creating a new `tqdm.tqdm` object. A way to patch this is to set `tqdm.tqdm.monitor_interval = 0` before...