-
Notifications
You must be signed in to change notification settings - Fork 247
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[query/service] make available driver progress information #11746
Conversation
These changes make it straightforward to always use QoB by default.
It now looks like this: ``` In [2]: import hail as hl ...: t = hl.utils.range_table(100) ...: t._force_count() ...: t.show() Submitted batch 1774275, see https://batch.hail.is/batches/1774275/jobs/1 Batch 1774275: completed jobs: 100%|████████████████████████████████████████████████████████████████████| 1/1 [00:14<00:00, 14.76s/it] Submitted batch 1774315, see https://batch.hail.is/batches/1774315/jobs/1 Batch 1774315: completed jobs: 100%|████████████████████████████████████████████████████████████████████| 1/1 [01:03<00:00, 63.06s/it] +-------+ | idx | +-------+ | int32 | +-------+ | 0 | | 1 | | 2 | | 3 | | 4 | | 5 | | 6 | | 7 | | 8 | | 9 | | 10 | | 11 | | 12 | | 13 | +-------+ showing top 14 rows ```
stacked on #11745 |
@tpoterba I have two concrete questions for you here:
|
|
@chrisvittal can you comment on this second point? |
For flag style env variables, I think we should use present and non-empty. We could also go with a reasonable set of 'affirmative' values, like say (all case insensitive) |
I'll go with present and non-empty. |
OK, ready for review. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oops, didn't realize this was hanging on me!
It now looks like this: