You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def sliced_string_cast(array: pa.ChunkedArray) -> pa.ChunkedArray:
"""performs slicing of a pyarrow array prior casting to a string.
This prevents a pyarrow from allocating too large of an array causing a failure.
Issue: apache/arrow#38835
TODO: deprecate this function when pyarrow performs proper ChunkedArray -> ChunkedArray casting
"""
Should we use pyarrow.large_string() to cast large columns > 2GB?
Contribute to pyarrow or wait for a more general solution to re-use here?
The text was updated successfully, but these errors were encountered:
pyarrow.large_string()
to cast large columns > 2GB?The text was updated successfully, but these errors were encountered: