The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
7 views

How to solve a bottleneck on sqlite3?

i'm working on a project written in C that generates almost 350k sequences to be persisted on a sqlite database. For each sequence i have to insert (or ignore) a string in a table and update a row in ...
0
votes
2answers
39 views

How to avoid bottleneck performance?

A distributed system is described as scalable if it remains effective when there is a significant increase the number of resources and the number of users. However, these systems sometimes face ...
2
votes
0answers
20 views

Mysql NDB cluster slow for no reason

I have a mysql ndb cluster (details below). The problem is when I do the simplest thing such as restore a database that was dumped using mysqldump, it take an absolute age! IE 6 hours to restore a db ...
-1
votes
0answers
17 views

Determining contributors to elapsed time during a network request [closed]

The situation: There is a remote server. I am running a client program that makes calls to the server and requests data. These requests perform very slowly. The server limits the number of results ...
0
votes
4answers
110 views

Performance bottleneck with CSV parser

My current parser is given below - Reading in ~10MB CSV to an STL vector takes ~30secs, which is too slow for my liking given I've got over 100MB which needs to be read in every time the program is ...
0
votes
1answer
54 views

Mongod at 100% CPU - Not sure how to diagnose?

I have a python (python & mongo newbie) application that runs via cron every hour to fetch data, clean it and insert into mongo. During execution, the application will query mongo to check for ...
0
votes
0answers
50 views

How to improve HamsterDB performance on disk?

i'm using HamsterDB to store the results of a project's module. This module will produce a lot of data (usually more than 10^7 elements) at ~1000 elements/s. These elements are composed by a string of ...
0
votes
0answers
37 views

How to iterate each number of requests in EventMachine-HTTP ?

I have the following script which consume msgs from queue and send it to specific link, now I don't want the to open all http at once and rather to process like 100 each time, what is the best way to ...
0
votes
2answers
61 views

WCF Webservice slow, find bottleneck

I'm briefly familiar with SvctraceViewer, but I'm not sure that is the right tool for this. Problem is, I'm trying to work with a rather large wcf app, not designed nor developed by me. Also, it is ...
0
votes
2answers
89 views

Locating the bottleneck of a Java/mySQL application [closed]

I have an (almost) dedicated system which I'm using for some database stuff. My problem is: A Java application is running pretty slow (taking 2-3 days to complete a task), and I don't know why. The ...
2
votes
2answers
151 views

Code or psuedo-code for linear bottleneck assignment (LBAP)?

I'm building a robot simulator where I have n robots that need to go to n separate locations. I'd like to minimize the total time spent travelling. This entails minimizing the maximum length ...
0
votes
0answers
20 views

How to find bottlenecks / hot spots in a web app (Javascript Based, PHP Based, etc…)

Is there any tool or tips to use when working on web apps so one can find the bottlenecks or hot spots and work on them?
0
votes
1answer
54 views

asp.net mvc application down

I have a Live website called API Web, build with Asp.Net MVC 4. this application is to provide a javascript files for other websites. I have 20 websites requesting a javascript to it. but, sometimes ...
1
vote
0answers
124 views

postfix mail queue - get bottleneck - Debian squeeze [closed]

I have a problem with Postfix 2.7.1, Debian Squeeze: send and receive mail with no problem working locally, send e-mail outside work without a problem, the problem is when someone sends a large ...
0
votes
1answer
74 views

Apache/ZF/MySQL/jQuery: how to test where the bottleneck is

I am not sure how to approach this. In my application (Zend Framework, MySQL, jQuery) one of the pages is taking over 10 seconds to load. It's loading under 400 records from the database, so I don't ...
10
votes
6answers
299 views

stress testing web applications on less capable hardware

My organization is having an interesting internal debate right now that raises a question that I would like to open to the community at large. The issue at hand is our environment in which we do ...
0
votes
1answer
74 views

Running bottleneck tests for servers

I'm attempting to detect a bottleneck in our servers, and I'm having a hard time deciding where to start. The symptoms from the machine before it crashes are dropped connections (time outs, this is ...
1
vote
1answer
76 views

How to diagnostic SQL bottlenecks in Java EE

We're having some SQL bottlenecks, I guess it's due to transaction isolation. We're gonna try debugging step-by-step our offending code and checking the database profiler to detect which resources ...
2
votes
1answer
105 views

Pass hdf5 file to h5py as binary blob / string?

How can I bypass disk I/O in h5py? Currently I have to do something like this: msg = socket.recv() fp = open("tmp.hdf5", 'wb') fp.write(msg) fp.close() f = h5py.File('tmp.hdf5', 'r') ... # alter the ...
1
vote
3answers
113 views

bottleneck issue mysql

I have this project auction portal, the problem is sometimes user can't bid or much better word is the request bid sometimes takes 2-3 seconds before it can be registered, the conflict is the auction ...
3
votes
1answer
268 views

UDP Broadcasting/Responding - avoiding a DDoS-like scenario?

I want to implement a self-propagating system for distributing a small piece of data (IP address) across multiple client computers using a UDP broadcast & UDP response. To do this I'm using C# ...
4
votes
1answer
207 views

MVC-Mini Profiler vs DotTrace inconsistancies

I've been trying to find a bottle next, that I believe is within our controllers (I suspect out Unity IoC). From using the MVC-Mini-Profiler, I've found a method that takes 500ms to do the simplest ...
1
vote
1answer
72 views

Tracing worst-case execution times [closed]

I have a piece of code (.NET4 C#) that should run in tight loop - other threads asynchronously serve information to the thread with this loop and process it's commands. The code is in average fast ...
4
votes
2answers
462 views

Why is Java deserialization CPU-bound?

I have a Java program which prepares data into a fairly complex and big data structure in memory (several GB) and serializes it to disk, and another program which reads back the serialized data ...
2
votes
1answer
118 views

What can bottle neck cURL's mult functions in PHP?

Using cURL_multi is great for simultaneous connections, but what can limit the number of connections? I ask because when doing over 500 some of them seem to randomly fail to connect. I am doing HEAD ...
1
vote
0answers
367 views

Windows TCP: Diagnosing TCP network bottlenecks

I'm implementing a client server solution where the server constantly sends a stream of messages over TCP to the client. When I do some testing and connect the client and server directly in memory ...
0
votes
3answers
180 views

Speeding up a Cellular Automata

Is it possible, with some sort of algorithm or something like that, to speed up a cellular automata? I'm using a Conway's Game of Life implementation made in XNA and it works perfectly, but the ...
0
votes
1answer
31 views

Would it be advisable to have the routes.rb look through directories when creating routes?

I have a controller called 'reports'. In it, I want to display pre-made reports through partials. As it stands, I don't want to make a fully-fledged sql query/report generator so I figure the ...
0
votes
3answers
318 views

Are there ways to overcome graphic APIs CPU bound bottlenecks on PC?

Recently, I have been spending a lot of my time researching the topic of GPUs, and have came across several articles talking about how PC games are having a hard time staying ahead of the curve ...
9
votes
7answers
1k views

C++ super fast thread-safe rand function

void NetClass::Modulate(vector <synapse> & synapses ) { int size = synapses.size(); int split = 200 * 0.5; for(int w=0; w < size; w++) if(synapses[w].active) ...
5
votes
3answers
296 views

Parallel computing memory access bottleneck

The following algorithm is run iteratively in my program. running it, without the two lines indicated below, takes 1.5X as long as without. That is very surprising to me as it is. Worse, however, is ...
6
votes
5answers
283 views

optimizing `std::vector operator []` (vector access) when it becomes a bottleneck

gprof says that my high computing app spends 53% of its time inside std::vector <...> operator [] (unsigned long), 32% of which goes to one heavily used vector. Worse, I suspect that my parallel ...
1
vote
1answer
281 views

Best way to stress test and finding bottlenecks in drupal site?

I have a Drupal site with a lot of calculations and database requests on each page load (running on an Amazon EC2 server). I am curious how my site would hold up if it became popular or in some other ...
1
vote
2answers
534 views

OpenCV's cascade classifier not utilizing full power of the CPU

I'm using OpenCV's cascade classifier for detection, however my CPU utilization never goes above 50% yet the application runs only at ~8 FPS so there should be a lot more room for improvement. I've ...
0
votes
2answers
867 views

Where is the bottleneck in mjpeg broadcasting?

I'm streaming mjpeg with PHP just like this <?php //example /cli/watch.php?i=0&j=200 function get_one_jpeg($i) { $path = "img"; //$f = fopen("$path/$i.jpg", "rb"); return ...
14
votes
11answers
453 views

Minimising reading from and writing to disk in Python for a memory-heavy operation

Background I am working on a fairly computationally intensive project for a computational linguistics project, but the problem I have is quite general and hence I expect that a solution would be ...
0
votes
2answers
67 views

is writing your own parser worth the extra runtime it causes?

I am doing work involving a lot of DOM manipulation. I wrote a function to more efficiently change common styles on objects using "hotkeys." It simply interprets this: styles = ...
0
votes
2answers
449 views

Benchmark application for Qt?

I would like to do some profiling and benchmarking of Qt. The purpose of the profiling and benchmarking is to get the better understanding of Qt, and see what functions take most of the time, where ...
4
votes
5answers
380 views

Is Logging using FileHandler a bottleneck?

I am considering logging business events in a J2EE web application by using Java logging and FileHandler. I am wondering whether that could cause a performance bottleneck, since many log records will ...
2
votes
2answers
84 views

How do I find why a python scripts runs in significantly different running times on different machines?

The Facts: I am working on a NoteBook with Intel Core 2 Duo 2,26 GHz and 4 Gigabyte of Ram. It has a Apache Server and a MySQL Server running. My Server (I did lshw | less) shows a 64 Bit CPU with ...
3
votes
1answer
538 views

Multiple disk read/write operations can cause bottleneck?

I've been doing a lot of work where I concurrently access one file from 30+ processes (via 4 nodes mounted on NFS) and was wondering if, besides the bandwith bottleneck, there is an advantage to ...
0
votes
2answers
105 views

Bottlenecks slowing some part of my script

I have a script that perform the following steps A user logs in, adds an SMS message and specifies recipients. That information is added to "queued message table"; Some process sends the messages ...
1
vote
1answer
270 views

Win32 event loop appearing to be the program bottleneck

I am making a game in Python with Pyglet. I have just finished the display part, and getting issues with speed. Like a good person, I profiled, and got the following: (uninteresting bits excluded; ...
0
votes
2answers
73 views

Numeric GUI bottleneck

I've made a GUI to set up and start a numerical integrator using PyQT4, Wing, QT, and Python 2.6.6, on my Mac. The thing is, when I run the integrator form the GUI, it takes very many times longer ...
0
votes
0answers
56 views

Structuring service calls to avoid bottlenecks

I am working on a project and we are debating the way to get the best performance. We are working with an multitier architecture. Basically we have a server that can access services that are given to ...
0
votes
2answers
2k views

What does “bottleneck” mean in terms of bandwidth?

What is a "bottleneck", particularly when used in terms of network bandwidth?
0
votes
2answers
370 views

How can I cache private data in a webfarm for ASP MVC

I am making a member based web app in ASP MVC3 and I am trying to plan ahead, at first our user base will not be huge, but as with any software the potential for a sudden volume spike is always a ...
2
votes
2answers
321 views

Clarify: Processor operates at 800 Mhz and 200Mhz DDR RAM

I have an evaluation kit which has an implementation of ARM Cortex-A8 core. The processsor data sheet states that it has a ARM Cortex A8™ core, which operates at speeds as high as 800MHz and Up to ...
0
votes
2answers
275 views

Bottleneck from comparing strings

This is a follow up question to Char* vs String Speed in C++. I have declared the following variables: std::vector<std::string> siteNames_; std::vector<unsigned int> ids_; ...
3
votes
2answers
1k views

How to mitigate host + device memory tranfer bottlenecks in OpenCL/CUDA

If my algorithm is bottlenecked by host to device and device to host memory transfers, is the only solution a different or revised algorithm?

1 2