1. hdfs如果小文件多了会有什么后果??
2. hdfs的NameNode的启动过程
3. NameNode管理什么数据??详细
4. hdfs中路径的表示
5. Linux下服务不响应应该怎么排查 netstat
top
iostat
查看进程打开哪些文件的命令
6. 问了下RAID级别 【360系统部大数据一面】raid0和raid5
7. == 和 equals的区别 老生常谈
8. HashMap可以用对象做Key吗? 可以。需要重写hashCode方法和Equals方法
9. 撸代码题
9.1 归并排序的merge操作
9.2 你自己实现String的equals函数
public class String
{
public char[] chars;
public boolean equals(String str)
{
//null
// if(str == null)
//{//}//==
if(this.chars == str.chars)
{
return true;
}
//length
if(this.chars.length != str.chars.length)
{
return false;
}
//check content
for(int i=0;
i