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.
0
votes
1answer
31 views
Conditional exception raising in a flow block
While using Akka's data-flow DSL, I have twice encountered a need to throw an exception inside future, conditionally. This is how I am doing it:
flow {
// ...
if (someCond)
shiftUnit(throw ...
0
votes
1answer
33 views
Using a scalar as a condition in an OLE DB data flow
I am having a problem with a data flow task in an ssis package i am trying to build. The objective of the package is to update tables situated in our local server using a connection to a distant ...
0
votes
0answers
21 views
Dataflow diagram and user privileges
I am creating a system where there are two types of users who can acess different processes of the system
Is there a way to display this in a Dataflow diagram ? ive been looking at bounderies but as ...
-2
votes
0answers
26 views
C# SSIS parameter mapping type components [closed]
After searching without much luck, maybe I am searching for the incorrect terms. I would like to know what tools or components are available for c# that will allow you to use a SSIS designer style ...
0
votes
0answers
55 views
How to create table through ER Diagram?
I have got some requirement from one of the client. I have prepared the ER Diagram which i am hoping is correct. Now i have to create the table from that ER Diagram and it should be in 3rd normal ...
0
votes
2answers
35 views
Using InputStream/OutputStream to handle data flows through modules
so now I have a bunch of modules. It's like a assembly line. There is data flowing through and each module does something about the data, or you can say the next module consumes the output that the ...
0
votes
0answers
21 views
context sensitive call graph for java bytecode and interprocedural dataflow analysis framework?
In my project, I have two problems to address.
1:
I need a context-sensitive call graph for java (bytecode).
Here the context is the call stack of the method, i.e., for different invocation points of ...
1
vote
0answers
38 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 ...
0
votes
0answers
53 views
How to use akka dataflow in maven
I encountered a problem when using data flow . The maven can not compile if I enable the continuation in maven scala plugin config.
After I enable the continuation in maven, the compile starts to ...
0
votes
1answer
81 views
Magento - Export products (with Dataflow) to CSV with a cronjob
I want to export the Magento products every night to a CSV file. The Dataflow in Magento works perfect, but I can't setup a cronjob with that. The CSV lay-out should be the same as the Dataflow ...
1
vote
1answer
80 views
Failed A akka dataflow sample
I am tring a simple akka data-flow sample, just like following:
import akka.dataflow._ //to get the flow method and implicit conversions
object FlowTestApp extends App {
import ...
2
votes
2answers
64 views
System.Threading.ExecutionContext doesn't implement interface System.IDisposable
In our application we are currently moving to System.Threading.Tasks.Dataflow to manage all communications. But now each time we use our Network Client/Server classes in any custom ...
0
votes
0answers
11 views
CDC Change Data Capture Looping of Tables in Dataflow
I am working with a new project that needs CDC features. Working in between I have encountered some problems.
1) Do we need 'n' number of Data flow tasks if we have 'n' number of tables?
2) Can we ...
0
votes
0answers
25 views
Extracting data flow graph from source cod
Is there a way to automatically generate a DFG (Data Flow Graph) from source code such that the source code is returned to me in some data structure or file that is programmatically parseable?
I will ...
2
votes
2answers
84 views
Will TPL Dataflow work for this design type?
I'm currently looking into ways to simulate the transmission of resources and messages between connected objects such as power to devices or control messages over a networked system:
CLICK FOR ...
0
votes
0answers
37 views
im not sure whether my context diagram is correct
according to my scenario, there is a shop with about 4 5 workstations which displays the available products in an interface where the customer will be able to search and select the product he/she ...
0
votes
1answer
52 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 ...
0
votes
1answer
34 views
Which arrow should be there in dfd?
Not sure whether this is the right place to ask such a question. But I trust this has an answer over here.
I am supposed to make a Data Flow Diagram and am confused whether is it right to use ...
6
votes
2answers
189 views
MQ to process, aggregate and publish data asynchronously
Some background, before getting to the real question:
I am working on a back-end application that consists of several different modules. Each module is, currently, a command-line java application, ...
0
votes
1answer
92 views
Dataflow language/Framework in Java [closed]
We have a set of java (and some Python) process that execute in a data flow oriented architecture.
At the moment we're stringing them together using scripts.
The question I had was is there a ...
0
votes
0answers
60 views
Magento dataflow: How to store temp variable between rows?
I've created an adapter class for advanced dataflow. In saveRow() method which process each row in CSV, I want to store some values in every other row before I process it. How can I store those ...
0
votes
2answers
845 views
How to reconfigure the column information on a flat file connection manager?
I have a Flat File Source that is reading data from a flat file. We have recently added a new column to this flat file.
The flat file data is inserted into a database table. To accommodate the new ...
0
votes
1answer
297 views
How do I import configurable products in Magento?
I’m making a clothing webshop and need to create configurable products in the import process, to link the sizes together.
The import process is working perfectly and both the simple products and the ...
10
votes
6answers
315 views
Graphical dataflow composition framework
I am interested to embed a MathWorks Simulink like type tool into my application. In this embedded tool units are expressed as blocks with their input and output ports and parameters for each block ...
0
votes
2answers
210 views
SSIS - DataFlow - Set a value for each row from a procedure stocked result
For a SSIS, i have to transfer data from a server to another but on the final destination, i have a column like ID.
For determinate the new ID of each row, i have to execute a stored procedure on the ...
0
votes
0answers
50 views
Infrastructure and Dataworkflow Dokumentation with Open Source Software
How to you guys document your IT Infrastructure including data-flow?
We have a couple of scripts which gather data in a database. Other scripts join theses data and export them to various systems.
...
0
votes
0answers
17 views
Risk Assessment for data flowing through a system
I need the help of developers in highly audited environments. We've been tasked with documenting all the software at our company that has been a small shop for 20+ years and recently has started ...
1
vote
4answers
216 views
Get the level of a hierarchy
I have an array of objects, Where each object has an id and a ParentId property (so they can be arranged in trees). They are in no particular order.
Please note that the id's and parentId's will not ...
0
votes
1answer
63 views
Finding the number of days in a month
I am making a program to display the no. of days in the month provided by user. I am making this program at Data Flow level. As I am new to verilog, I don't know if we can use if/else conditions or ...
2
votes
1answer
194 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 ...
1
vote
3answers
423 views
SSIS - fill unmapped columns in table in OLE DB Destination
As you can see in the image below, I have a table in SQL Server that I am filling via a flat file source. There are two columns in the destination table that I want to update based on the logic listed ...
0
votes
2answers
705 views
How to import configurable product through csv in Magento?
I need to import Configurable product and Grouped product through csv in Magento
So can anyone please provide csv demo file for that? either using import/export or dataflow profiles. or suggest ...
1
vote
2answers
144 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 ...
1
vote
3answers
376 views
SSIS Data Flow - sequential insert with required foreign key values
Is it possible to insert to a initial table then using the inserted ID to be used in inserting to the main table that has a foreign key constraint between the columns in one data flow?
I am new to ...
0
votes
1answer
58 views
Dictionary of dataflow programming terms
I am developing a dataflow library for java, and I would like to give names to classes as it is customary to computer science. For example, I have following dataflow construct:
it has 2 input ...
0
votes
1answer
108 views
Hadoop data and control flow
I'm writing a Hadoop application but it seems that I have misinterpreted how exactly hadoop works. My Input files are tiles of a map, named according to the QuadTile principle. I need to subsample ...
1
vote
1answer
725 views
Magento Dataflow product import not importing super_attribute fields
I'm in the process of testing various methods to import a substantial list of products from an older cart system into Magento Community edition (1.7.0.2).
I'm aware of utilities like Magmi, but we're ...
1
vote
2answers
208 views
Is there a good dataflow concurrent library in java
I'm currently looking at the dataflow model of concurrency as in Clojure and Groovy GPars. Is there any libraries written in pure Java that I can benefit from?
I know I can import or delegate to ...
1
vote
1answer
259 views
How do I continue the process after inserting non-matching lookup rows into a table?
Inside a data flow, is it possible to do a lookup, insert the non-matching rows, re-lookup and then continue with the full (original) data set?
I can't see how you get/re-use the inserted rows after ...
2
votes
0answers
68 views
Import | Export Dataflow - Profiles Progress Percentage No longer displaying
Currently our Dataflow profiles are not giving a progress percentage anymore.
It simply carries out the import and then show up all the errors. Previously it would show the progress which was nice.
...
0
votes
1answer
54 views
What happened to the Dataflow LinkTo parameter discardMessages?
In "Introduction to TPL Dataflow" Stephen Toub writes under LinkTo:
"... and what the behavior should be if the predicate is not met (e.g. should such a message simply be dropped, should such a ...
0
votes
0answers
75 views
Measure fan-out and dataflow
Is there any tool that can measure the following 2 characteristics of C# Code (eventually also complete ASP.Net projects):
fan-out: Number of external calls from a class.
dataflow: the total number ...
1
vote
0answers
159 views
SSIS and SharePoint List Source how to handle erros?
How can I handle errors with "SharePoint List Source", in a Integration Services Data Flow?
I want to test if a site URL exist in Sharepoint, if not I want to handle the error.
I am using SharePoint ...
1
vote
2answers
2k views
SSIS Use DataFlow task with variables instead of a source database
I have a task that I am working on that has me stumped. Hoping you can help me. I am using a data flow task which is basically inserting a row into a sqlite table. I was doing this using a "SQL Task" ...
0
votes
1answer
75 views
Resharper Dataflow analysis
I'm using the TPL Dataflow library extensively, and really like the Used-By feature of R#. What would be nice is to look at the used by of a method which is the target of an ITargetBlock (Action block ...
0
votes
0answers
111 views
xcode:- call flow generator through code
I'm searching for a tool that let me generate a flow chart for a given project. It is difficult understand others code by looking at code, a flow chart can be very helpful.
My Project is in xcode ...
0
votes
1answer
164 views
TPL Dataflow break LinkTo() during runtime
I have a TransformManyBlock<Tin, Tout> and during run time add consumers (ActionBlocks) through LinkTo(...).
Is TransformManyBlock the correct data flow block to consume elements, transform ...
1
vote
1answer
1k views
Simple java based workflow manager / data workflow with ability to start ext. application, call web services etc
First of all, if there is already such a question like mine on the stackoverflow, sorry for that, but I haven't managed to find it. Actually I don't know what tags could I use to search for a solution ...
1
vote
0answers
331 views
Create data flow graph of a basic block from Gimple representation
the Gimple internal representation (IR) of GCC provides some data flow analysis for each basic block in the SSA (Static Single Assignment) form. I would like to take the GCC-generated Gimple file as ...
0
votes
0answers
482 views
ssis data flow doesn't complete [closed]
I have a fairly simple SSIS package. The control flow has three components:
Execute SQL Task ("Clean Staging Table") -- removes all records with a FILE_ID matching a variable from the destination ...
