Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
366 views

Stack Exchange API compliant request throttle implementation on Google App Engine Cloud infrastructure

I have been writing a Google Chrome extension for Stack Exchange. It's a simple extension that allows you to keep track of your reputation and get notified of comments on Stack Exchange sites. ...
6
votes
3answers
576 views

Warming up high throughput Java apps

I recently learned about scenarios which require warming up an app (with high throughput requirement) before they start serving real requests. The logic behind this was to allow JIT to do its ...
6
votes
4answers
1k views

How to use the cachegrind output to optimize the application

I need to improve the throughput of the system. The usual cycle of optimization has been done and we have already achieved 1.5X better throughput. I am now beginning to wonder if I can utilize the ...
5
votes
2answers
220 views

How to avoid Boost ASIO reactor becoming constrained to a single core?

TL;DR: Is it possible that I am reactor throughput limited? How would I tell? How expensive and scalable (across threads) is the implementation of the io_service? I have a farily massively parallel ...
4
votes
1answer
98 views

Twisted Throughput Limit Decreases

I am developing a program which allows for simulations of networks on a single machine. For this I am using Twisted for asynchronous I/O, as having a thread for each 'connection' might be a bit much. ...
2
votes
1answer
181 views

Java Netty load testing issues

I wrote the server that accepts connection and bombards messages ( ~100 bytes ) using text protocol and my implementation is able to send about loopback 400K/sec messages with the 3rt party client. I ...
2
votes
0answers
28 views

About SOAP Design Pattern

We provide SOAP interface to the client. The throughput of SOAP should be about 1000 requests per second, and we just have one or two clients. Now we have two options: because the client may send ...
2
votes
4answers
361 views

C++ socket programming: maximize throughput/bandwidth on localhost (I only get 3 Gbit/s instead of 23GBit/s)

I want to create a C++ server/client that maximizes the throughput over TCP socket communication on my localhost. As a preparation, I used iperf to find out what the maximum bandwidth is on my i7 ...
2
votes
4answers
404 views

Throughput calculation using cycle count

Is it possible to determine the throughput of an application on a processor from the cycle counts (Processor instruction cycles) consumed by the application ? If yes, how to calculate it ?
2
votes
4answers
542 views

Optimal CPU utilization thresholds

I have built software that I deploy on Windows 2003 server. The software runs as a service continuously and it's the only application on the Windows box of importance to me. Part of the time, it's ...
1
vote
1answer
72 views

Improving the message throughput of ejabberd-2.1.10

I have installed ejbberd-2.1.10 from the binary installer on my machine(Win7 32bit 2.93GHz Core2Duo 3GB RAM). Since our set-up needs a very high message throughput I have looked through the ...
1
vote
1answer
106 views

How to measure network throughput during runtime

I'm wondering how to best measure network throughput during runtime. I'm writing a client/server application (both in java). The server regularly sends messages (of compressed media data) over a ...
1
vote
1answer
68 views

Throughput Behaviour for android bluetooth

To check the throughput i have modified the bluetooth chat example. I have provided a Send button in the UI which send some predefined no. of bytes to the server socket and waits for Acknowledgement ...
1
vote
1answer
53 views

On throughput of linux scheduler when there are more threads than cores

I have done some measurement over linux scheduler. The linux is "Linux version 2.6.18-194.el5 (mockbuild@x86-005.build.bos.redhat.com)" and machine is with 8 cpus. The measurement is the only workload ...
0
votes
0answers
21 views

System Throughput

I have a very trivial question but am really confused. How can I calculate a system throughput on multiprogrammed system with FCFS method. Say I have only one job running on the CPU and its latency ...
0
votes
1answer
38 views

SIP how to measure call per time unit

I need to send a big number of SIP requests to our server for testing purposes. One solution I've found is SIPp. Now I want to measure the number of SIP requests that can be sent by my client per unit ...
0
votes
2answers
257 views

Large Image Processing with ImageMagick convert - Need More Throughput

I am converting some largish images from a multi-image (pyramidal) tif to png format. The salient parts of the report from "identity -verbose" on the largest image are here: Image: Format: TIFF ...
0
votes
1answer
280 views

Multi-threaded Windows Service - Erlang

I am going to tell the problem that I have to solve and I need some suggestions if i am in the right path. The problem is: I need to create a Windows Service application that receive a request and ...
0
votes
1answer
77 views

How can I test my application's network footprint?

I have no experience in network administration, so apologies if this is a clumsy question. I have a .NET application to deploy locally at my client's site. They have the hardware to do this, but ...
0
votes
1answer
16 views

Documentation and information about linear-throughout Semantic Database Machine

I have to do some reaserach about this topic - LSDM, but only thing I could find is purchasable PDF in this site: Website I would like to know if there is anybody willing to share this document or ...
0
votes
1answer
112 views

How do i know how much udp data i received(including bad data) in c#

I want to know the amount of data arrived at my updclient including damaged/bad data, packet header etc. i want to calculate throughput using udp. Thanks.
0
votes
1answer
253 views

What does server throughput mean

If the throughput is increase how will be changed the response and request time? If I have the data(request/min)?
0
votes
2answers
673 views

AS3: Calculating the current upload speed (or throughput)

I am uploading files using the upload() method of the FileReference class. I want to display the current connection speed and I was wondering what was a good way to do that. My current technique is ...
0
votes
1answer
203 views

Linux, monitor read rates of files

I have a custom application which has a bunch of files open. I can see the file handles open by a process using "lsof" and I can see the files being accessed using "watch -d 'ls -alh'" and watching ...
0
votes
2answers
189 views

Throughput measurements

I wrote simple load testing tool for testing performance of Java modules. One problem I faced is algorithm of throughput measurements. Tests are executed in several thread (client configure how much ...
0
votes
1answer
117 views

Gsm modem submission rate

Has anyone measured the rate of submission through a GSM modem? We are implementing a solution at the moment and are only able to submit at a rate of about one message every 3 to 5 seconds. We are not ...
0
votes
1answer
182 views

Any program that calculates the throughput from the output of tcpdump?

I am currently using tcptrace but am observing some ridiculous throughputs on a test that I'm running. I am pretty sure something is wrong with the way I am testing but before spending any more time ...
0
votes
1answer
157 views

Aggregated throughput of multiple connections (Linux)

Why do multiple connections from the same host achieve better throughput than multiple connections from different hosts? I suspect is something kernel-related (Linux) but a confirmation would help a ...
0
votes
3answers
428 views

Socket throttling because client not reading data fast enough?

I have a client/server connection over a TCP socket, with the server writing to the client as fast as it can. Looking over my network activity, the production client receives data at around 2.5 Mb/s. ...