Big Data Developer(Day01)

1. Spring : Framework - > layer: ①cloud platform;②Big Data application;③machine algorithm - > cooperation

2. Hadoop(Cluster)

①copy

 ②burst

3. Cloud Computing

①SAOS(software as a service): app;

②:PAOS(platform as a service):Alibaba Cloud; M - health and smart healthcare;

③IAOS(infrastructure as a service):Tencent

4.  Middle-ware is an independent system software or service program that allows distributed applications to share resources among different technologies.

5.
User Data DB
10t -- 100t  GB      mysql(cluster)
100t -- 5000t                          TB      mongoDB(cluster)
5000t -- 1b  PB      hadoop(cluster)

6. System performence:
①T hroughput capacity = concurrency / response

7.
Jason:{"name":"Eason","sex":"M",.....}
Jason(array):{{"name":"Eason"},{"sex":"M"},.....}
Jason to Java Object:
<script type="text/javascript" src="js/prototype-
1.6.0.3.js"></script>
<script type="text/javascript">
function f1(){…
var txt = xhr.responseText;
// 将json 字符串转换成javascript 对象或者数组
var arr = txt.evalJSON();
// 或
var json = eval('(' + txt + ')');
};
}
</script>
Arrays to Jason:
List<Student> list= new ArrayList<Student >();
for(int i=0;i<3;i++){
Student s = new Student ();
s.setId(i+1);
s.setName(“ 张" + i);
s.setGender(“ 女”);
list.add(s);
}
JSONArray jsonArr = JSONArray.fromObject(list);
String jsonStr = jsonArr.toString();
Java Object to Jason:
Student s1 = new Student (1,“念念”,”
女”);
JSONObject obj =
JSONObject.fromObject(s1);
String jsonStr = obj.toString();




8.Observer pattern:
As long as a system send message, and received by several systems, it called Observer pattern.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值