Tagged Questions
The plinq tag has no wiki summary.
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 ?
16
votes
4answers
331 views
Are you using Parallel Extensions?
I hope this is not a misuse of stackoverflow; recently I've seen some great questions here on Parallel Extensions, and it got my interest piqued.
My question:
Are you using Parallel Extensions, and ...
13
votes
1answer
2k views
Does Parallel.ForEach require AsParallel()
ParallelEnumerable has a static member AsParallel. If I have an IEnumerable<T> and want to use Parallel.ForEach does that imply that I should always be using AsParallel?
e.g.
Are both of these ...
10
votes
1answer
162 views
List Contains() with PLinq?
let's say I have a big List
List<long> longList = new List<long>(10000000)
And I want to do the following query:
bool found = longList.Contains(4345235234524245124L);
Is there a way ...
9
votes
2answers
269 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
269 views
Is it OK to try to use Plinq in all Linq queries?
I read that PLinq will automatically use non parallel Linq if it finds PLinq to be more expensive. So I figured then why not use PLinq for everything (when possible) and let the runtime decide which ...
9
votes
1answer
493 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
134 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
279 views
Ordered PLINQ ForAll
The msdn documentation about order preservantion in PLINQ states the following about ForAll().
Result when the source sequence is ordered: Executes nondeterministically in parallel
Result when the ...
7
votes
3answers
502 views
What's the next big thing after LINQ? [closed]
I started using LINQ (Language Integrated Query) when it was still in beta, more specifically Microsoft .NET LINQ Preview (May 2006). Almost 4 years have passed and here we are using LINQ in a lot of ...
7
votes
5answers
356 views
Non-linear scaling of .NET operations on multi-core machine
I've encountered a strange behavior in a .NET application that performs some highly parallel processing on a set of in-memory data.
When run on a multi-core processor (IntelCore2 Quad Q6600 2.4GHz) ...
6
votes
5answers
141 views
How to properly parallelise job heavily relying on I/O
I'm building a console application that have to process a bunch of data.
Basically, the application grabs references from a DB. For each reference, parse the content of the file and make some ...
6
votes
2answers
120 views
Does the thread identity get transferred when using PLINQ Extensions?
I am using .AsParallel().ForAll() to enumerate a collection in parallel in the context of an ASP.NET request. The enumeration method relies on System.Threading.Thread.CurrentPrincipal.
Can I rely on ...
6
votes
3answers
236 views
Plinq statement gets deadlocked inside static constructor
I came across this situation where the following plinq statement inside static constructor gets deadlocked:
static void Main(string[] args)
{
new Blah();
}
class Blah
{
static Blah()
{
...
6
votes
2answers
197 views
returning null with PLINQ
i have an extension method for IEnumerable which then iterates through the collection, doing its business, and then returns an new IEnumerable.
I have tried to use PLINQ using .AsParallel().ForAll() ...
5
votes
2answers
110 views
Is there something like Edulinq for PLINQ?
I like Jon Skeet's careful dissection and analysis of LINQ to objects called Edulinq. I often use it as reference. He shed a light on things, no book did.
Meanwhile my usage of PLINQ grows (I think ...
5
votes
2answers
255 views
is it ok to use plinq ForAll for a bulk insert into database?
I'm doing like this:
entities.AsParallel().ForAll(o => repository.Insert(o));
is this good, am I going to have more performance with this ?
5
votes
5answers
2k views
What's exactly PLinq?
What is PLinq? And what is the difference between this and the normal Linq? I saw this word many times, so I googled it and found that it is a new .NET Framework 4 feature, but I didn't really ...
4
votes
2answers
81 views
Pitfalls of trying to use PLINQ over long-running generators?
I have a few infinite generator methods, including some long-running and infinitely-long-running generators.
IEnumerable<T> ExampleOne() {
while(true) // this one blocks for a few seconds ...
4
votes
1answer
92 views
Task vs AsParallel()
On page 33 of Stephen Toub's book
http://www.microsoft.com/download/en/details.aspx?id=19222
There is the code
var pings = from addr in addrs.AsParallel().WithDegreeOfParallelism(16)
select new ...
4
votes
2answers
76 views
LINQ: How to modify the return type of AsParallel depending on a context?
LINQ's AsParallel returns ParallelQuery. I wonder if it's possible to change this behavior so that I could compare the LINQ statement run with and without parallelism without actually changing the ...
4
votes
3answers
227 views
PLINQ: how to run a ParallelQuery on more than 4 threads?
Update - changed the title of the question to reflect what I'm really after
Consider the following piece of code:
// this query generates 12 instances of Func<int>, which each when executed
// ...
4
votes
1answer
179 views
Why PLinq doesn't support more than 63 parallel threads?
I think the question is clear. PLinq doesn't allow you to create more than 63 threads (WithDegreeOfParallelism doesn't allow it, throws ArgumentOutOfRangeException). In rare situations, we need to ...
4
votes
3answers
226 views
Parallel Foreach Memory Issue
I have a file collection (3000 files) in a FileInfoCollection. I want to process all the files by applying some logic which is independent (can be executed in parallel).
FileInfo[] ...
4
votes
2answers
244 views
PLINQ AsParallel() with lower priority?
is it possible to run some of my PLINQ AsParallel() - Queries with a lower priority than others?
(Or some with a higher priority than others)
Is this possible with PLinq or will I have to avoid PLINQ ...
4
votes
2answers
712 views
Is PLinq Inherently Faster than System.Threading.Tasks.Parallel.ForEach
Summary: I changed from System.Threading.Tasks.Parallel.ForEach and Concurrent Data structure to a simple plinq (Parallel Linq) query. The speed up was amazing.
So is plinq inherently faster than ...
4
votes
8answers
572 views
PLINQ Performs Worse Than Usual LINQ
Amazingly, using PLINQ did not yield benefits on a small test case I created; in fact, it was even worse than usual LINQ.
Here's the test code:
int repeatedCount = 10000000;
private void ...
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?
3
votes
1answer
106 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
2answers
188 views
Task.Wait in ContinueWhenAll Action
I was working on encorperating threads into my azure code for putting things on a queue. to do this i used http://www.microsoft.com/download/en/details.aspx?id=19222 as a reference.
my code to ...
3
votes
1answer
310 views
C#: AsParallel - does order matter?
I'm building a simple LinQ-to-object query which I'd like to parallelize, however I'm wondering if the order of statements matter ?
e.g.
IList<RepeaterItem> items;
var result = items
...
3
votes
1answer
180 views
Max tasks in TPL?
I want to use TPL in Worker process on Windows Azure. I'm looking to add an IJob the queue, this has a Run method, so the worker will consist of:
loop
get item off queue
Use TPL to call ...
3
votes
2answers
724 views
When should I use AsParallel() in linq/plinq
I'm looking make use of the advantages of parallel programming in linq by using plinq, im not sure I understand the use entirely apart from the fact its going to make use of all cpu cores more ...
3
votes
2answers
416 views
set multiple properties simultaneously via reflection
I'm trying to optimize the reflection utilization in my code and I was wondering
whether it's possible to set multiple properties of the object at once:
Sample usage:
private void ...
3
votes
3answers
868 views
Silverlight 4 PLINQ
I have a very simple question. Is it possible to use PLINQ with Silverlight 4 since it seems that it doesn't exist in the most commonly referenced assemblies?
3
votes
1answer
159 views
PLINQ delayed execution
I'm trying to understand how parallelism might work using PLINQ, given delayed execution. Here is a simple example.
string[] words = { "believe", "receipt", "relief", "field" };
bool result = ...
3
votes
3answers
850 views
F# and PLINQ extension methods
While digging deeper into the latest release of F# I tried to have it interacting with PLINQ.
I've noticed, however, that the two don't play very nice together code-wise.
In fact it didn't seem ...
3
votes
2answers
391 views
Plinq gives different results from Linq - what am I doing wrong?
Can anyone tell me what the correct Plinq code is for this? I'm adding up the square root of the absolute value of the sine of each element fo a double array, but the Plinq is giving me the wrong ...
3
votes
2answers
2k views
Where can I get PLinq for VS 2008?
Since it's integration to the framework, the package seems to have been removed from the web. can someone point me to a download site where i can download it and use it with my .net 3.5 application?
2
votes
2answers
60 views
by default, will plinq use range partitioning or chunk partitioning for Dictionary<string, string>? and how to force the other?
By default, will plinq use range partitioning or chunk partitioning for a Dictionary<string, string>?
This is my use case:
Dictionary<string,string> asmachtas = new ...
2
votes
2answers
75 views
Repository pattern with PLinq
I am fairly new to Plinq and Repo pattern. I nee some references and guidlines from you for implementation of Repository pattern using dbml, PLinq in fx 4.0
2
votes
2answers
52 views
Parallel Linq - return first result that comes back
I'm using PLINQ to run a function that tests serial ports to determine if they're a GPS device.
Some serial ports immediately are found to be a valid GPS. In this case, I want the first one to ...
2
votes
1answer
84 views
PLINQ vs. LINQ: OutOfMemoryException for LINQ but not PLINQ [closed]
This is an interesting one. First of all the setup:
8GB RAM
Windows 7 Pro x64
VS2010 Ultimate
I have a memory intensive algorithm that crunches through data using LINQ/PLINQ. The initial ...
2
votes
1answer
91 views
Making PLINQ and BlockingCollection work together
I have put together a simple application that monitors file creation events, creates some objects from the files content, and does some processing. Here is the sample code:
class Program
{
...
2
votes
3answers
108 views
How to Cancel a PLINQ Query in a WinForms Application
I am working on application which processes large amount of text data gathering statistics on word occurrences (see: Source Code Word Cloud).
Here what the simplified core of my code is doing.
...
2
votes
2answers
274 views
PLINQ on ConcurrentQueue isn't multithreading
I have the following PLINQ statement in a C# program:
foreach (ArrestRecord arrest in
from row in arrestQueue.AsParallel()
select row)
{
Geocoder ...
2
votes
3answers
292 views
Explain please AsParallel()
Can somebody explain me one thing. As I understand AsParallel() executes in own task. So, if query return huge amount of data the variable 'd' can be empty at time when 'foreach' started to execute ...
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
171 views
PLINQ performance problem
I using PLINQ on collection of more then 10000 element... i m not getting the performance as compare with sequential query.
my system configuration is as follows: OS - Windows 7 32-bit, processor - ...
2
votes
1answer
76 views
does PLINQ preserve the original order in a sequence?
Is PLINQ guaranteed to return query results in the order of the original sequence being operated on, even if results are produced in parallel? For instance:
new List<String>(){"a", "b", "c", ...