hdfs
文章平均质量分 57
士弘毅
干一行,爱一行,玩坏一行
展开
-
Spark 超大数据量下OOM的解决
Spark 超大数据量下OOM的解决原创 2023-02-21 18:02:44 · 2422 阅读 · 0 评论 -
hive创建分区表 hive添加分区 hive删除分区
省流: add if not exists partition转载 2022-12-20 10:16:05 · 1394 阅读 · 0 评论 -
Linux运行shell脚本,报错 line x: 某变量: command not found 问题解决
1. 权限问题如果报错 -bash: ./test.sh: Permission denied可以通过下面的命令添加权限:chmod u+x test.sh或chmod a+x test.sh2. 文件格式问题如果报错 command not found按照如下命令,依次输入,三步修改格式:vi test.sh:set ff=unix(改格式):wq(保存)3. 文件问题【大坑】如果报错 line x: 某变量:command not found这里原创 2022-05-25 17:10:28 · 3170 阅读 · 0 评论 -
No FileSystem for scheme:hdfs and Class org.apache.hadoop.DistributedFileSystem not found
在获取 Hadoop 文件系统对象时,如下所示 FileSystem fs = FileSystem.get(hdfsUrl,configuration);错误一如果收到以下错误:"No FileSystem for scheme:hdfs"可以通过在配置中设置以下 2 个属性来解决它configuration.set("fs.hdfs.impl","org.apache.hadoop.hdfs.DistributedFileSystem");configuration.s原创 2022-04-21 16:12:16 · 3123 阅读 · 0 评论