开放缓存服务( Open Cache Service,简称OCS)是基于内存的缓存服务,支持海量小数据的高速访问。OCS可以极大缓解对后端存储的压力,提高网站或应用的响应速度。OCS支持Key-Value的数据结构,兼容Memcached协议的客户端都可与OCS通信。
OCS 支持即开即用的方式快速部署;对于动态Web、APP应用,可通过缓存服务减轻对数据库的压力,从而提高网站整体的响应速度。
与本地MemCache相同之处在于OCS兼容Memcached协议,与用户环境兼容,可直接用于OCS服务 不同之处在于硬件和数据部署在云端,有完善的基础设施、网络安全保障、系统维护服务。所有的这些服务,都不需要投资,只需根据使用量进行付费即可。
OCSWriter是DataX实现的,基于Memcached协议的数据写入OCS通道。
这里使用一份从内存产生的数据导入到OCS。
{
"job": {
"setting": {
"speed": {
"channel": 1
}
},
"content": [
{
"reader": {
"name": "streamreader",
"parameter": {
"column": [
{
"value": "DataX",
"type": "string"
},
{
"value": 19880808,
"type": "long"
},
{
"value": "1988-08-08 08:08:08",
"type": "date"
},
{
"value": true,
"type": "bool"
},
{
"value": "test",
"type": "bytes"
}
],
"sliceRecordCount": 1000
}
},
"writer": {
"name": "ocswriter",
"parameter": {
"proxy": "xxxx",
"port": "11211",
"userName": "user",
"password": "******",
"writeMode": "set|add|replace|append|prepend",
"writeFormat": "text|binary",
"fieldDelimiter": "\u0001",
"expireTime": 1000,
"indexes": "0,2",
"batchSize": 1000
}
}
}
]
}
}
proxy
port
username
password
writeMode
writeFormat
expireTime
描述: OCS值缓存失效时间,目前MemCache支持两类过期时间,
必选:否
默认值:0【0表示永久有效】
indexes
batchSize
fieldDelimiter
CPU:16核、内存:24GB、网卡:单网卡1000mbps
-Xms8g -Xmx8g -XX:+HeapDumpOnOutOfMemoryError
单条数据大小 | 通道并发数 | TPS | 通道流量 | 出口流量 | 备注 |
---|---|---|---|---|---|
1KB | 1 | 579 tps | 583.31KB/s | 648.63KB/s | 无 |
1KB | 10 | 6006 tps | 5.87MB/s | 6.73MB/s | 无 |
1KB | 100 | 49916 tps | 48.56MB/s | 55.55MB/s | 无 |
10KB | 1 | 438 tps | 4.62MB/s | 5.07MB/s | 无 |
10KB | 10 | 4313 tps | 45.57MB/s | 49.51MB/s | 无 |
10KB | 100 | 10713 tps | 112.80MB/s | 123.01MB/s | 无 |
100KB | 1 | 275 tps | 26.09MB/s | 144.90KB/s | 无。数据冗余大,压缩比高。 |
100KB | 10 | 2492 tps | 236.33MB/s | 1.30MB/s | 无 |
100KB | 100 | 3187 tps | 302.17MB/s | 1.77MB/s | 无 |