Object that contains message ksb.csle.common.proto.DatasourceProto.FileStreamWriterInfo FileStreamWriterInfo contains attributes as follows:
message FileStreamWriterInfo { enum FileType { CSV = 0; JSON = 1; PARQUET = 2; TEXT = 3; } enum SaveMode { APPEND = 0; OVERWRITE = 1; ERROR_IF_EXISTS = 2; IGNORE = 3; } required string filePath = 1; optional FileType fileType = 2 [default = CSV]; optional bool header = 3 [default = true]; optional SaveMode saveMode = 4 [default = OVERWRITE]; }
Close the FileWriter.
Close the FileWriter.
Object that contains message ksb.csle.common.proto.DatasourceProto.FileStreamWriterInfo FileStreamWriterInfo contains attributes as follows:
Object that contains message ksb.csle.common.proto.DatasourceProto.FileStreamWriterInfo FileStreamWriterInfo contains attributes as follows:
message FileStreamWriterInfo { enum FileType { CSV = 0; JSON = 1; PARQUET = 2; TEXT = 3; } enum SaveMode { APPEND = 0; OVERWRITE = 1; ERROR_IF_EXISTS = 2; IGNORE = 3; } required string filePath = 1; optional FileType fileType = 2 [default = CSV]; optional bool header = 3 [default = true]; optional SaveMode saveMode = 4 [default = OVERWRITE]; }
Save DataFrame to the file.
Save DataFrame to the file.
:: ApplicationDeveloperApi ::
Writer that saves DataFrame to a file.