You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@kylin.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2017/12/05 05:23:00 UTC

[jira] [Created] (KYLIN-3082) Close of GTBuilder should be placed in finally block in InMemCubeBuilder

Ted Yu created KYLIN-3082:
-----------------------------

             Summary: Close of GTBuilder should be placed in finally block in InMemCubeBuilder
                 Key: KYLIN-3082
                 URL: https://issues.apache.org/jira/browse/KYLIN-3082
             Project: Kylin
          Issue Type: Bug
            Reporter: Ted Yu
            Priority: Minor


{code}
            baseBuilder.write(r);
            count++;
        }
        aggregationScanner.close();
        baseBuilder.close();
{code}
Since write() call may produce IOE, the close() call should be placed in finally block.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)