bigdata related
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:
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的更多相关文章
- 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监控下的宁波的数据库服务器出现了异常,但是当时正在检查查看其它服务器发过来的各类邮件,还没等到我去确认具体情 ...
- Thinking in BigData 系列
Thinking in BigData(九)大数据hadoop集群下离线数据存储和挖掘架构 Thinking in BigData(八)大数据Hadoop核心架构HDFS+MapReduce+Hbas ...
- 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 ...
- SharePoint Server 2010 & WorkFlow related Limits
Today, I have come across different workflow related limits for SharePoint Server 2010. Limit Maximu ...
- PeopleSoft Related Language Records
As we all know, PeopleSoft is capable of maintaining application data in multiple languages within t ...
- Data Developer Center > Learn > Entity Framework > Get Started > Loading Related Entities
Data Developer Center > Learn > Entity Framework > Get Started > Loading Related Entitie ...
- 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 ...
- Part 16 Important concepts related to functions in sql server
Important concepts related to functions in sql server
- Useful related java API for Android
Language_suport and Other Language-Oriented API: strings,exceptions, threads, #java.lang.* offers th ...
随机推荐
- Objective-C分类 (category)和扩展(Extension) 的区别
http://blog.csdn.net/yhawaii/article/details/6992094 http://blog.163.com/wangy_0223/blog/static/4501 ...
- 屏蔽Alt+F4关闭窗体
实现效果: 知识运用: KeyEventArgs类的Alt,Handled属性 public virtual bool Alt {get;} //获取一个值 该值指示是否曾按下Alt键 public ...
- Linux文件操作函数
creat() 函数 close() 函数 read() 函数 read 函数实际读到的字节数少于要求读的字节数时: 读普通文件,在读到要求字节数之前就到达文件尾: 当从终端设备读,通常一次最多读一行 ...
- C语言中函数参数传递
C语言中函数参数传递的三种方式 (1)值传递,就是把你的变量的值传递给函数的形式参数,实际就是用变量的值来新生成一个形式参数,因而在函数里对形参的改变不会影响到函数外的变量的值.(2)地址传递,就是把 ...
- 二分查找算法java
二分查找又称折半查找,它是一种效率较高的查找方法. 折半查找的算法思想是将数列按有序化(递增或递减)排列,查找过程中采用跳跃式方式查找,即先以有序数列的中点位置为比较对象,如果要找的元素值小于该中点元 ...
- JsonUtils工具类
public class JsonUtils { public static void printTimeObject(Object obj, HttpServletResponse response ...
- vue 封装组件上传img
var _uploadTemplate = '<div>'+ '<input type="file" name="file" v-on:cha ...
- c++ 输入10个数,显示它的平均分
#include <iostream> using namespace std; void inputScores(double golfScores[], int size); void ...
- 2018 CCF NOIP提高组&&普及组答案
答案: 这是今年的答案大家觉得能进到复赛吗? 下一篇文章将会为大家推荐我自己出的复赛题!!!
- PAT 乙级 1041
题目 题目地址:PAT 乙级 1041 题解 这道题学到的东西恰好和1037中学到的东西相互补充,总结如下: 在之前的博文中我曾提到过——“结构体在函数内部对数据的操作不能赋给主函数中的实参,函数内部 ...