The throughput tag has no wiki summary.
0
votes
0answers
29 views
Iperf's output explanation
I am using Iperf in order to get some information between the topology and the links of my network. Here is an example of iperf's typical output:
...
0
votes
1answer
54 views
how to increase TCP window size in android for FTP?
I am trying to develop a simple ftp client using open source ftp4j library for android. I wanted to know if there is any way I can change/increase the tcp window size for data transfer.
I have tried ...
0
votes
0answers
15 views
TCP Throughput versus Packet Loss [migrated]
How does the packet loss rate affect the TCP throughput rate: throughput rate reduce exponentially with respect to loss increase or throughput rate reduces by the same amount as loss increase?
0
votes
2answers
47 views
Calculating the throughput in multithreading code
I am doing bench marking on some of my client code. Now I am trying to find out how to calculate the throughput from my Multithreading code-
I am running my program with 20 threads. And each thread ...
-1
votes
0answers
31 views
How can I throttle script execution in PHP given a per second quota? [closed]
Given:
a variable number of data items to act upon
a PHP script that executes the same function for each data item
a variable rate at which the aforementioned function completes execution
a quota ...
0
votes
3answers
59 views
HornetQ throughput limited to 4000 TPS without persistence
I am using HornetQ embedded in JBoss 6.1 application server.
My applications (a client app, producing messages, and JBoss app consuming them) cannot handle more than 4000 TPS on a server while the CPU ...
0
votes
0answers
35 views
How to calculate Android Network Throughput
I am calculating the network throughput
throughput=total packet(received)/total time consumed.
I have created a dedicated socket with the server and uploading and downloading the file. The output ...
1
vote
2answers
73 views
java - avoid unnessary thread wake-ups
I have a set of 12 threads executing work (Runnable) in parallel. In essence, each thread does the following:
Runnable r;
while (true) {
synchronized (work) {
while (work.isEmpty()) {
...
0
votes
1answer
94 views
IOPS verses Throughput
What is the difference between IOPS and Throughput in large data storage?
Does file size have effect on IOPS? Why/Why not?
0
votes
1answer
45 views
Monitor the queue of TCP messages awaiting transmission
I have a WCF client and server using NetTcp. The server is hosted in a ServiceHost from within a Windows Service. The client subscribes to the WCF service and registers its callback interface and ...
0
votes
0answers
153 views
Testing IPERF. Why UDP throughput decreases in the client side when you open a TCP connection?
I am testing my Wifi network with three nodes with the same specifications (Node 24,76 and 78)
*The maximum bandwidth of the wireless connection is around 12Mbps
This is my scenario and results ...
-1
votes
2answers
50 views
Network Throughput vs Delay [closed]
I was reading a book on Computer Networking and I am confused about something that I read (This is not a homework question):
Consider a server and a client connected by a single router. There is no ...
0
votes
1answer
38 views
Amazon DynamoDDB: Are there limits on programmatic changes to a table provisioned throughput?
I am processing a large set of files as follows: I first download all of them to an EC2 instance and then I run a script that sequentially processes each file and indexes it into a DynamoDDB table ...
0
votes
0answers
130 views
Packets not received by TUN device
I created a TUN device(nat64) and created a route so that all the required packets are forwarded to the TUN device from an eth device. But, I see that many packets are not received by the TUN device.
...
0
votes
1answer
107 views
CUDA, little program to test the throughput
I would need to test some GPUs by testing their throughput in different scenarios.
This includes a simple 64b multiplication:
__device__ void add(unsigned int *data, bool flag){
unsigned int index = ...
4
votes
1answer
62 views
Throughput of arrays of different sizes vary
I have arrays like
byte[] b = new byte[10];
byte[] b1 = new byte[1024*1024];
I populate them with some values. Say,
for(i=0;i<10;i++){
b[i]=1;
}
for(i=0;i<1024*1024;i++){
...
0
votes
0answers
24 views
What is the STANDARD way to evaluate THROUGHPUT of device
I am working on internal DMA engine on OMAP L138 processor from Texas Instrument.
Now i have the driver logic build and tested . As of the next task is to determine
the throughput which we can get ...
0
votes
0answers
91 views
pcie raw throughput test
I am doing a PCIE throughput test via a kernel module, the test result numbers are quite strange (write is 210MB/s but read is just 60MB/s for PCIE gen1 x1). I would like to ask for your suggestions ...
1
vote
2answers
73 views
x86: latency and throughput of transcendental functions
IntelĀ® 64 and IA-32 Architectures Optimization Reference Manual lists latency and throughput figures for various CPU instructions.
For transcendental functions (FSIN etc) some of the figures are ...
1
vote
1answer
24 views
Building a scalable xml bridge processing platform
I'm building middleware that receives a request from the Internet,
connects to a locally available search platform and gets some XML back.
It then changes this XML, pruning it, and changing into ...
0
votes
0answers
118 views
Kafka 0.8 producer throughput test
According to Kafka official document,the producer throughput is about 50MB/S. But I do some test, the producer throughout is only about 2MB/S. The test environment is the same with document says. One ...
2
votes
2answers
212 views
TCP max Throughput and browsers
In theory, max tcp speed is min{rwnd,cwnd} / RTT, where cwnd is congestion window size and rwnd is the receive window size. Assuming cwnd is big enough, it would then just be rwnd/RTT.
Now, if the ...
2
votes
1answer
58 views
What's the difference between “gld/st_throughput” and “dram_read/write_throughput” metrics?
In the CUDA visual profiler, version 5, I know that the "gld/st_requested_throughput" are the requested memory throughput of application. However, when I try to find the actual throughput of hardware, ...
0
votes
2answers
1k views
Calculating network throughput
suppose i have a 4MBits network and i want to calculate the data throughput, this is considering the max transfer rate minus overhead from ethernet/IP/TCP headers.
Reading on the web i found out that ...
0
votes
0answers
67 views
Intel Hyper-Threading Technology computational throughput
Intel Hyper-Threading Technology delivers two processing threads per physical core for a total of four threads for massive computational throughput. This 4-way multi-task processing allows each core ...
0
votes
0answers
134 views
Java GC tuning for server workload requiring high throughput
I have a system with 14 GB memory and 2 quad cores.
Memory layout in my Java program:
Around 5 GB is allocated throughout the life of the program and this allocation happens at the program bootup ...
0
votes
2answers
78 views
How to measure throughput of a network when using skype
I am using USB dongle Wimax and skype as voip application . I want to measure the throughput (kb/s or Mb/s) at run time . is there any way to do this using matlab or C#? (I have a project and need to ...
0
votes
1answer
219 views
Determining latency and throughput for modular multiplication on CPU and CUDA
I need to determine both latency and throughput for (unsigned) modular multiplication in CUDA and on CPU (i5 750).
For the CPU I found this document, pg 121, for the Sandy Bridge, I am not really ...
1
vote
5answers
894 views
Low latency serial communication on Linux
I'm implementing a protocol over serial ports on Linux. The protocol is based on a request answer scheme so the throughput is limited by the time it takes to send a packet to a device and get an ...
1
vote
1answer
183 views
Why doesn't my azure hosted WCF service scale when I add more machines?
We have a WCF service which we are hosting on azure. It takes some xml and processes it in memory (no external calls/db etc and it takes about 150ms) and returns some xml.
We have been load testing ...
2
votes
1answer
143 views
Choosing/configuring a database for high-throughput, reliable, consistent write throughput, sacrificing latency
I'm working on a real-time application with the following characteristics:
Hundreds of clients will be inserting rows/documents at the same time, each inserting a row every couple of seconds.
...
1
vote
1answer
91 views
how do I figure out provisional throughput for AWS DynamoDB table?
My system is supposed to write a large amount of data into a DynamoDB table every day. These writes come in bursts, i.e. at certain times each day several different processes have to dump their output ...
1
vote
0answers
51 views
Android throughput not matching with Access Point traffic
I am trying to compare Network speed in a different way:
Open an input stream to a file server
Using TrafficStat
It seems like the stats I am getting from TrafficStat is the same as when I am ...
0
votes
0answers
49 views
Measure throughput by downloading and uploading files?
My task is to measure the throughput of a wireless LAN.
1) Description of the experiment setup, e.g. the make/model/standard of client and access point, software and method for performing the ...
0
votes
1answer
187 views
Calculate throughput when downloading a file?
By downloading and uploading 5MB, 10MB, 20MB, 50MB, and 100MB files. How can the throughput be calculated?
thanks,
0
votes
0answers
134 views
Can MySQL Cluster match NoSQL performance in heavy throghput with heavy writes
Im designing a turned based strategy game that allows Players to save game states so they can play/resume games at their leisure. This creates a data environment in which there could be potentially ...
0
votes
0answers
70 views
Working out 16 QAM throughput
I am trying to work out how to get the rate which can be achieved with 16 QAM with 5 codes and a coding rate at 2/4.
I have tried dividing the standard chip rate of 3.84MChips/s by the spreading ...
0
votes
0answers
103 views
Getting network interface counters in Windows most efficiently using C/C++
If I want to plot a high resolution throughput graph for a list of network interfaces, whats the fastest way to get the counters?
The graph needs as high resolution as possible so I would guess I ...
4
votes
1answer
109 views
high-throughput, transactional usage of Spring Integration
I have scoured the Internet, posted to the Spring forums, and read nearly the whole of the online documentation, but I cannot figure out whether Spring Integration can process more than one message ...
0
votes
1answer
116 views
Async sends in .NET ActiveMQ
I'm looking to increase the performance of a high-throughput producer that I'm writing against ActiveMQ, and according to this useAsyncSend will:
Forces the use of Async Sends which adds a massive ...
1
vote
2answers
199 views
CUDA addition vs shift instruction performance
I am trying to understand instruction throughput for a large CUDA kernel that I am working on. I wrote two small programs to compare the throughput of addition and shift instructions. According to ...
3
votes
2answers
546 views
WCF throughput lower than expected
I apologize for the post length, but there are lots of things that can cause my situation and I've tried to include all of the setting changes I've made based on other posts. In short, My WCF service ...
1
vote
1answer
3k views
Calculate throughput in NS2 using AWK
My senario in NS 2.29 has 5 nodes which each node has 2 interfaces to expect node 0 and node 4 and node 0 wants to send packet to node 4. The protocol I've used is AODV and type of nodes is wireless
...
0
votes
1answer
204 views
What are the typical write throughput to s3 (using flume 0.9.4)
I am running my flume (flume 0.9.4-cdh3u4) flow in BE mode and both agent and collector, that are on separate machines, are large EC2 instances
The collector writes to the local filesystem as well as ...
1
vote
0answers
51 views
What are good books on understanding and troubleshooting bottlenecks of processes in linux?
Many a times, I feel my application is slower, but I never knew the way to calculate the throughput of my system, when there are multiple things going on like network latency, disk iops limit, cpu ...
0
votes
2answers
250 views
Tomcat throughput limit at low number users
We have a webapp serving the requests for one of our services. We have it running in a Tomcat 7 server. As explained below, not much more details are needed as we have similar results with the most ...
-3
votes
4answers
340 views
throughput and transfer time [closed]
I am not sure with my answers with my network questions. I need help please.
calculation doesnt matter. i just want idea on which link or links together i will consider when i calculate the ...
3
votes
2answers
231 views
How to stream a HTTP Response straight to the network
I am writing a high throughput web service using WCF 4.0 + REST. The web service returns XML responses. The return type of my operation methods are XDocument and WCF takes care of returning the XML. ...
0
votes
2answers
357 views
Jmeter remote/distributed test throughput error
I have created a simple test (just to download a file from famous site like flickr or google.) I run the test locally (either from jmeter directly or talk to the locally running jmeter-server,) the ...
1
vote
1answer
801 views
Iptables filtering performance: TCP and UDP
i am writting to ask about iptables performance in TCP and UDP filtering. I was testing it with large number of iptables rules.
When in FORWARD chain is 10 000 mixed TCP and UDP rules i get TCP ...



