加载网卡时把网卡绑定到openVswitch端口上(ovs-vsctl add-port br0 eth0),绑定后每当有数据包过来时,都会调用该函数,把数据包传送给这个函数去处理。而不是像开始那样(未绑定前)把数据包往内核网络协议栈中发送,让内核协议栈去处理。openVswitch中数据包接受函数为:void ovs_vport_receive(struct vport *vport, struct sk_buff *skb);函数,该函数所在位置为:datapath/vport.c中。数据包进入open...
分类:
其他好文 时间:
2014-09-17 10:23:22
阅读次数:
484
(process:6471): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security...
分类:
其他好文 时间:
2014-09-15 22:55:54
阅读次数:
222
经常在OGG日志文件中看到如下错误:
OGG-01232 Receive TCP Params Error: TCP/IP Error 104 (Connection Reset By Peer).
查了metalink,大概说的是extract 和collector 交互的关系,分为STREAMING 和NOSTREAMING 模式,各有各的优势。总的建议如果该错误不是很频繁,建议使用S...
分类:
其他好文 时间:
2014-09-15 12:59:28
阅读次数:
561
通常而言我们的kafka的配置如下所示: broker.id=0
num.network.threads=2
num.io.threads=8
socket.send.buffer.bytes=1048576
socket.receive.buffer.bytes=1048576
socket.request.max.bytes=1...
分类:
其他好文 时间:
2014-09-12 17:29:24
阅读次数:
215
Spark Streaming can receive streaming data from any arbitrary data source beyond the one’s for which it has in-built support (that is, beyond Flume, K...
分类:
其他好文 时间:
2014-09-12 11:26:13
阅读次数:
279
if you send json data to mvc,how can you receive them and parse them more simply?you can do it like this: latestData = []; $('.s...
分类:
编程语言 时间:
2014-09-10 14:09:40
阅读次数:
199
When you run your MVC application, you always receive following message:HTTP Error 404.0 - Not FoundThe resource you are looking for has been removed,...
分类:
Web程序 时间:
2014-09-08 02:08:26
阅读次数:
215
知道什么叫同步和异步吗?Insynchronousreceiving, while the server is waiting to receive data from a client, if the stream is empty the main thread will block until...
分类:
其他好文 时间:
2014-09-07 20:58:05
阅读次数:
268
http://bbs.csdn.net/topics/280046868使用套接字完成,按照tcp的方式在一个套接字里维持一个状态机。//定义枚举:enmu state{CLOSED,//没有连接SYN-SENT,//发送了syn,等代服务器ackACK_RECEIVE,//接到服务器ackSYNA...
分类:
其他好文 时间:
2014-09-06 19:56:13
阅读次数:
219
scala支持关联映射,如可以用(key -> value)表示一个键值对 scala中的所有类型都是对象,包括基本数据类型 scala中的case语句用来判断接收的消息,比java中的switch...case...更专注 receive{????case msg =>...
分类:
编程语言 时间:
2014-09-02 20:04:25
阅读次数:
324