All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.exasol.parquetio.splitter.FileSplitter Maven / Gradle / Ivy

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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy