下载安装 [hugo文档](https://gohugo.io/getting-started/quick-start/) 1.进入[Github](https://github.com/gohugoio/hugo/releases)下载最新的release. 根据电脑的操作系统选择Linux,Windows,Mac版本. 最好安装extention版本. 安装windows下u...
基础命令 sh List information about the FILEs (the current directory by default). ls 命令行参数众多,初用时不易记住, 可通过help查看参数 ls --help manual, 各命令的操作手册 man ls 常用命令 pwd present(current)...
Hive hive -e "script" eg: ./bin/hive -e "create table src(s string); select * from src;" Hive 建表 create database if not exists tablename location '/my/database/directory' ...
说明 时间维处理时间维度信息, 主要为小时/分钟 日期维表 mysql drop TABLE IF EXISTS dim_time; CREATE TABLE dim_time (time_key BIGINT not null COMMENT 'primary key', time_id time COMMENT '%H:%i:%s', hour_s...
说明 日期维主要为与日期相关的维度, 主要包括, 周/月/季度/年等聚合维度的关联计算. 创建维表 mysql drop TABLE IF EXISTS dim_date; CREATE TABLE dim_date (date_key BIGINT COMMENT 'primary key', date_id date COMMENT 'yyyy-mm...
[TOC] 术语 * 数据仓库 Data Warehousse * 数据集市 Data Mart * 操作型数据存储 ODS, Operational Data Store * 企业数据仓库 EDW, Enterprise Data Warehouse * 集结区 Staging Area * 展现区 Presentation Area 数据流阶段: 抽取, 清洗,...