码迷,mamicode.com
首页 >  
搜索关键字:ambari hadoop hbase hive spark    ( 26003个结果
文件删除
package com.hadoop.hdfs; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; import ...
分类:其他好文   时间:2020-06-25 17:29:21    阅读次数:73
hadoop创建目录
package com.hadoop.hdfs; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; import ...
分类:其他好文   时间:2020-06-25 17:23:59    阅读次数:69
文件下载
package com.hadoop.hdfs; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; import ...
分类:其他好文   时间:2020-06-25 17:19:12    阅读次数:66
安装 wsl 并配置 xshell 连接 wsl
首先 win+x -> 设置 -> 更新和安全 -> 开发者选项 -> 开发者模式 然后 win+r -> 输入control -> 程序 -> 启用或关闭Windows功能 -> 适用于 Linux 的 Windows 子系统 登陆:https://docs.microsoft.com/en-us ...
分类:系统相关   时间:2020-06-25 13:57:18    阅读次数:179
数据仓库 ODS原始数据层操作
ODS(Operational Data Store):原始数据层,存放原始数据,直接加载原始日志、数据,数据保持原貌不做处理。 在ODS一般需要2个重要的步骤,示例如下: 1.建立ODS层的Hive表。 drop table if exists ods_start_log; CREATE EXTE ...
分类:其他好文   时间:2020-06-25 13:53:34    阅读次数:192
HIVE参数
SESSION级别: set param_cd=param_value; beeline --hiveconf param_cd=param_value; 系统级别: 配置hive-site.xml文件(位于$HIVE_HOME/conf)。其中默认的配置都在hive-default.xml.tem ...
分类:其他好文   时间:2020-06-25 13:42:35    阅读次数:59
HIVE架构
UI: 用于提交查询的客户端,hive自带有CLI(command line),现在推荐使用beeline DRIVER: 1.用于接收客户端提交的SQL,并实现了session控制 2.并提供了jdbc/odbc的fetch和execute功能 COMPILER: 编译器,负责解析SQL,并从ME ...
分类:其他好文   时间:2020-06-25 11:40:51    阅读次数:68
【转】Hbase shell操作表
启动hbase shell ./bin/hbase shell 1、创建表,查看表 create 'tableName', 'familykey1','familykey2',.... eg. create 'student','info','course'list #查看表 2、查看表信息 des ...
分类:系统相关   时间:2020-06-24 23:41:04    阅读次数:75
hadoop源码编译
前期准备 可以正常联网 jar包准备 hadoop-xxx-src.tar.gz jdk-xxx-xxx-tar.gz apache-ant-xxx-bin.tar.gz apache-maven-xxx-bin.tar.gz protobuf-xxx.tar.gz jar包安装 jdk安装到mod ...
分类:其他好文   时间:2020-06-24 19:23:59    阅读次数:52
检查hdfs文件块占用情况
批量执行检查脚本: #!/bin/bash file_name="$1" if [ -z "$file_name" ];then echo "Pls input file path" exit 1 fi cat "$file_name"| while read line do hadoop fsck ...
分类:其他好文   时间:2020-06-24 17:58:36    阅读次数:56
26003条   上一页 1 ... 77 78 79 80 81 ... 2601 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!