-
Notifications
You must be signed in to change notification settings - Fork 985
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
group by showprogress too chatty #6514
Comments
The current threshold was made to be consistent with @tdhock WDYT? I recall that you expressed a preference to using 3 seconds |
you can turn it off using the showProgress argument/option, from ?data.table
if showProgress is set to numeric value, we could use that value as the threshold in seconds, instead of the default of 3 seconds. |
What about |
that requires hunting down all the scenarios where this is happening and changing code. a global solution would be much preferred |
You can use |
for some reason i thought it was decided against having a global option to govern this. maybe i misread, or something changed. either way, that will solve this for me. |
resolved as far as im concerned. your call whether u want to close this. |
This could be a good feature to think about if more people share the sentiment that a 3s threshold is too little, I don't think it hurts to keep the issue up |
The request makes sense to me -- now we just have progress on/off, exposing some more customization is OK. I also worry adding several new options might be overkill, so the suggestion to overload the Line 76 in 2a70e2f
Line 601 in 2a70e2f
Line 681 in 2a70e2f
One downside (upside?) to the change would be forcing the onset time to be the same for fwrite (currently it's 2 where the others are 3). I also note the extra magic number for fread: IIUC if the initial estimate of progress is >50%, no bar is shown. |
hate to nitpick on such a great package.
i'm seeing things like this:
Processed 5332 groups out of 5332. 100% done. Time elapsed: 3s. ETA: 0s.
progress on a 3 second op is getting annoying. maybe up the threshold significantly (like at least 30 seconds) or have the threshold as a configurable option?
The text was updated successfully, but these errors were encountered: