Add row limit setting of data viewer and support Apache Arrow Table#945
Merged
renkun-ken merged 6 commits intoREditorSupport:masterfrom Feb 3, 2022
Merged
Add row limit setting of data viewer and support Apache Arrow Table#945renkun-ken merged 6 commits intoREditorSupport:masterfrom
renkun-ken merged 6 commits intoREditorSupport:masterfrom
Conversation
… it in the data viewer
6a1b011 to
472b4c6
Compare
Contributor
Author
|
When I tried the data viewer with a huge data frame, I got the impression that limiting it to 100,000 records only waited a few seconds, but with 1 million records it wasn't clear if it was working. |
renkun-ken
reviewed
Feb 1, 2022
Contributor
Author
|
Thank you for your review. I edited them. It seems to have failed to check, but it may be a problem in GitHub Actions. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What problem did you solve?
close #944
Currently, when displaying a data frame in the data viewer, temporary files are written out and read in, which does not work well for huge data frames with more than a few million rows. (related to #619, #837)
I would like to add an option to limit the number of records loaded into the data viewer, as it is often enough to see some of the content without loading all the records into the data viewer.
I would also like to add support for the Apache Arrow Table, which is becoming a strong choice for data frame compatibility when dealing with large numbers of records.
By controlling the number of records to be displayed, a huge Arrow Table can be displayed in the data viewer without stress.
ArrowTabular).(If you have)Screenshot