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

[jira] [Commented] (KYLIN-3087) DistributedLock in GlobalDictionaryBuilder may not release

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

Shaofeng SHI commented on KYLIN-3087:
-------------------------------------

[~kangkaisen] Kaisen, could you please review this patch? thanks.

> DistributedLock in GlobalDictionaryBuilder may not release
> ----------------------------------------------------------
>
>                 Key: KYLIN-3087
>                 URL: https://issues.apache.org/jira/browse/KYLIN-3087
>             Project: Kylin
>          Issue Type: Bug
>          Components: Job Engine
>    Affects Versions: v2.2.0
>            Reporter: Fangyuan Deng
>            Assignee: Fangyuan Deng
>         Attachments: KYLIN-3087.patch
>
>
> In GlobalDictionaryBuilder.init(),
> this.builder = new AppendTrieDictionaryBuilder(baseDir, maxEntriesPerSlice, true);
> if this line has exception, the DistributedLock will not release, and other jobs can not run.
> so,I added a try catch.
>         try {
>             this.builder = new AppendTrieDictionaryBuilder(baseDir, maxEntriesPerSlice, true);
>         } catch (Throwable e) {
>             lock.unlock(getLockPath(sourceColumn));
>             throw new RuntimeException(String.format("Failed to create global dictionary on %s ", sourceColumn), e);
>         }



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