-
Notifications
You must be signed in to change notification settings - Fork 80
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
feat: generator-based chunky Table data iteration #5595
feat: generator-based chunky Table data iteration #5595
Conversation
I have looked at the new ColumnVectors and discussed with @rcaudy about utilizing it to achieve the same goal. I am still not very clear about the advantages/disadvantages between the two approach. @rcaudy could you weigh on this with your thoughts? Another approach @rcaudy mentioned is something similar to |
The issue with using ColumnVectors is that the iteration pattern is cell-oriented, even if the data retrieval is chunk-oriented. There's no pattern implemented that would let you hand data over to Python in an efficient pattern. I think the Python generator pattern wrapping a |
8c6abc9
to
23dbcd7
Compare
2c31523
to
b191ce2
Compare
Co-authored-by: Chip Kent <[email protected]>
Co-authored-by: Chip Kent <[email protected]>
Already implemented what's requested.
Labels indicate documentation is required. Issues for documentation have been opened: Community: deephaven/deephaven-docs-community#260 |
Fixes #5186