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

com.marklogic.flux.api.OrcFilesImporter Maven / Gradle / Ivy

There is a newer version: 1.0.0.ea1
Show newest version
/*
 * Copyright © 2024 MarkLogic Corporation. All Rights Reserved.
 */
package com.marklogic.flux.api;

import java.util.function.Consumer;

/**
 * Read ORC files from local, HDFS, and S3 locations using
 * Spark's ORC support,
 * and write JSON or XML documents to MarkLogic.
 */
public interface OrcFilesImporter extends Executor {

    OrcFilesImporter from(Consumer consumer);

    OrcFilesImporter from(String... paths);

    OrcFilesImporter to(Consumer consumer);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy