Questions tagged [dataflow]

Dataflow programming is a programming paradigm in which computations are modeled through directed graphs: nodes are instructions and data flows through the connections between them.

Dataflow programming is a programming paradigm which models programs as directed graphs and calculation proceeds in a way similar to electrical circuits. More precisely:

  • nodes are instructions that takes one or more inputs, perform calculation on them and present the result(s) as output;
  • edges connects inputs and outputs of the instructions -- this way the output of an instruction can be fed directly to the input on another node to trigger another calculation;
  • data "travels" using the directed edges and triggers the instructions as they pass through the nodes.

Often dataflow programming languages are visual, the most prominent example being LabView.

Resources

1152 questions
-1
votes
1 answer

window Data hourly(clockwise) basis in Apache beam

I am trying to aggregate streaming data for each hour(like 12:00 to 12:59 and 01:00 to 01:59) in DataFlow/Apache Beam Job. Following is my use case Data is streaming from pubsub, It has a timestamp(order date). I want to count no of orders in each…
-1
votes
1 answer

Continus assignment to verilog module instance

Is it possible to use assign keyword with module instances? Lets assume I have a module logarithm which works as it's intended. In some other module, I want to have: A = log(B) + log(C). Is there any efficient way other than the following to do…
-1
votes
1 answer

SSIS Package Writes 0 rows but run DataFlow only and get 400k rows

I use my own login. I had to add a new join to OLEDB source query and tested with execute of Dataflow task and works 400k rows. Then run within package return is 0 rows and no error or warning
MacAries
  • 1
  • 3
-1
votes
2 answers

Dataflow Task.WhenAll causes A task was canceled Exception

I am new to Dataflow, and I follow this walkthrough How to: Cancel a Dataflow Block. I click add button first, and then click cancel, but I got exception about "A task was canceled Exception" after clicking cancel button. I fail to find any way to…
Edward
  • 28,296
  • 11
  • 76
  • 121
-1
votes
1 answer

Writing a protobuf object to GCS

I am making a dataflow (java api) which will write protobuf object to gcs. Can anyone please help me with how to do this. A sample of code or something would be helpful.
Raman
  • 216
  • 3
  • 15
-1
votes
1 answer

How can I transfer data on play framework

I want to create single page application and I am beginner at play framework. I install the play activator and create play-java project then I import the project in eclipse. I put my login.html and necessary js files (index.js, controller.js etc)…
artless7
  • 13
  • 7
-1
votes
1 answer

BufferBlock -> ActionBlock Not Firing

In Short I create an BatchBlock which links to an ActionBlock, which calls a async method, but this method never fires. Details Here is how I create the blocks var instance = new ConnectionSaveStep(repo, progress, total); var batch =…
Boas Enkler
  • 12,264
  • 16
  • 69
  • 143
-1
votes
1 answer

failed to compile dataflow sample

I tried the Google sample dataflow but I get the following error when I run maven install as described in the following link: [ERROR] Failed to execute goal on project google-cloud-dataflow-java-examples-all: Could not resolve dependencies for…
-1
votes
1 answer

Unspecific Dataflow Import error in Magento

I'm trying to import data into Magento through Dataflow. I've tried both xml and csv files but huge error messages starting with the following keep coming up:
-2
votes
1 answer

Can I make TPL DataFlow BatchBlock Singleton?

All the example I can find shows that I have to call .Complete() to get messages pushed to next node, I am wondering If I make BatchBlock Singlton, and have it receive messasges continuously, auto push messagses to next block when messasges reach…
yuahorse
  • 21
  • 3
-4
votes
1 answer

Data flow control in inter-process communication in C

I have three modules(2 C executable+ 1 python script). I need three processes-one parent, two child processes. All of them won't stop until they see an End of file. They just keep running after execution. Problem just arises here. Parent process…
Tamier
  • 1
  • 3
-4
votes
3 answers

Difference between control flow and data flow in ssis

What is the difference between control flow and data flow in a SSIS package along with some examples please. Thanks.
Ram
  • 9
  • 1
  • 1
  • 1
1 2 3
76
77