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. HDU 4348 I - To the moon 可持续化

    队友套的可持续化线段树,徘徊在RE和MLE之间多发过的... 复用结点新的线段树平均要log2N个结点. 其实离线就好,按照时间顺序组织操作然后dfs. #include <iostream&g ...

  2. initWithNibName/awakeFromNib/initWithCoder

    转自: http://leeyin.iteye.com/blog/1040362 每个ios开发者对loadView和viewDidLoad肯定都很熟悉,虽然这两个函数使用上真的是非常简单,但是和类似 ...

  3. 计算机图形学(Conputer Graphics):非均匀有理B样条

    计算机图形学(Conputer Graphics):非均匀有理B样条 非均匀有理B样条(Non-Uniform Rational B-Spline)英文缩写,NURBS. 它是贝塞尔曲线的一个推广,而 ...

  4. 【单片机实验】6LED静态串行显示

    实验三 6LED静态串行显示一.实验目的1.掌握数字.字符转换成由数码管显示的八段码的软件译码方法及译码过程:2.静态显示的原理和相关程序的编写. 二.实验电路静态显示 电路如图3-2所示.显示器由6 ...

  5. QT+动手设计一个登陆窗口+布局

    登陆窗口的样式如下: 这里面涉及着窗口的UI设计,重点是局部布局和整体布局, 首先在ui窗口上添加一个容器类(Widget),然后将需要添加的控件放置在容器中,进行局部布局(在进行局部布局的时候可以使 ...

  6. C05 C语言字符串和数组

    目录 数组 字符串 数组 概念 数组是有序数据的集合. 数组中的每一个元素属于同一个数据类型. 通过数组名和下标唯一确定数组中的元素. 一维数组的定义 语法格式 数据类型   数组名[常量表达式] 例 ...

  7. linux中添加一个用户到指定用户组的两种方式,修改一个用户到指定用户组的一种方式

    添加一个用户到指定用户组: gpasswd –a 用户名 组名usermod –G 组名 用户名 //第一种:gpasswd –a 用户名 组名 [root@localhost ~]# id user ...

  8. 使用Hexo+Github搭建属于自己的博客

    工具:Visual Studio Code/MarkdownPad技术:Hexo+Github 创建Github项目 Github账户注册和新建项目,项目必须要遵守格式:账户名.github.io,不 ...

  9. python爬虫入门六:Selenium库

    在我们爬取网页过程中,经常发现我们想要获得的数据并不能简单的通过解析HTML代码获取,这些数据是通过AJAX异步加载方式或经过JS渲染后才呈现在页面上显示出来. selenuim是一种自动化测试工具, ...

  10. PAT Basic 1062

    1062 最简分数 一个分数一般写成两个整数相除的形式:N/M,其中 M 不为0.最简分数是指分子和分母没有公约数的分数表示形式. 现给定两个不相等的正分数 N​1​​/M​1​​ 和 N​2​​/M ...