gorsat.spark.GorWriteBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gor-spark Show documentation
Show all versions of gor-spark Show documentation
GORpipe allows analysis of large sets of genomic and phenotypic tabular data using a declarative query language in a parallel execution engine
package gorsat.spark;
import org.apache.spark.sql.connector.write.BatchWrite;
import org.apache.spark.sql.connector.write.WriteBuilder;
import org.apache.spark.sql.connector.write.streaming.StreamingWrite;
public abstract class GorWriteBuilder implements WriteBuilder {
@Override
public BatchWrite buildForBatch() {
throw new UnsupportedOperationException(this.getClass().getName() + " does not support batch write");
}
@Override
public StreamingWrite buildForStreaming() {
throw new UnsupportedOperationException(this.getClass().getName() + " does not support streaming write");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy