ChenKai created CARBONDATA-4227:
-----------------------------------
Summary: SDK CarbonWriterBuilder cannot execute `build()` several
times with different output path
Key: CARBONDATA-4227
URL: https://issues.apache.org/jira/browse/CARBONDATA-4227
Project: CarbonData
Issue Type: Bug
Components: core
Affects Versions: 2.1.1
Reporter: ChenKai
Sometimes we want to reuse CarbonWriterBuilder object to build CarbonWriter
with different output paths, but it does not work.
For example:
{code:scala}
val builder = CarbonWriter.builder().withCsvInput(...).writtenBy(...)
// 1. first writing with path1
val writer1 = builder.outputPath(path1).build()
// write data, it works
// 2. second writing with path2
val writer2 = builder.outputPath(path2).build()
// write data, it does not work. It still writes data to path1
{code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)