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

com.marklogic.spark.reader.customcode.CustomCodePartitionReaderFactory Maven / Gradle / Ivy

There is a newer version: 2.4.2
Show newest version
/*
 * Copyright © 2024 MarkLogic Corporation. All Rights Reserved.
 */
package com.marklogic.spark.reader.customcode;

import org.apache.spark.sql.catalyst.InternalRow;
import org.apache.spark.sql.connector.read.InputPartition;
import org.apache.spark.sql.connector.read.PartitionReader;
import org.apache.spark.sql.connector.read.PartitionReaderFactory;

class CustomCodePartitionReaderFactory implements PartitionReaderFactory {

    static final long serialVersionUID = 1;

    private CustomCodeContext customCodeContext;

    public CustomCodePartitionReaderFactory(CustomCodeContext customCodeContext) {
        this.customCodeContext = customCodeContext;
    }

    @Override
    public PartitionReader createReader(InputPartition partition) {
        return new CustomCodePartitionReader(customCodeContext, ((CustomCodePartition) partition).getPartition());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy