com.clickzetta.platform.bulkload.BulkLoadCommitMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickzetta-java Show documentation
Show all versions of clickzetta-java Show documentation
The java SDK for clickzetta's Lakehouse
package com.clickzetta.platform.bulkload;
public enum BulkLoadCommitMode {
// Commit the stream, and all the files written will be copied to the target table.
// A bulk load stream can only be committed once.
COMMIT_STREAM("COMMIT_STREAM"),
// Abort the stream. The stream cannot be committed after abort and is discarded.
ABORT_STREAM("ABORT_STREAM");
private String mode;
BulkLoadCommitMode(String mode) {
this.mode = mode;
}
public String getMode() {
return mode;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy