hive:

http://lxw1234.com/archives/2015/07/413.htm

搜狗实验室数据集:

https://www.sogou.com/labs/resource/list_yuliao.php

远程调试:

spark.driver.extraJavaOptions

-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=5005,server=y,suspend=n

360开源的统一sql层:

https://www.oschina.net/p/360-quicksql?from=toutiaohao

github是个宝藏:

https://zhuanlan.zhihu.com/p/49500971

java

http://www.cnblogs.com/zuoxiaolong/p/niubi-job-3.html

https://www.cnblogs.com/cunkouzh/p/5382870.html

ignite:

https://www.zybuluo.com/liyuj/note/1179662

不同发行版本linux安装软件方式:

https://www.cnblogs.com/ngtest/p/9785385.html

suse源:

https://www.cnblogs.com/chenfool/p/6792799.html

kafka:

http://orchome.com/6

https://blog.51cto.com/xpleaf/2090847

https://blog.csdn.net/lingbo229/article/details/80761778

https://www.jianshu.com/p/d3e963ff8b70

http://www.orchome.com/295 //官方中文翻译文档

es6.3:

http://lxw1234.com/archives/2018/08/926.htm

https://blog.51cto.com/xpleaf/2095836

https://blog.51cto.com/xpleaf/2095836

es的api封装:

https://github.com/xpleaf/commons-rest-es

离线数据处理:

https://blog.51cto.com/xpleaf/2095836

在线数据处理:

https://blog.51cto.com/xpleaf/2104160

序列化和反序列化:

avro:https://shift-alt-ctrl.iteye.com/blog/2217425

protobuf:

thrift:

tcp长短链接:

http://www.zuoxiaolong.com/blog/article.ftl?id=183

awsome scala

https://github.com/lauris/awesome-scala#json

ELK:

https://www.cnblogs.com/kevingrace/p/5919021.html

https://www.cnblogs.com/aresxin/p/8035137.html

Nignix:

https://www.cnblogs.com/suixin84/p/6491579.html

bigdata related的更多相关文章

  1. MS SQL错误:SQL Server failed with error code 0xc0000000 to spawn a thread to process a new login or connection. Check the SQL Server error log and the Windows event logs for information about possible related problems

          早晨宁波那边的IT人员打电话告知数据库无法访问了.其实我在早晨也发现Ignite监控下的宁波的数据库服务器出现了异常,但是当时正在检查查看其它服务器发过来的各类邮件,还没等到我去确认具体情 ...

  2. Thinking in BigData 系列

    Thinking in BigData(九)大数据hadoop集群下离线数据存储和挖掘架构 Thinking in BigData(八)大数据Hadoop核心架构HDFS+MapReduce+Hbas ...

  3. How to remove a batch of VMs and related Disks

    Foreword Need to remove a batch of VMs, which named with same prefix or belong to same Cloud Service ...

  4. SharePoint Server 2010 & WorkFlow related Limits

    Today, I have come across different workflow related limits for SharePoint Server 2010. Limit Maximu ...

  5. PeopleSoft Related Language Records

    As we all know, PeopleSoft is capable of maintaining application data in multiple languages within t ...

  6. Data Developer Center > Learn > Entity Framework > Get Started > Loading Related Entities

    Data Developer Center > Learn > Entity Framework > Get Started > Loading Related Entitie ...

  7. algorithm@ Sieve of Eratosthenes (素数筛选算法) & Related Problem (Return two prime numbers )

    Sieve of Eratosthenes (素数筛选算法) Given a number n, print all primes smaller than or equal to n. It is ...

  8. Part 16 Important concepts related to functions in sql server

    Important concepts related to functions in sql server

  9. Useful related java API for Android

    Language_suport and Other Language-Oriented API: strings,exceptions, threads, #java.lang.* offers th ...

随机推荐

  1. House of Spirit(fastbin)

    0x01 fastbin fastbin所包含chunk的大小为16 Bytes, 24 Bytes, 32 Bytes, … , 80 Bytes.当分配一块较小的内存(mem<=64 Byt ...

  2. SSH整合JAR包详解

    如果要使用连接池,添加JAR : c3p0-0.9.1.2.jar

  3. Memcache查看列出所有key方法

    Memcached查看列出所有key方法 测试的过程中,发现Memcached没有一个比较简单的方法可以直接象redis那样keys *列出所有的Session key,并根据key get对应的se ...

  4. 有趣的this以及apply,call,bind方法

    看this指向谁,要看执行时而非定义时(箭头函数除外).函数没有绑定在对象上调用,非'strict'模式下,this指向window,否则为undefined 改变this指向的方法 1. apply ...

  5. hihoCoder-1097-Prim

    这题就是prim的板子题,不过如果用end每次初始化为-1的话,我们就不需要对于每次选中的下一个点进行判断是否选中了,因为每次外层循环第一次进入都是可以的. 然后还很 (i=1:i<=n;i++ ...

  6. HDU-1548-奇怪的电梯

    这题的题意就是,如果在k层,该数的序号为k,则在k层上只能去k+a[k]层或者k-a[k],这样的话,就变成了一个单向联通图,对这个Dijkstra算法就可以了. #include <cstdi ...

  7. react事件代理

    参考:https://github.com/youngwind/blog/issues/107 首先回顾以下原生事件的两个方法:event.stopImmediatePropagation 和 eve ...

  8. 力扣题目汇总(重复N次元素,反转字符串,斐波那契数)

    重复 N 次的元素 1.题目描述 在大小为 2N 的数组 A 中有 N+1 个不同的元素,其中有一个元素重复了 N 次. 返回重复了 N 次的那个元素. 示例 1: 输入:[1,2,3,3] 输出:3 ...

  9. 算法学习记录-图——最短路径之Dijkstra算法

    在网图中,最短路径的概论: 两顶点之间经过的边上权值之和最少的路径,并且我们称路径上的第一个顶点是源点,最后一个顶点是终点. 维基百科上面的解释: 这个算法是通过为每个顶点 v 保留目前为止所找到的从 ...

  10. mac下secureCRT 客户端 $redis-cli回车后没有反应的解决办法

    启动redis server后,SecureCRT进入redis-cli,输入不断在后面追加IP:Port显示设置当前的Session Options-->Terminal-->Emula ...