TPL Dataflow (TDF) is a .NET library for building concurrent applications. It promotes actor/agent-oriented designs through primitives for in-process message passing, dataflow, and pipelining. TDF builds upon the TPL (Task Parallel Library) in .NET 4 and integrates with async language support in C#, ...
1
vote
1answer
57 views
Should I use async or Task to handle a lot of concurrent operations?
I am writing a Windows Service that is going to process a lot of input files.
My question is whether I should use async and await, or if I should create a custom library using Task that could limit ...
1
vote
2answers
28 views
Create reusable processing logic on top of predefined blocks with TPL dataflow?
I love TPL dataflow.
Well, an interesting design choice is that, most predefined block use Delegates to allow us to implement processing logic. That looks good in simple scenarios. But let's think ...
1
vote
1answer
24 views
'sendasync' is not a member of 'System.Threading.Tasks.DataFlow.BufferBlock'
I'm trying to run the Microsoft TPL DataFlow complete example at the bottom of 'How to: Write Messages to and Read Messages from a Dataflow Block' but the code will not compile as-is. I have pulled ...
1
vote
0answers
34 views
TPL Dataflow, notification when data block received first item
I wonder whether it is possible to subscribe to a one-time notification when the first item is received in the input buffer or processed in a data block. I am aware I can set a flag within the data ...
1
vote
2answers
76 views
.NET - Block main thread until there are any available threads
I have a process where my main thread is reading a file and splitting it into parts. Those parts then require further processing. I would like to utilize any available threads so that the downstream ...
5
votes
2answers
1k views
I/O performance - async vs TPL vs Dataflow vs RX
I have a piece of C# 5.0 code that generates a ton of network and disk I/O. I need to run multiple copies of this code in parallel. Which of the following technologies is likely to give me the best ...
3
votes
1answer
63 views
Task Dataflow, can a data block be changed from completion state?
I would like to know whether it is possible to change the completion state of data blocks?
For example, I marked a var block = new BufferBlock<int>(); data block complete with ...
1
vote
1answer
98 views
TPL Dataflow: What's the difference between these 2 code snippets?
I am studying the TPL Dataflow. Belwo are 2 pieces of code snippet from the official document Stephen Toub. Introduction to TPL Dataflow (TPLDataflow.docx) . But I am not fully getting what's the ...
0
votes
1answer
49 views
Is there an alternative to C# TPL Dataflow for C++?
I recently posted a question on Using Delegates to simulate connected objects where I received a great answer on using the TPL DataFlow library to very easily and cleanly develop a solution to my ...
2
votes
1answer
75 views
TPL dataflow blocks inside a WCF duplex
I am new writer to SO, pls bear with me.
I have a WCF service with a duplex service contract. This service contract has an operation contact that suppose to do long data processing. I am constrained ...
5
votes
2answers
247 views
Where can I find a TPL dataflow version for 4.0?
I am looking for the .NET 4.0 version of the TPL dataflow library.
The Nuget package has a 4.0 version of the library, but it seems to target .NET 4.5.
I found various references to a 4.0 version, ...
1
vote
1answer
81 views
TPL Dataflow local storage or something like it
What I'm trying to accomplish is I have a action block with MaxDegreeOfParallelism = 4. I want to create one local instance of a session object I have for each parallel path, So I want to total of 4 ...
0
votes
1answer
40 views
Task Fails to Run
I wrote a small utility to read large text files and search for lines that contain a search term. I'm using this as an opportunity to learn TPL Dataflow.
The code works fine, unless the search term ...
0
votes
1answer
103 views
Can I “hot swap” one Func in TransfromBlock for another during runtime?
I have the following setup of TransformBlock:
private void SetupTestModule()
{
Func<int, int> func1 = new Func<int, int>(input =>
{
return (input + 1);
...
0
votes
1answer
61 views
TransformManyBlock, will returning empty IEnumerables need to be explicitly handled in order to not have them retained in memory?
I implemented a TransformManyBlock<Tin,Tout> and I wonder when I return an empty IEnumerable within the block will that empty IEnumerable be retained anywhere in the system or will it be garbage ...
1
vote
1answer
44 views
Nested blocks in Dataflow
Can I, and is it good practice to call Blocks within other Blocks in TPL Dataflow? So if i'm processing an image layer, containing 4 channels (R,G,B,A), the ProcessLayer block feeds all 4 into a ...
0
votes
1answer
75 views
TPL Data Flow Thread Local Data
Is there a good way to pass thread local data into an ActionBlock, such that if you specify MaxDegreeOfParallelization in its DataFlowExecutionOptions to be > 1, then each task that executes the ...
2
votes
1answer
100 views
How can a TPL Dataflow block downstream get data produced by a source?
I'm processing images using TPL Dataflow. I receive a processing request, read an image from a stream, apply several transformations, then write the resulting image to another stream:
Request -> ...
0
votes
1answer
131 views
TPL Dataflow design for pipelining 4 blocks asynchronously
Its a new question regarding TPL Dataflow ProducerConsumer Pattern which is already answered by Svick.
I need to process 4 files of 2gb in parallel and need to read the file content buffer by ...
1
vote
1answer
112 views
Collecting Data from multiple IO-based Task from a single Thread-based task
Using TPL, how do I collect results from multiple IO sources ("thread-less" tasks) and merge them into a sequence as they come in from their respective sources without spawning a thread based task per ...
3
votes
0answers
125 views
What are the differences between TPL Dataflow(TDF) a Reactive Extensions? [closed]
After days of googleing I think I can't decide which one is for what scenario. Of course I would like to use a perfect framework which combines both (unrealistic of course). I even know that it's ...
1
vote
1answer
77 views
What is this constructor for: ActionBlock<TInput> Constructor (Func<TInput, Task>)
I have previously used the ActionBlock via another constructor:
ActionBlock<TInput> Constructor (Action<TInput>)
But for the one in the title, with a return type Task, I am not sure ...
0
votes
1answer
81 views
When to use ISourceBlock or IObservable [closed]
I need to return a collection of items with the push-model (as opposed to pull, like IEnumerable). However, I'm not sure if I should use IObservable from reactive extensions or ISourceBlock from TPL ...
1
vote
1answer
196 views
TPL Dataflow ProducerConsumer Pattern
Just wrote a sample producer consumer pattern using TPL DataFlow. I have some basic questions here.
The consumer is active only after all the items are posted from the producer. Does asynchronous ...
0
votes
1answer
255 views
Creating a message bus with TPL Dataflow
I was looking for a lightweight, in process, async message bus and came across TPL Dataflow.
My current implementation is below (full example at https://gist.github.com/4416655).
public class Bus
{
...
2
votes
1answer
175 views
Customizing ActionBlock<T>
I want to implement a prioritised ActionBlock<T>. So that i can Conditionally give priority to some TInput items by using a Predicate<T>.
I read Parallel Extensions Extras Samples and ...
4
votes
1answer
372 views
TPL Dataflow, confused about core design
I have been using TPL Dataflow quite a bit but am stumbling about an issue that I cannot resolve:
I have the following architecture:
BroadCastBlock<List<object1>> -> 2 different ...
2
votes
0answers
138 views
How to change batch size of batchblock dynamically during runtime?
I have a batch block in tpl dataflow and have several target blocks linked to the batch block. However, the number of target blocks changes dynamically and thus the size of the batches. Problem is ...
4
votes
1answer
320 views
await async lambda in ActionBlock
I have a class Receiver with an ActionBlock:
public class Receiver<T> : IReceiver<T>
{
private ActionBlock<T> _receiver;
public Task<bool> Send(T item)
{
...
1
vote
1answer
115 views
Concurrent Framework (TDF), is a deep copy of collection required here?
I have issues with a list collection that is passed into a broadcast block. Here is what I have so far (pseudo code as the complete code base is too long):
private ...
2
votes
1answer
188 views
TPL Dataflow, alternative to JoinBlock limitations?
I look for an alternative to JoinBlock which can be linked to by n-TransformBlocks and join/merge messages of all TransformBlock source blocks together in order to pass a collection of such on to ...
3
votes
1answer
106 views
TPL Dataflow, can I query whether a data block is marked complete but has not yet completed?
Given the following:
BufferBlock<int> sourceBlock = new BufferBlock<int>();
TransformBlock<int, int> targetBlock = new TransformBlock<int, int>(element =>
{
...
5
votes
2answers
348 views
TPL Dataflow, whats the functional difference between Post() and SendAsync()?
I am confused about the difference between sending items through Post() or SendAsync(). My understanding is that in all cases once an item reached the input buffer of a data block, control is returned ...
1
vote
1answer
210 views
TPL Dataflow, how to forward items to only one specific target block among many linked target blocks?
I am looking for a TPL data flow block solution which can hold more than a single item, which can link to multiple target blocks, but which has the ability to forward an item to only a specific target ...
3
votes
1answer
488 views
Tasks vs. TPL Dataflow vs. Async/Await, which to use when? [closed]
I have read through quite a number technical documents either by some of the Microsoft team, or other authors detailing functionality of the new TPL Dataflow library, async/await concurrency ...
3
votes
3answers
348 views
TPL Dataflow, guarantee completion only when ALL source data blocks completed
How can I re-write the code that the code completes when BOTH transformblocks completed? I thought completion means that it is marked complete AND the " out queue" is empty?
public Test()
{
...
1
vote
2answers
143 views
concurrency puzzle, how to process items in parallel and then merge the results?
I am confronted with the following problem:
I have a a data stream of Foo objects and stream those objects to several concurrent in-process tasks/threads which in turn process the objects and output ...
2
votes
4answers
214 views
Parallelization of long running processes and performance optimization
I would like to parallelize the application that processes multiple video clips frame by frame. Sequence of each frame per clip is important (obviously).
I decided to go with TPL Dataflow since I ...
2
votes
1answer
91 views
How can I get an IPropagatorBlock<TInput, TOutput> that feeds itself to stop?
Let's assume that I start with a TransformBlock<Uri, string> (which in itself is an implementation of IPropagatorBlock<Uri, string>) that takes the Uri and then gets the content in a ...
7
votes
1answer
492 views
Entity Framework and Parallelism
Background
I have an application that receives periodic data dumps (XML files) and imports them into an existing database using Entity Framework 5 (Code First). The import happens via EF5 rather ...
1
vote
1answer
110 views
BroadcastBlock not working as intended
I use a BroadcastBlock in TPL Dataflow which links to ActionBlocks. However, I cannot find a bug in my code. I post items to the BroadcastBlock via SendAsync and when I print the items in the ...
2
votes
2answers
160 views
Skip Item in Dataflow TransformBlock
TPL Dataflow provides a TransformBlock for transforming input, e.g.:
var tb = new TransformBlock<int, int>(i => i * 2);
Is it possible to not output some of the input, e.g. if the input ...
2
votes
2answers
387 views
Async logging throwing a NullReferenceException
I am trying to asynchronously log some information to SQL Server inside of an MVC 4 controller action targeting .NET 4.0 using the AsyncTargetingPack. I would jump straight to .NET 4.5 but my app ...
1
vote
1answer
309 views
TPL DataFlow TransformBlock input order and output order item mismatch
EDIT: As recommended by svick I replaced the custom IPropagatorBlock with a simple TransformBlock, however, I still see a mismatch between the order of input items and order of output items. Below my ...
1
vote
1answer
290 views
Benefits of using BufferBlock<T> in dataflow networks
I was wondering if there are benefits associated with using a BufferBlock linked to one or many ActionBlocks, other than throttling (using BoundedCapacity), instead of just posting directly to ...
2
votes
1answer
272 views
Linking dynamically created ActionBlocks to a BufferBlock
I'm not sure if this is possible, but if it is, I'm probably not doing something right. Let's suppose I have one shared buffer that is linked to many consumers (ActionBlocks). Each consumer should ...
1
vote
1answer
230 views
TPL Dataflows LinkTo multiple consumers not working
I have a BufferBlock to which I post messages:
public class DelimitedFileBlock : ISourceBlock<string>
private ISourceBlock<string> _source;
this._source = new ...
0
votes
2answers
49 views
Why isn't 'post' a method of Dataflow.TransformBlock? Doesn't compile
In examples on the web, I see that there is a method Dataflow.TransformBlock.Post(), yet I can't get it to compile:
Dim q As New Dataflow.TransformBlock(Of Integer, Integer)(Function(x As Integer) As ...
1
vote
2answers
400 views
TPL Dataflow and Async Method Calls
I'm trying to get a better understanding of the whole concept of parallel processing and have set up test cases. After playing with the tests, I see that using Async method calls within Dataflow ...
0
votes
1answer
127 views
Cancel Operations / UI Notification and UI Information?
I'm currently working on a small project that use Tasks.Dataflow and i'm a little bit confused about ui notifications. I want to separate my "Pipeline" from the UI in another class called ...