Tagged Questions
The Parallel Extensions for .NET consist of the Task Parallel Library (TPL) and Parallel LINQ (PLINQ). These two libraries enable task and data parallelism programming with .NET.
28
votes
2answers
3k views
Reactive Framework vs PLINQ vs Task Parallel Library vs Parallel Extensions [closed]
In a few words, can anyone set the record straight what is what? Does this all end up in .NET 4.0 ?
21
votes
2answers
3k views
Parallel.ForEach vs Task.Factory.StartNew
What is the difference between the below code snippets? Won't both be using threadpool threads?
For instance if I want to call a function for each item in a collection,
...
15
votes
5answers
3k views
Parallel Sort Algorithm
I'm looking for a simple implementation of a parallelized (multi-threaded) sort algorithm in C# that can operate on List<T> or Arrays, and possibly using Parallel Extensions but that part isn't ...
11
votes
6answers
385 views
Unit testing concurrent software - what do you do?
As software gets more and more concurrent, how do you handle testing the core behaviour of the type with your unit tests (not the parallel behaviour, just the core behaviour)?
In the good old days, ...
10
votes
4answers
2k views
Parallel.Foreach spawning way too many threads
The problem
Although the code about which I will talk here I wrote in F#, it is based on the .NET 4 framework, not specifically depending on any particularity of F# (at least it seems so!).
I have ...
9
votes
1answer
238 views
How to PLINQ an existing LINQ query with Joins?
I'm using LINQ to compare two DataSets with each other to create new rows and update existing. I've noticed that the complete comparison lasts ~1,5 hours and only one of the two cores is ...
9
votes
2answers
264 views
When to dispose CancellationTokenSource?
The class CancellationTokenSource is disposable and quick look in reflector proves usage of very probably unmanaged resource KernelEvent. It has no finalizer, so if we do not dispose GC wont do that.
...
9
votes
1answer
492 views
How can I prevent AppDomainUnloadedException after NUnit tests PLINQ code?
How can I diagnose and minimize or prevent AppDomainUnloadedException?
NUnit 2.5.2 consistently throws AppDomainUnloadedException after long (>10s) tests involving PLINQ.
Back in July 2008, Stephen ...
8
votes
2answers
133 views
Using Parallel Linq Extensions to union two sequences, how can one yield the fastest results first?
Let's say I have two sequences returning integers 1 to 5.
The first returns 1, 2 and 3 very fast, but 4 and 5 take 200ms each.
public static IEnumerable<int> FastFirst()
{
for (int i = 1; ...
7
votes
3answers
1k views
Can I remove items from a ConcurrentDictionary from within an enumeration loop of that dictionary?
So for example:
ConcurrentDictionary<string,Payload> itemCache = GetItems();
foreach(KeyValuePair<string,Payload> kvPair in itemCache)
{
if(TestItemExpiry(kvPair.Value))
{ // ...
6
votes
2answers
783 views
Why is the TaskFactory.StartNew method not generic?
The idomatic way to start a new side-effect-only task (that is: a task that returns no result) using the TPL in .NET 4.0 is using the following API:
Task Task.Factory.StartNew(Action<object>, ...
5
votes
4answers
929 views
List<T> thread safety
I am using the below code
var processed = new List<Guid>();
Parallel.ForEach(items, item =>
{
processed.Add(SomeProcessingFunc(item));
});
Is the above code thread safe? Is there a ...
4
votes
3answers
253 views
Task.WaitAll on a list in F#
I am doing parallel programming using F#. With fixed number of elements, for example with 2 elements a1, a2 and a function f, I can do as follows:
let t1 = Task.Factory.StartNew(fun () -> f a1)
...
4
votes
4answers
710 views
Using .Net Parallel Extensions (Parallel.Invoke) for multiple asynchronous calls?
Currently I have a section of code that needs to make about 7 web service calls to various providers for data. Each call takes a several seconds to execute, so I would like to run them in parallel to ...
4
votes
2answers
189 views
Parallel.For interruption
Suppose you have an array of 1000 random integer numbers and you need to loop over it to find the number 68 for example.
Using the new Parallel.For on a quad core CPU would improve speed ...
4
votes
1answer
205 views
any special reference needed for c# 4.0 Parallel.For?
I am following this article:
http://blogs.msdn.com/b/csharpfaq/archive/2010/06/01/parallel-programming-in-net-framework-4-getting-started.aspx
and in my console app Parallel namespace is visible, but ...
4
votes
1answer
372 views
Choosing minimum among minima using Parallel.ForEach
I am new to C#, Parallel.ForEach, and .NET in general. I want to parallelize a search that involves thousands of locations. For each location, I compute great circle distance. That is a calculation ...
4
votes
2answers
843 views
What is the purpose of BlockingCollection(Of T)
I´m trying to understand the purpose of BlockingCollection in the context of the new Parallel Stacks on .NET 4.
The msdn documentation says:
Blockquote
BlockingCollection is used as a wrapper ...
4
votes
2answers
356 views
How to make PLINQ to spawn more concurrent threads in .NET 4.0 beta 2?
In former versions of Parallel Extensions you could set the number of threads:
enumerable.AsParallel(numberOfThreads)
But now that overload is not available anymore. How to do it now?
4
votes
3answers
260 views
Can I develop production code with Microsoft Parallel Extensions to .NET Framework 3.5, June 2008 Community Technology Preview?
Is there any recommendation against using this CTP? Is it unstable?
3
votes
1answer
103 views
How do I avoid out of memory exceptions when using PLINQ?
Hi and thanks for looking!
Background
I have a computing task that requires either a lot of time, or parallel computing.
Specifically, I need to loop through a list of about 50 images, Base64 ...
3
votes
3answers
128 views
What's the best way of achieving a parallel infinite Loop?
I've gotten used to using Parallel.For() in .Net's parallel extensions as it's a simple way of parallelizing code without having to manually start and maintain threads (which can be fiddly). I'm now ...
3
votes
2answers
75 views
TransactionScope not working with Parallel Extensions?
If i do the following:
Using scope = New TransactionScope()
entries.Content.ReadAs(Of IList(Of WebMaint)).AsParallel.ForAll(Sub(entry)
...
3
votes
3answers
176 views
How to parallelize sequential tasks using c# and parallel extensions?
I have the following method that are called sequentially:
private StringBuilder ReadPDF();
private StringBuilder CleanText(StringBuilder sb);
private void ParseText();
ParseText calls ReadPDF that ...
3
votes
2answers
92 views
C# Parallel Task usage in OCR Application?
I'm building a Windows Service application that takes as input a directory containing scanned images. My application will iterates through all images and for every image, it will perform some OCR ...
3
votes
5answers
310 views
Parallel Extensions
I have an application with heavy IO operations such as file copying, zipping and moving the files around the file system, copying to backup servers.
I build this program as single threaded. It runs ...
3
votes
2answers
188 views
Getting results from Parallel.For
I am looking at using Parallel.For to call into a web service that takes a while to return, however, we know we can call it many times simultaneously and it doesn't take that much longer than a single ...
3
votes
1answer
386 views
Task Parallel Library - How do you get a Continuation with TaskContinuationOptions.OnlyOnCanceled to Fire?
I'm experimenting with the Task support in .NET 4.0 - specifically with the continuation support. What I'm perplexed about is that I can't figure out how to get a continuation with the ...
3
votes
1answer
641 views
Azure Table Storage Performance from Massively Parallel Threaded Reading
Short version: Can we read from dozens or hundreds of table partitions in a multi-threaded manner to increase performance by orders of magnitude?
Long version:
We're working on a system that is ...
3
votes
2answers
504 views
How to call Parallel.ForEach with a multidimensional array
I'm having a little trouble figuring out how to call the Parallel.ForEach with a 2D array of strings:
string[,] board = new string[,]{
{"A", "B", "C", "D", "E" },
{"F", "G", "H", "I", ...
3
votes
2answers
556 views
Why is ParallelQuery<T>.Where not working when converting to Observable?
I have an observable collection that I want to process in parallel, then observe the processed values while filtering and finally subscribe a handler that receives the filtered values.
My sample is ...
3
votes
1answer
617 views
Parallel Extensions: Help Me Understand LazyInit<T>
Update for future readers: When .NET 4 comes out, LazyInit<T> from the CTP will have been renamed to Lazy<T> and will be changed from a struct to a class, so very little of this will ...
2
votes
1answer
48 views
Execute single workflow instance in parallel
Let's say I have a workflow, and I want to execute it many times in parallel:
System.Threading.Tasks.Parallel.For(
0,
100,
i => WorkflowInvoker.Invoke(
new Workflow1(),
...
2
votes
2answers
105 views
Throw Exception inside a Task - “await” vs Wait()
static async void Main(string[] args)
{
Task t = new Task(() => { throw new Exception(); });
try
{
t.Start();
t.Wait(); ...
2
votes
3answers
182 views
Thread-safe buffer of data to make batch inserts of controlled size
I have a simulation that generates data which must be saved to database.
ParallelLoopResult res = Parallel.For(0, 1000000, options, (r, state) =>
{
ComplexDataSet cds = GenerateData(r);
...
2
votes
2answers
138 views
Is this PLINQ bug? [C#]
Why PLINQ output is different than sequential processing and Parallel.For loop
I want to add sum of square root of 10,000,000 numbers.. Here is the code for 3 cases:
sequential for loop:
double ...
2
votes
2answers
424 views
How to send the progress when using Parallel.ForEach
I am planning to use Parallel.ForEach on a DataTable so that each record can be written to a file.
How can we notify user the percentage/number of records that are processed.
Normally when we use ...
2
votes
2answers
105 views
Progress update in Parallel.For() loops
As you can guess the index of the Parallel.For() loop jumps from one value to the other. How can I estimate the amount of the work done?
Thanks.
2
votes
1answer
89 views
Slow Parallel.For interruption
I have the following code inside a bigger loop, after profiling my code I discovered that all the Parallel.For gain in execution speed is lost in the long time the Stop() method takes to complete. Is ...
2
votes
1answer
390 views
(Fluent) Nhibernate lazy loading and affects on Parallel.ForEach
I have several entities configured via FNH to eager load child entities using the FetchMode.Eager syntax when I request instances (from the database). Now I was under the impression this would ignore ...
2
votes
1answer
588 views
How to Force an Exception from a Task to be Observed in a Continuation Task?
I have a task to perform an HttpWebRequest using
Task<WebResponse>.Factory.FromAsync(req.BeginGetRespone, req.EndGetResponse)
which can obviously fail with a WebException. To the caller I ...
2
votes
3answers
302 views
Filtering IEnumerable Pattern
Consider the followign simple code pattern:
foreach(Item item in itemList)
{
if(item.Foo)
{
DoStuff(item);
}
}
If I want to parallelize it using Parallel Extensions(PE) I might ...
2
votes
3answers
663 views
Can I configure the number of threads used by Parallel Extensions?
I'm currently using the Paralle Extensions that are part of Reactive Extensions for .Net(Rx). I believe they are also available through .Net 4 beta releases.
1) Is there any way to determine how many ...
2
votes
2answers
994 views
Parallel.ForEach Not Spinning Up New Threads
Parallel.ForEach Not Spinning Up New Threads
Hello all, we have a very IO-intensive operation that we wrote using Parallel.ForEach from Microsoft's Parallel Extensions for the .NET Framework. We ...
2
votes
4answers
450 views
Parallel Extensions Equivalent in Java
I have some experience using parallel extensions in .Net development, but I was looking at doing some work in Java that would benefit from an easy to use parallelism library. Does the JVM offer any ...
1
vote
1answer
45 views
Correct way to guarantee thread safety when adding to a list using Parallel library
I loop over an array of connection strings and on each loop I extract some information and add to the list. Now, I want to use Parallel library to make it multithreaded, but I'm not sure if the ...
1
vote
2answers
129 views
VB.NET 4.0 Parallel.ForEach AddressOf Multiple Values?
I am trying change from Delegates to Parallel.ForEach
I see the below works fine.
Imports System.Threading.Tasks
Sub Main()
Dim secs() As Integer = {2, 3, 1}
Parallel.ForEach(secs, ...
1
vote
1answer
197 views
Silverligh 5 SDK RC + Async CTP : make it work
Just installed the Silverligh 5 SDK RC. There is a problem using it inside a project that uses the Async CTP.
Both AsyncCtpLibrary_Silverlight.dll and mscorlib.dll contains the Task type (And some ...
1
vote
1answer
152 views
Parallel.For step size
does anyone know if there's any overload that would allow me to specify a step size in a Parallel.For loop? Samples in either c# or VB.Net would be great.
Thanks, Gonzalo
1
vote
2answers
137 views
Unexpected segfault with __gnu_parallel::accumulate
This is really confusing me, I would appreciate if anyone could help me out.
(EDIT: thought it was a templated problem, I was mistaken with this)
I want to add multiple copies of the following class ...