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

Consider revisiting shared file reader trait for JSON and Parquet #728

Open
sebastiantia opened this issue Mar 4, 2025 · 0 comments
Open
Labels
enhancement New feature or request

Comments

@sebastiantia
Copy link
Collaborator

sebastiantia commented Mar 4, 2025

Please describe why this is necessary.

Previously, we had a shared file reader trait for handling both JSON and Parquet files, but it was removed to reduce unnecessary coupling. However, in create_checkpoint_stream, we now have a case where such a trait could have been beneficial.

Right now, we handle JSON and Parquet separately via:

  let actions = match self.checkpoint_parts.first() {
            Some(parsed_log_path) if parsed_log_path.extension == "json" => {
                engine.get_json_handler().read_json_files(
                    &checkpoint_file_meta,
                    checkpoint_read_schema.clone(),
                    meta_predicate,
                )?
            }
            Some(parsed_log_path) if parsed_log_path.extension == "parquet" => parquet_handler
                .read_parquet_files(
                    &checkpoint_file_meta,
                    checkpoint_read_schema.clone(),
                    meta_predicate,
                )?,
            Some(parsed_log_path) => {
                return Err(Error::generic(format!(
                    "Unsupported checkpoint file type: {}",
                    parsed_log_path.extension,
                )));
            }
            None => Box::new(std::iter::empty()),
        };

If similar patterns start appearing elsewhere, it may be worth reconsidering the shared file reader abstraction.

Describe the functionality you are proposing.

Action Items

  • Track occurrences of this pattern in other parts of the codebase.
  • Evaluate whether a shared file reader trait would be useful again.
  • Consider potential trade-offs in reintroducing a shared abstraction vs. keeping them separate.

Places Where This Appears

  1. create_checkpoint_stream in log replay.
  2. (Add any other instances as they come up).

This issue will serve as a reference point if we decide to revisit the shared file reader approach in the future.

Additional context

No response

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

No branches or pull requests

1 participant