本文整理汇总了Python中table.Table.build方法的典型用法代码示例。如果您正苦于以下问题:Python Table.build方法的具体用法?Python Table.build怎么用?Python Table.build使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类table.Table
的用法示例。
在下文中一共展示了Table.build方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: build
# 需要导入模块: from table import Table [as 别名]
# 或者: from table.Table import build [as 别名]
def build(self, sql=None):
""" Ensure the table is built.
"""
data = self._fetch()
self._build_dimensions()
if not Table.build(self, sql):
self._auto_build(data)
self.create_or_replace_views()
self.log_info("Built fact")
示例2: update
# 需要导入模块: from table import Table [as 别名]
# 或者: from table.Table import build [as 别名]
def update(self):
""" Update the fact table with the newest rows, first building the
table if it doesn't already exist.
"""
data = self._fetch(staging_delete=True)
if data is None:
self.log_info("No fact data available")
else:
# Data will be `None` if no staging table exists.
self._build_dimensions()
if not Table.build(self):
self._auto_build(data)
self._insert(data)
self.create_or_replace_views()
self.log_info("Updated fact with %s records", len(data))
示例3: buildTable
# 需要导入模块: from table import Table [as 别名]
# 或者: from table.Table import build [as 别名]
def buildTable(tableConfig):
table = Table(tableConfig['name'], tableConfig['rows'], tableConfig['columns'], tableConfig['stringsForEachInt'], tableConfig['stringLength'], tableConfig['uniqueValues'], outputDirectory, metaDataFile)
memoryBudget = table.build()
print "Finished building table: %s" % (tableConfig['name'])
return memoryBudget