-
Notifications
You must be signed in to change notification settings - Fork 11
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
Add show_progress
flag to BulkImportWriter
#141
Conversation
@@ -1,10 +1,10 @@ | |||
"""IPython Magics | |||
|
|||
IPython magics to access to Treasure Data. Load the magics first of all: | |||
IPython magics to access to Treasure Data. Load the magics first of all: |
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.
Not sure why the linter decided to remove the tab here?
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.
I think the linter is correct though. Multiline comments usually align with the """
, not the text
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.
Left comments. Other than that looks good.
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.
LGTM
Adds the
show_progress
flag to theBulkImportWriter
, to optionally show the progress of chunking intomsgpack
format and uploading the temp files. Defaults toFalse
so backwards compatibility is preserved.Does not affect the progress of the
bulk_import.perform()
orbulk_import.commit()
calls.Not sure if this is even something we're looking to add so feel free to close if it's not meant to be supported (especially if we want to keep dependencies low) - I just found it personally to be a nice touch for developer experience when working with large DataFrame uploads :)