Java Code Examples for org.apache.kylin.common.KylinConfig#getManager()

The following examples show how to use org.apache.kylin.common.KylinConfig#getManager() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DataModelManager.java    From kylin with Apache License 2.0 4 votes vote down vote up
public static DataModelManager getInstance(KylinConfig config) {
    return config.getManager(DataModelManager.class);
}
 
Example 2
Source File: CubeDescManager.java    From kylin-on-parquet-v2 with Apache License 2.0 4 votes vote down vote up
public static CubeDescManager getInstance(KylinConfig config) {
    return config.getManager(CubeDescManager.class);
}
 
Example 3
Source File: CubeManager.java    From kylin-on-parquet-v2 with Apache License 2.0 4 votes vote down vote up
public static CubeManager getInstance(KylinConfig config) {
    return config.getManager(CubeManager.class);
}
 
Example 4
Source File: CubeDescManager.java    From kylin with Apache License 2.0 4 votes vote down vote up
public static CubeDescManager getInstance(KylinConfig config) {
    return config.getManager(CubeDescManager.class);
}
 
Example 5
Source File: DistributedScheduler.java    From kylin-on-parquet-v2 with Apache License 2.0 4 votes vote down vote up
public static DistributedScheduler getInstance(KylinConfig config) {
    return config.getManager(DistributedScheduler.class);
}
 
Example 6
Source File: ExecutableManager.java    From kylin-on-parquet-v2 with Apache License 2.0 4 votes vote down vote up
public static ExecutableManager getInstance(KylinConfig config) {
    return config.getManager(ExecutableManager.class);
}
 
Example 7
Source File: KafkaConfigManager.java    From kylin-on-parquet-v2 with Apache License 2.0 4 votes vote down vote up
public static KafkaConfigManager getInstance(KylinConfig config) {
    return config.getManager(KafkaConfigManager.class);
}
 
Example 8
Source File: StreamingManager.java    From kylin with Apache License 2.0 4 votes vote down vote up
public static StreamingManager getInstance(KylinConfig config) {
    return config.getManager(StreamingManager.class);
}
 
Example 9
Source File: DictionaryManager.java    From kylin-on-parquet-v2 with Apache License 2.0 4 votes vote down vote up
public static DictionaryManager getInstance(KylinConfig config) {
    return config.getManager(DictionaryManager.class);
}
 
Example 10
Source File: ProjectManager.java    From kylin with Apache License 2.0 4 votes vote down vote up
public static ProjectManager getInstance(KylinConfig config) {
    return config.getManager(ProjectManager.class);
}
 
Example 11
Source File: ExecutableManager.java    From kylin with Apache License 2.0 4 votes vote down vote up
public static ExecutableManager getInstance(KylinConfig config) {
    return config.getManager(ExecutableManager.class);
}
 
Example 12
Source File: StreamingManager.java    From kylin-on-parquet-v2 with Apache License 2.0 4 votes vote down vote up
public static StreamingManager getInstance(KylinConfig config) {
    return config.getManager(StreamingManager.class);
}
 
Example 13
Source File: ExecutableDao.java    From kylin with Apache License 2.0 4 votes vote down vote up
public static ExecutableDao getInstance(KylinConfig config) {
    return config.getManager(ExecutableDao.class);
}
 
Example 14
Source File: DraftManager.java    From kylin-on-parquet-v2 with Apache License 2.0 4 votes vote down vote up
public static DraftManager getInstance(KylinConfig config) {
    return config.getManager(DraftManager.class);
}
 
Example 15
Source File: Broadcaster.java    From kylin-on-parquet-v2 with Apache License 2.0 4 votes vote down vote up
public static Broadcaster getInstance(KylinConfig config) {
    return config.getManager(Broadcaster.class);
}
 
Example 16
Source File: CubeManager.java    From kylin with Apache License 2.0 4 votes vote down vote up
public static CubeManager getInstance(KylinConfig config) {
    return config.getManager(CubeManager.class);
}
 
Example 17
Source File: CuboidManager.java    From kylin with Apache License 2.0 4 votes vote down vote up
public static CuboidManager getInstance(KylinConfig config) {
    return config.getManager(CuboidManager.class);
}
 
Example 18
Source File: KylinUserManager.java    From kylin with Apache License 2.0 4 votes vote down vote up
public static KylinUserManager getInstance(KylinConfig config) {
    return config.getManager(KylinUserManager.class);
}
 
Example 19
Source File: RealizationRegistry.java    From kylin-on-parquet-v2 with Apache License 2.0 4 votes vote down vote up
public static RealizationRegistry getInstance(KylinConfig config) {
    return config.getManager(RealizationRegistry.class);
}
 
Example 20
Source File: TableACLManager.java    From kylin with Apache License 2.0 4 votes vote down vote up
public static TableACLManager getInstance(KylinConfig config) {
    return config.getManager(TableACLManager.class);
}