com.marklogic.flux.api.ParquetFilesImporter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flux-api Show documentation
Show all versions of flux-api Show documentation
Flux API for data movement with MarkLogic
/*
* Copyright © 2024 MarkLogic Corporation. All Rights Reserved.
*/
package com.marklogic.flux.api;
import java.util.function.Consumer;
/**
* Read Parquet files from local, HDFS, and S3 locations using
* Spark's Parquet support,
* and write JSON or XML documents to MarkLogic.
*/
public interface ParquetFilesImporter extends Executor {
ParquetFilesImporter from(Consumer consumer);
ParquetFilesImporter from(String... paths);
ParquetFilesImporter to(Consumer consumer);
}