Skip to content
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

Handle series with more than 2^31 "flat" elements #95

Open
hombit opened this issue May 29, 2024 · 1 comment
Open

Handle series with more than 2^31 "flat" elements #95

hombit opened this issue May 29, 2024 · 1 comment
Labels
bug Something isn't working enhancement New feature or request

Comments

@hombit
Copy link
Collaborator

hombit commented May 29, 2024

Currently we do not really care about large datasets, and there are few places where index/offsets computations would fail because of int32 overflow. The reason is that pyarrow uses int32 arrays for offsets.

There are two possible solutions for this:

  • Use pyarrow.LargeList
  • Smarter and wider usage of chunks.
@hombit hombit added enhancement New feature or request bug Something isn't working labels May 29, 2024
@hombit
Copy link
Collaborator Author

hombit commented Jun 27, 2024

We decided to use pyarrow.LargeList

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant