congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
StorageContext.getAliasMap
Code IndexAdd Tabnine to your IDE (free)

How to use
getAliasMap
method
in
org.apache.kylin.storage.StorageContext

Best Java code snippets using org.apache.kylin.storage.StorageContext.getAliasMap (Showing top 3 results out of 315)

origin: KylinOLAP/Kylin

private List<String> getColumnNames(List<TblColRef> dimensionColumns) {
  Map<TblColRef, String> aliasMap = context.getAliasMap();
  List<String> result = new ArrayList<String>(dimensionColumns.size());
  for (TblColRef col : dimensionColumns)
    result.add(findName(col, aliasMap));
  return result;
}
origin: KylinOLAP/Kylin

rowKeyDecoder.decode(rowkey);
List<TblColRef> columns = rowKeyDecoder.getColumns();
List<String> dimensionNames = rowKeyDecoder.getNames(context.getAliasMap());
List<String> dimensionValues = rowKeyDecoder.getValues();
for (int i = 0; i < dimensionNames.size(); i++) {
origin: KylinOLAP/Kylin

rowKeyDecoder.setCuboid(cuboid);
List<TblColRef> rowColumns = rowKeyDecoder.getColumns();
List<String> colNames = rowKeyDecoder.getNames(context.getAliasMap());
for (int i = 0; i < rowColumns.size(); i++) {
  TblColRef column = rowColumns.get(i);
      String derivedField = getFieldName(derivedCol, context.getAliasMap());
      info.setField(derivedField, derivedCol, derivedCol.getType().getName(), index++);
org.apache.kylin.storageStorageContextgetAliasMap

Popular methods of StorageContext

  • setThreshold
  • <init>
  • getCuboid
  • getLimit
  • hasSort
  • isExactAggregation
  • isLimitEnabled
  • setConnUrl
  • setCuboid
  • setExactAggregation
  • applyLimitPushDown
  • enableCoprocessor
  • applyLimitPushDown,
  • enableCoprocessor,
  • enableLimit,
  • enableStreamAggregate,
  • getConnUrl,
  • getFinalPushDownLimit,
  • getMapping,
  • getOffset,
  • getProcessedRowCount

Popular in Java

  • Running tasks concurrently on multiple threads
  • notifyDataSetChanged (ArrayAdapter)
  • findViewById (Activity)
  • onRequestPermissionsResult (Fragment)
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now