Available Methods
- getInstanceFromEnv ( )
- SetAndUnsetThreadLocalConfig ( )
- getManager ( )
- getMetadataUrl ( )
- createKylinConfig ( )
- setProperty ( )
- getKylinHome ( )
- createInstanceFromUri ( )
- getJdbcSourceUser ( )
- getJdbcSourceDriver ( )
- getJdbcSourcePass ( )
- getHdfsWorkingDirectory ( )
- destroyInstance ( )
- getMrHiveDictColumnsExcludeRefColumns ( )
- getHiveIntermediateTablePrefix ( )
- getJdbcSourceConnectionUrl ( )
- getHBaseCoreConnectionThreads ( )
- getCoprocessorLocalJar ( )
- isZKLocal ( )
- isEmptySegmentAllowed ( )
- getCubeMetadataExtraValidators ( )
- getStreamingMaxFragmentSizeInMb ( )
- destoryInstance ( )
- getZKMaxRetries ( )
- getSqoopMapperNum ( )
- getJdbcSourceDialect ( )
- getJobCuboidSizeTopNRatio ( )
- getExtTableSnapshotShardingMB ( )
- isSparkSanityCheckEnabled ( )
- getMetadataUrlPrefix ( )
- isHiveKeepFlatTable ( )
- getCubePlannerQueryUncertaintyRatio ( )
- getHBaseScanMaxResultSize ( )
- streamToProps ( )
- writeProperties ( )
- getRemoteHadoopCliHostname ( )
- getRestServers ( )
- isQueryIgnoreUnknownFunction ( )
- isAutoInmemToOptimize ( )
Related Classes
- java.util.Arrays
- java.io.File
- java.util.Collections
- java.util.concurrent.TimeUnit
- java.util.Locale
- org.junit.Before
- java.nio.ByteBuffer
- org.junit.Assert
- org.apache.commons.lang3.StringUtils
- org.springframework.web.bind.annotation.RequestMapping
- java.sql.SQLException
- com.google.common.collect.Lists
- org.apache.commons.lang.StringUtils
- org.springframework.web.bind.annotation.RequestMethod
- com.google.common.collect.Maps
- com.google.common.base.Preconditions
- org.apache.commons.cli.Options
- org.apache.hadoop.conf.Configuration
- org.apache.hadoop.fs.Path
- org.apache.hadoop.fs.FileSystem
- org.apache.hadoop.io.Text
- org.apache.hadoop.mapreduce.Job
- org.apache.hadoop.mapreduce.lib.output.FileOutputFormat
- org.apache.hadoop.hbase.TableName
- org.apache.hadoop.hbase.HTableDescriptor
Java Code Examples for org.apache.kylin.common.KylinConfig#getCubeMetadataExtraValidators()
The following examples show how to use
org.apache.kylin.common.KylinConfig#getCubeMetadataExtraValidators() .
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: CubeMetadataValidator.java From kylin-on-parquet-v2 with Apache License 2.0 | 5 votes |
public CubeMetadataValidator(KylinConfig config) { rules = new ArrayList<>(Arrays.asList(defaultRules)); for (String ruleName : config.getCubeMetadataExtraValidators()) { try { IValidatorRule<CubeDesc> rule = (IValidatorRule<CubeDesc>) Class.forName(ruleName).getConstructor() .newInstance(); rules.add(rule); } catch (Exception e) { logger.error("Construct cube metadata validator rule: {} failed. Ignore this rule", ruleName, e); } } }
Example 2
Source File: CubeMetadataValidator.java From kylin with Apache License 2.0 | 5 votes |
public CubeMetadataValidator(KylinConfig config) { rules = new ArrayList<>(Arrays.asList(defaultRules)); for (String ruleName : config.getCubeMetadataExtraValidators()) { try { IValidatorRule<CubeDesc> rule = (IValidatorRule<CubeDesc>) Class.forName(ruleName).getConstructor() .newInstance(); rules.add(rule); } catch (Exception e) { logger.error("Construct cube metadata validator rule: {} failed. Ignore this rule", ruleName, e); } } }