摘要:
文章出处:http://www.cnblogs.com/haozhengfei/p/e353daff460b01a5be13688fe1f8c952.html Spark_总结五 1.Storm 和 SparkStreaming区别 Storm 纯实时的流式处理,来一条数据就立即进行处理 Spark 阅读全文
摘要:
源数据: a 12a 2b 26c 85ab 32ab 23ac 12b 85a 36b 69c 25 排序之后: a 2a 12a 36ab 23ab 32ac 12b 26b 69b 85c 25c 85 阅读全文
摘要:
1、官网下载地址 http://scala-ide.org/download/current.html 目前最新的版本 http://download.scala-ide.org/sdk/lithium/e46/scala212/stable/site 在Eclipse中选择Help->Instal 阅读全文
摘要:
http://stackoverflow.com/questions/11118070/buiding-hadoop-with-eclipse-maven-missing-artifact-jdk-toolsjdk-toolsjar1 只要编辑eclipse根目录下的eclipse.ini文件 或者 阅读全文
摘要:
装载数据 1、以LOAD的方式装载数据 LOAD DATA [LOCAL] INPATH 'filepath' [OVERWRITE] INTO TABLE tablename [PARTITION(partcol1=val1, partcol2=val2 ...)] 1) 使用LOCAL这个关键字 阅读全文
摘要:
F3 跳到光标所在的类或方法(按Ctrl+鼠标左键同样可以实现这一功能) F5 进到函数的内部 F6 单步调试 F7 从函数中退出 F8 调到下一个断点(不能使用时应该是和有道词典的快捷键冲突) 阅读全文
摘要:
YARN 是 Hadoop 2.0 中的资源管理系统, 它的基本设计思想是将 MRv1 中的 JobTracker拆分成了两个独立的服务 : 一个全局的资源管理器 ResourceManager 和每个应用程序特有的ApplicationMaster。 其中 ResourceManager 负责整个 阅读全文
摘要:
mysql-5.7以后压缩包安装有了不小的变化 第一步:到官网下载https://dev.mysql.com/downloads/mysql/ 第二步:解压到一个文件夹 第三步:配置环境变量 把;%MYSQL_HOME%\bin插入到Path的最后面 第四步:以管理员的身份运行命令行,按win+R 阅读全文
摘要:
public class ShellSort { public static void print(int[] arr) { for (int i : arr) { System.out.print(i + " "); } System.out.println(); } public static 阅读全文
摘要:
public class BubbleSort{ public static void sort(int[] arr) { int temp; boolean flag = true;//排序的优化,当循环不在赋值时就会停止循环 for (int i = 0; i < arr.length -1 & 阅读全文