com.exasol.parquetio.splitter.FileSplitter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of parquet-io-java Show documentation
Show all versions of parquet-io-java Show documentation
This project provides a library that reads Parquet files into Java objects.
The newest version!
package com.exasol.parquetio.splitter;
import java.util.List;
import com.exasol.parquetio.data.ChunkInterval;
/**
* An interface for splitting files into chunks.
*/
public interface FileSplitter {
/**
* Gets file splits in the form of {@code start} and {@code end} intervals.
*
* @return an array of intervals
*/
List getSplits();
}