Skip to content

[C++] Implement a read range process without caching #33311

@asfimport

Description

@asfimport

The current ReadRangeCache is mixing caching with coalescing and making difficult to implement readers capable to really perform concurrent reads on coalesced data (see this github comment for additional context); for instance, right now the prebuffering feature of those readers cannot handle concurrent invocations.

The goal for this ticket is to implement a similar component to ReadRangeCache for performing non-cache reads (doing only the coalescing part instead).  So, once we have that new capability, we can port the parquet and IPC readers to this new component and keep improving the reading process (that would be part of other set of follow-up tickets).  Similar ideas were mentioned here #32846

Maybe a good place to implement this new capability is inside the file system abstraction (as part of a dedicated method to read coalesced data) and where the abstract file system can provide a default implementation.

Reporter: Percy Camilo Triveño Aucahuasi / @aucahuasi
Assignee: Percy Camilo Triveño Aucahuasi / @aucahuasi

Related issues:

PRs and other links:

Note: This issue was originally created as ARROW-18113. Please see the migration documentation for further details.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions