You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@kylin.apache.org by "vinoyang (JIRA)" <ji...@apache.org> on 2019/04/11 05:39:00 UTC

[jira] [Created] (KYLIN-3949) Support flink engine type in the whole project

vinoyang created KYLIN-3949:
-------------------------------

             Summary: Support flink engine type in the whole project
                 Key: KYLIN-3949
                 URL: https://issues.apache.org/jira/browse/KYLIN-3949
             Project: Kylin
          Issue Type: Sub-task
          Components: Flink Engine
            Reporter: vinoyang
            Assignee: vinoyang


There are only two cubing engines before. So, there are some code snippet like this : 
{code:java}
String specifiedEngineType = System.getProperty("engineType");
if (StringUtils.isNotEmpty(specifiedEngineType)) {
    engineType = Integer.parseInt(specifiedEngineType);
} else {
    engineType = 2;
}
{code}
Since we have provided the third cubing flink engine, the code snippet above would cause wrong value. This issue used to track this problem and fix it.

 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)