You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@carbondata.apache.org by "ChenKai (Jira)" <ji...@apache.org> on 2021/08/04 07:07:00 UTC

[jira] [Closed] (CARBONDATA-4227) SDK CarbonWriterBuilder cannot execute `build()` several times with different output path

     [ https://issues.apache.org/jira/browse/CARBONDATA-4227?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

ChenKai closed CARBONDATA-4227.
-------------------------------
    Resolution: Not A Bug

> 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
>            Priority: Major
>          Time Spent: 2h 10m
>  Remaining Estimate: 0h
>
> 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)