[jira] [Commented] (CARBONDATA-366) Incorrect load data behaviour in mentioned scenario

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[jira] [Commented] (CARBONDATA-366) Incorrect load data behaviour in mentioned scenario

Akash R Nilugal (Jira)

    [ https://issues.apache.org/jira/browse/CARBONDATA-366?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15642886#comment-15642886 ]

ASF GitHub Bot commented on CARBONDATA-366:
-------------------------------------------

Github user ravipesala commented on a diff in the pull request:

    https://github.com/apache/incubator-carbondata/pull/284#discussion_r86706791
 
    --- Diff: core/src/main/java/org/apache/carbondata/core/util/CarbonUtil.java ---
    @@ -117,18 +117,27 @@ public static void closeStreams(Closeable... streams) {
         // Added if to avoid NullPointerException in case one stream is being passed as null
         if (null != streams) {
           for (Closeable stream : streams) {
    -        if (null != stream) {
    -          try {
    -            stream.close();
    -          } catch (IOException e) {
    -            LOGGER.error("Error while closing stream" + stream);
    -          }
    +        try {
    +          closeStream(stream);
    +        } catch (IOException e) {
    +          LOGGER.error("Error while closing stream:" + e);
    --- End diff --
   
    But here you are not throwing any error. I don't see much difference from old and new code.


> Incorrect load data behaviour in mentioned scenario
> ---------------------------------------------------
>
>                 Key: CARBONDATA-366
>                 URL: https://issues.apache.org/jira/browse/CARBONDATA-366
>             Project: CarbonData
>          Issue Type: Bug
>            Reporter: Ashok Kumar
>            Priority: Minor
>
> In some scenario, when user loads data system shows load is success full but when we query, there is no data.
> When we see at store location, 0 byte file is created for index file.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)