Tagged Questions
The contention tag has no wiki summary.
4
votes
3answers
152 views
Splitting up a program into 4 threads is slower than a single thread
I've been writing a raytracer the past week, and have come to a point where it's doing enough that multi-threading would make sense. I have tried using OpenMP to parallelize it, but running it with ...
3
votes
5answers
348 views
What type of diagram is best suited for visualizing threading issues such as contentions?
While debugging an issue with our system, I have discovered a thread contention that is causing a bottleneck. I need to explain the phenomenon to other people involved in handling this issue. Some ...
2
votes
3answers
36 views
Will refactored methods in a Java-Struts web application cause contention?
I'm working with a company that produces a web application using struts with Java. I have been refactoring a lot of the code recently to tidy up the system. One technique I've been using is to move ...
2
votes
4answers
130 views
How can I avoid string.intern() contention and keep the memory footprint low?
I am parsing a rather large (200 MB) XML file that results in a tree of objects each defining a bunch of parameters (key=value). This data structure is running in a Tomcat webapp and used to lookup ...
2
votes
3answers
107 views
Easy way to avoid clog collision from different threads?
I have a multi-threaded program where two separate threads are sending debug output to std::clog and the outputs are interspersed. I would like to find an easy way to force the output to at least be ...
2
votes
1answer
141 views
How to find out contention problems in java when most of the classes are concurrent
We used yourkit profiler to find out and resolve many contention issues in our application. We used thread monitoring to see which threads are blocked and resolved many of those issues. But yourkit ...
2
votes
4answers
337 views
In Java what happens if two classes call a method in a third class at the same moment?
In my project I have a game class which is called by a client class. At the moment the game class writes a path to a file and the client class will read from this file and clear the contents. I am ...
2
votes
2answers
106 views
What is causing Thread Contentions with my Azure Queue code?
I just ran the Visual Studio 2010 Thread Profiler against my Azure code and noticed I'm getting a LOT of contentions. My code is blocked more often than it is running!
My worker has no custom ...
2
votes
6answers
553 views
Where to look for synchronized contention evidence in java?
Our Tomcat web application feels slow when it is used by a couple hundred users. The servers are in a hosting company and their reports doesn't show any problem with bandwith or cpu workload, so I ...
1
vote
3answers
88 views
Multithreaded resource contention
I'm profiling a multithreaded program running with different numbers of allowed threads. Here are the performance results of three runs of the same input work.
1 thread:
Total thread time: 60 ...
1
vote
1answer
374 views
Sustainable Query Per Seconds [QPS] without incurring in timeout errors
Do you know which is the safest Queries Per Second rate in update on a single entity without incurring in write contention?
Reading this document about sharding it clearly says:
it is important to ...
1
vote
1answer
130 views
Why there are contentions in places with no lockings?
I run a concurrency profile of a software in Visual Studio 2010 and found some contentions on lines of code that are not within locks. Say, a new operation to create an array, or a thread-local ...
1
vote
1answer
163 views
Dynamic allocation in CUDA - lower contention than handwritten solution?
Now CUDA allows dynamic allocation on the global memory. However, I couldn't find any reference to the scalability of that malloc function: is it any better than, for instance, preallocate a chunk of ...
1
vote
1answer
73 views
Why concurrency contention tool in vs 2010 doesn't use managed thread ids?
If you have used the concurrency contention profile tool provided in vs 2010, you will notice that all the thread ids used in the report are not managed thread ids, which is annoying. I want to know ...
1
vote
0answers
124 views
futex-based 4-byte single-writer/multiple-readers lock
Looking for a minimal, futex-based implementation of a single-writer/multiple-readers lock requiring no space overhead beyond a single 4-byte futex state variable.
Some background: I have an ...
1
vote
4answers
332 views
thread contention on dynamic memory allocation
Hi All
I have just learnt that in C language malloc function comes with the issue of thread contention when used in a multi-threaded applications.
In C++ does operator new suffer from the same ...
1
vote
3answers
874 views
Per-thread memory management in C#
Continuing the discussion from http://stackoverflow.com/questions/2902984/understanding-vs2010-c-parallel-profiling-results but more to the point:
I have many threads that work in parallel (using ...
1
vote
2answers
93 views
reliably reproducing db contention
we experience with some regularity contention on a database table, and would like to evaluate a number of different options for resolving this issue.
in order to do so, i need to reproduce in a test ...
1
vote
1answer
293 views
How do I gather info about contention rate?
I'm expecting that the load on the software I'm developing will increase over the next couple of months. Therefore I did some stress tests, and gathered some performance data with perfmon.
For one of ...
1
vote
2answers
3k views
Unindexed Foreign Key leads to TM Enqueue Contention
So we've been told that one source of TM Enq contention can be unindexed FK's. My question is which one.
I have an INSERT INTO Table_B that is recording TM Enq Wait.
It contains a PK that is the ...
0
votes
3answers
77 views
Weird things with machine.config
I am trying to tune IIS to reduce contention, and following many articles on the .net I am trying to locate this in the file to no result:
<system.web>
...
<httpRuntime ...
0
votes
1answer
116 views
What happens in NFS if 2 or more servers try to write the same file simultaneously?
I'm working on a PHP webapp that does automatic resizing of images and I'm thinking of storing the cached copies on the NFS mounted NAS so it's easy for me to flush the cache when images are updated.
...
0
votes
1answer
91 views
sqlite - how can I handle potential contention between two separate threads accessing the same database?
QUESTION: How can I handle potential contention between two separate threads accessing the same Sqlite database?
BACKGROUND: I have a C# Winforms application that uses Sqlite via ADO.net. I do have ...
0
votes
3answers
619 views
MSXML XSL Transformation mutithreaded performance contention
I have a multithreaded server C++ program that uses MSXML6 and continuously parses XML messages, then applies a prepared XSLT transform to produce text. I am running this on a server with 4 CPUs. Each ...