How can I get higher throughput using fread with tcpip?
이전 댓글 표시
I have a device that produces a binary data stream of approx 3MB/sec, i.e. roughly 30Mbps, on a tcpip port.
Tried a few different things with fread using the tcpip object of the Instrument Control Toolbox; but can only get around 2Mbps.
댓글 수: 1
Friedrich
2014년 2월 11일
What is you code? How do you read the data? How did you configure your TCPIP object on the MATLAB side?
답변 (3개)
Philipp S.
2019년 3월 23일
1 개 추천
Has the performance of the tcpip / icinstrument fread been improved since? I'm getting just the same weird behaviour here. And I am not quite happy implementing the suggested workaround.
The problem seems to be rooted in the underlying Java method called by icinstrument, as almost all of the time is spent in line 234 of icinstrument.fread:
out = fread(igetfield(obj, 'jobject'), totalSize, type, signed);
댓글 수: 1
Tom DeLonge
2019년 3월 27일
Have you found a solution? Which workaround are you referring to? Reading data in chunks?
Vinod
2014년 2월 14일
0 개 추천
There are a lot of details to look into -
- Are the two devices on the same network/subnet?
- Is there other networks traffic that could be slowing things on the network?
- Are you using the optimum input and output buffer sizes when creating your TCPIP object?
- Could you use a cross over cable between the device and your computer to cut out other factors?
Vinod
2014년 2월 14일
0 개 추천
Good to know you've eliminated other potential bottlenecks.
We've done performance tests that achieve in excess of 45 Megabytes/s for binary data using gigabit networks that had other data running through it at the same time. We did find that the number of bytes being FREAD in each read affected the throughput. The best throughput we achieved was with a large inputbuffersize (1e9) and reading in data in chunks of 1e6 (i.e., fread(tcpipReadObj,1e6)).
I suspect you may need to pick some optimum parameters for FREAD size to get the throughput you need. If you are doing any datatype conversions, they may add to your overheads on the FREAD.
카테고리
도움말 센터 및 File Exchange에서 TCP/IP Communication에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!