本文整理匯總了TypeScript中plywood.AttributeInfo.applyOverrides方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript AttributeInfo.applyOverrides方法的具體用法?TypeScript AttributeInfo.applyOverrides怎麽用?TypeScript AttributeInfo.applyOverrides使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類plywood.AttributeInfo
的用法示例。
在下文中一共展示了AttributeInfo.applyOverrides方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: deduceAttributes
/**
* This function tries to deduce the structure of the dataSource based on the dimensions and measures defined within.
* It should only be used when for some reason introspection if not available.
* @param dataSource
* @returns {Attributes}
*/
function deduceAttributes(dataSource: DataSource): Attributes {
var attributeJSs: AttributeJSs = [];
dataSource.dimensions.forEach((dimension) => {
// ToDo: fix this.
attributeJSs.push({ name: dimension.name, type: 'STRING' });
});
dataSource.measures.forEach((measure) => {
var expression = measure.expression;
var references = getReferences(expression);
var countDistinctReferences = getCountDistinctReferences(expression);
for (var reference of references) {
if (reference === 'main') continue;
if (countDistinctReferences.indexOf(reference) !== -1) {
attributeJSs.push({ name: reference, special: 'unique' });
} else {
attributeJSs.push({ name: reference, type: 'NUMBER' });
}
}
});
var attributes = AttributeInfo.fromJSs(attributeJSs);
if (dataSource.options['attributeOverrides']) {
attributes = AttributeInfo.applyOverrides(attributes, dataSource.options['attributeOverrides']);
}
return attributes;
}
示例2: externalFactory
export function externalFactory(dataSource: DataSource, druidRequester: Requester.PlywoodRequester<any>, timeout: number, introspectionStrategy: string): Q.Promise<External> {
var countDistinctReferences: string[] = [];
if (dataSource.measures) {
countDistinctReferences = [].concat.apply([], dataSource.measures.toArray().map((measure) => {
return getCountDistinctReferences(measure.expression);
}));
}
var context = {
timeout
};
if (dataSource.introspection === 'none') {
return Q(new DruidExternal({
suppress: true,
dataSource: dataSource.source,
timeAttribute: dataSource.timeAttribute.name,
customAggregations: dataSource.options['customAggregations'],
attributes: AttributeInfo.applyOverrides(deduceAttributes(dataSource), dataSource.attributeOverrides),
introspectionStrategy,
filter: dataSource.subsetFilter,
context,
requester: druidRequester
}));
} else {
var introspectedExternalPromise = new DruidExternal({
suppress: true,
dataSource: dataSource.source,
timeAttribute: dataSource.timeAttribute.name,
attributeOverrides: dataSource.attributeOverrides,
customAggregations: dataSource.options['customAggregations'],
introspectionStrategy,
filter: dataSource.subsetFilter,
context,
requester: druidRequester
}).introspect();
if (!countDistinctReferences) {
return introspectedExternalPromise;
}
return introspectedExternalPromise.then((introspectedExternal) => {
var attributes = introspectedExternal.attributes;
for (var attribute of attributes) {
// This is a metric that should really be a HLL
if (attribute.type === 'NUMBER' && countDistinctReferences.indexOf(attribute.name) !== -1) {
introspectedExternal = introspectedExternal.updateAttribute(AttributeInfo.fromJS({
name: attribute.name,
special: 'unique'
}));
}
}
return introspectedExternal;
});
}
}
示例3: deduceAttributes
/**
* This function tries to deduce the structure of the dataSource based on the dimensions and measures defined within.
* It should only be used when, for some reason, introspection if not available.
* @param dataSource
* @returns {Attributes}
*/
function deduceAttributes(dataSource: DataSource): Attributes {
var attributeJSs: AttributeJSs = [];
var timeAttribute = dataSource.timeAttribute;
if (timeAttribute) {
attributeJSs.push({ name: timeAttribute.name, type: 'TIME' });
}
dataSource.dimensions.forEach((dimension) => {
var expression = dimension.expression;
if (expression.equals(timeAttribute)) return;
var references = getReferences(expression);
for (var reference of references) {
if (reference === 'main') continue;
attributeJSs.push({ name: reference, type: 'STRING' });
}
});
dataSource.measures.forEach((measure) => {
var expression = measure.expression;
var references = getReferences(expression);
var countDistinctReferences = getCountDistinctReferences(expression);
for (var reference of references) {
if (reference === 'main') continue;
if (countDistinctReferences.indexOf(reference) !== -1) {
attributeJSs.push({ name: reference, special: 'unique' });
} else {
attributeJSs.push({ name: reference, type: 'NUMBER' });
}
}
});
var attributes = AttributeInfo.fromJSs(attributeJSs);
if (dataSource.attributeOverrides.length) {
attributes = AttributeInfo.applyOverrides(attributes, dataSource.attributeOverrides);
}
return attributes;
}