摘要:
权限掩码 umask为用户文件创建掩码,是创建文件或文件夹时默认权限的基础。通常我们可以使用chmod修改linux中文件的权限。umask的作用与chmod的效果相反,具体看下面。 若没有文件掩码时,文件的默认权限为0666,文件夹的默认权限为0777。 第一位代表特殊权限(suid:4、sgid 阅读全文
摘要:
在Windows操作系统中使用eclipse本地运行hadoop的hdfs程序, FileSystem local = FileSystem.getLocal(conf); 使用 FSDataOutputStream out = local.create(localFile); 创建本地文件输出流时 阅读全文
摘要:
windows环境变量增加一项HADOOP_USER_NAME,值为你的Linux用户名。 阅读全文
摘要:
产生这些问题的原因: 使用 bin/hdfs namenode -format 进行过多次格式化,namenode format清空了namenode下的数据,但是没有清空datanode下的数据。 所以要做的就是每次format前,清空一下hdfs-site.xml中配置的所有目录,之后再进行fo 阅读全文
摘要:
Eclipse连接不上虚拟机上的hdfs,一直显示Listing folder content,如下图所示: 要做到以下三点: 1. 本身就还没创建输入和输出目录,此时要在hdfs上建个文件夹 。 bin/hdfs dfs -mkdir -p /user/hadoop/input bin/hdfs 阅读全文
摘要:
"Well, it seems the first problem is too easy. I will let you know how foolish you are later." feng5166 says. "The second problem is, given an positiv 阅读全文
摘要:
定义 在一个规模为N的数组A[N]中,所谓主元素就是出现次数大于N/2的元素,例如 3.3.4.2.4.4.2.4.4 有一个主元素为4。 充分利用主元素的出现次数大于N/2这个已知条件,因为主元素的出现次数大于N/2,所以容易证明下面的解法是正确的: 首先假设主元素是X,则遍历数组时出现与X相等的 阅读全文
摘要:
For each test case, all dates will be within a single month. Each on-line record is paired with the chronologically next record for the same customer 阅读全文
摘要:
1014 Waiting in Line (30分) Sample Input: 2 2 7 5 1 2 6 4 3 534 2 3 4 5 6 7 Sample Output: 08:07 08:06 08:10 17:00 Sorry 思路 这道题是一个银行队列的模拟,具体处理比较复杂,要想不超 阅读全文
摘要:
1013 Battle Over Cities (25分) It is vitally important to have all the cities connected by highways in a war. If a city is occupied by the enemy, all t 阅读全文