Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
10answers
741 views

Does this language feature already exist?

I'm currently developing a new language for programming in a continuous environment (compare it to electrical engineering), and I've got some ideas on a certain language construction. Let me explain ...
12
votes
9answers
3k views

Dataflow Programming Languages

What is a dataflow programming language? Why use it? and are there any benefits to it?
8
votes
3answers
130 views

Lazy data-flow (spreadsheet like) properties with dependencies in Python

My problem is the following: I have some python classes that have properties that are derived from other properties; and those should be cached once they are calculated, and the cached results should ...
8
votes
6answers
755 views

Reference manual for Apache Pig Latin

Pig is a dataflow programming environment for processing very large files. Pig's language is called Pig Latin. Does anyone know of a good reference manual for PigLatin? I'm looking for something that ...
7
votes
5answers
1k views

Dataflow Programming - Patterns and Frameworks

I just came across the proposed Boost::Dataflow library. It seems like an interesting approach and I was wondering if there are other such alternative frameworks for C++, and if there are any related ...
6
votes
1answer
504 views

Has anyone used TPL Dataflow yet? [closed]

TPL Dataflow was recently released along with the Visual Studio 2010 Async CTP. Now, I'm curious: Has anyone used this library yet? As I'm very interested in using it for an actor/agent-based ...
5
votes
1answer
485 views

Using Clojure DataFlow programming idioms

Can someone explain why and how I would use the Clojure Dataflow programming API as I can't seem to find much about it on the internet.
4
votes
6answers
466 views

What is the best programming language to implement neural networks?

I'm not looking for a Neural Networks library, since I'm creating new kinds of networks. For that I need a good "dataflow" language. Of course you can do this in C, C++, Java and co. but dealing ...
4
votes
4answers
1k views

Dataflow Programming API for Java?

I am looking for a Dataflow / Concurrent Programming API for Java. I know there's DataRush, but it's not free. What I'm interested in specifically is multicore data processing, and not distributed, ...
3
votes
1answer
154 views

Examples of monadic effects inside a rewrite function in Hoopl?

The type of (forward) rewriting functions in Hoopl is given by the mkFRewrite function: mkFRewrite :: (FuelMonad m) => (forall e x. n e x -> f -> m (Maybe ...
3
votes
3answers
250 views

UML for multithreading dataflow

Hallo, I want to paint a diagram where you can see the dataflow of a java program, and if there are one or multiple threads handling the data. Sequence charts don't show multithreading and get very ...
3
votes
2answers
111 views

Is there a static analysis tool to compute use-define chains?

I'm looking for a static analysis tool for C that performs dataflow analysis and computes use-define chains (preferably a command line tool). So far I have tried CIL, clang, lint, goanna and a few ...
3
votes
1answer
301 views

Use Clojure Cells or add-watcher for reactive program?

I want to use alot of reactive (dataflow) type programming techniques in my clojure program. Is uses "add-watcher" on clojure refs going to be good enough to do this. A simple case for this would be ...
3
votes
3answers
530 views

Magento - Module VS Dataflow

Magento - Module VS Dataflow I am consider the possibility of ---- using Magento DataFlow to extract information from db to tie in with a video CMS. It could save development time - or it might not. ...
3
votes
4answers
355 views

What is a good motivating example for dataflow concurrency?

I understand the basics of dataflow programming and have encountered it a bit in Clojure APIs, talks from Jonas Boner, GPars in Groovy, etc. I know it's prevalent in languages like Io (although I ...
3
votes
10answers
368 views

Are there any programming languages where variables are really functions?

For example, I would write: x = 2 y = x + 4 print(y) x = 5 print(y) And it would output: 6 (=2+4) 9 (=5+4) Also, are there any cases where this could actually be useful? Clarification: Yes, ...
3
votes
3answers
10k views

SSIS - AcquireConnection method call to the connection manager <Excel Connection Manager> failed with error code 0xC0202009

I have an SSIS package which reads an Excel File (Data Flow Source) and transfer the data to SQL Server using OLEDB Destination Data Flow Item. The OLEDB Connection Manager used for the destination is ...
2
votes
3answers
124 views

Is there any spreadsheet which use a formula repository instead of writing several copies directly in the cell?

I like speradsheet programs, but there is a disturbing thing with them: the formulas must be entered in the cells. It has several withdraws: I need to scan thru all the cells to see, what's going in ...
2
votes
3answers
301 views

Has anyone used dataflow programming in a real project with a mainstream language?

I am looking at using some Dataflow programming techniques in a clojure program but I am having difficulty in finding much information from projects using Java, C#, or other mainstream languages that ...
2
votes
2answers
201 views

Pluggable vector processing units in Clojure

I'm developing some simulation software in Clojure that will need to process lots of vector data (basically originating as offsets into arrays of Java floats, length typically in 10-10000 range). ...
2
votes
4answers
2k views

Measuring Progress of SSIS Data Flow

I am running a SSIS package to load say a million rows from a flat file, which uses a script task for complex transformations and a SQL Server table destination. I am trying to figure out the best way ...
1
vote
1answer
27 views

Programming toolchain supporting “Incremental computing” (maybe even C/C++)

I'd like to write algorithms, that prepare results for big data sets. Than, when each dataset changes, incrementally update all affected outputs. It's called : Incremental computing. Are there ...
1
vote
1answer
149 views

Does Drools/JBPM5 support data flow?

Does Drools/JBPM5 support data flow? Or is it only control flow?
1
vote
2answers
250 views

SSIS OLE DB Data Flow Source: outputting a column that may have different lengths

I created an SSIS package so I can import data from a legacy FoxPro database at scheduled intervals. A copy of the FoxPro databaseis installed for several customers. Overall, the package is working ...
1
vote
4answers
404 views

slow category import in magento

I wrote a custom adapter for importing 6K categories using the advanced profiles. The import is too slow. I've tried increasing the number of records from 1 to 5 but it doesn't help. I also tried ...
1
vote
3answers
343 views

Library for Dataflow in C

How can I do dataflow (pipes and filters, stream processing, flow based) in C? And not with UNIX pipes. I recently came across stream.py. Streams are iterables with a pipelining mechanism to ...
1
vote
2answers
315 views

Techniques for modeling a dynamic dataflow with Java concurrency API

EDIT: This is basically a "how to properly implement a data flow engine in Java" question, and I feel this cannot be adequately answered in a single answer (it's like asking, "how to properly ...
1
vote
3answers
418 views

How would you display/layout Data-Flow between Enterprise Applications?

My employer is a large Swiss Telco. We have many Systems used to transfer data for different tasks, e.g. Performance Management, Fault Management, Configuration Management etc. In order explain to ...
1
vote
2answers
2k views

Design Pattern for multithreaded observers

In a digital signal acquisition system, often data is pushed into an observer in the system by one thread. example from Wikipedia/Observer_pattern: foreach (IObserver observer in observers) ...
0
votes
1answer
118 views

SSIS: Create CSV File From XML Source Using Variable data

In SSIS, am attempting to use data from a web service to create a csv file. In my Control Flow, I have created a Web Service Task that saves its output to a User Variable. When the Web Service Task ...
0
votes
0answers
113 views

Definining Oledb connection manager for custom data flow component in SSIS

UPDATE Nevermind, I got mixed up. In my case, I am developing a custom transform component. I don't need to implement the AcquireConnection method. END UPDATE I am developing a custom SSIS data ...
0
votes
1answer
90 views

SSIS Need Flat File output with 2 column headers the same

I am trying to use SSIS Flat File destination, but cannot come up with a work around for getting the output file to have two columns named to same thing. I have a requirement for the output file to ...
0
votes
0answers
328 views

Magento Dataflow import and Import problems

I suspect this two issues are related. First> my Dataflow exports profiles work fine, as does the dataflow profile Import Product Stocks - but the Import All Products profile is experiencing some ...
0
votes
2answers
95 views

SSIS: importing files some with column names, some without

OrPresumably due to inconsistent configuration of logging devices, I need to load a collection of csv files via SSIS that will sometimes have a first row with column names and will sometimes not. The ...
0
votes
0answers
227 views

Real application scenario of using TPL Dataflow in MVVM WPF application

May I ask you to point me to some example showing how to use TPL Dataflow in MVVM application when TPL Dataflow is used in a data service. In my MVVM application I separated application blocks to 5 ...
0
votes
1answer
529 views

Magento 1.5.1: “Image does not exist” while importing products

I’ve always use this method to import products with images: - putting all the images to import in “/media/import”; - add “/image_name.jpg” to image column in the csv file to import; Since magento ...
0
votes
1answer
178 views

Transfer data from one table to another table by SSIS

I am trying to perform ETL from one table (Table A) to another table (Table B) using SSIS packages. I have OLE DB Source and OLE DB Destination. But I need to only transfer those rows of Table A which ...
0
votes
1answer
66 views

Is there a name for the algorithm that finds a minimal set of resources that will allow for no resource contention on a dataflow graph/weighted DAG?

I'm not sure if this has a simple solution or is a "named" algorithm, so I thought I'd ask here. I have a dataflow graph (DFG) from a compiler. It's an arc-weighted DAG. The arc weights denote the ...
0
votes
0answers
53 views

PDE (partial dead code elimination) data flow analysis framework

I have been working on doing a partial dead code elimination data flow analysis framework that detects partial dead code but not fully dead code. I would think that in detecting fully dead code ...
0
votes
2answers
493 views

Data Flow Diagram for Classes; data flow diagram level 0, level 1; context diagrams

How can I draw a data flow diagram and a context diagram for class a website level 0, level 1
0
votes
1answer
72 views

Data flow GUI library for data traveling between few sites

as the title suggest, I wanted to know if there's a ready-to-use GUI library that provide with a kind of data flow chart. Since this issue of displaying data flow is common in a lot a fields, I think ...
0
votes
1answer
262 views

Facebook local testing: In which direction data is flowing?

This question is not about how to set up local environment to test Facebook application. Rather I've already set this up with the help of this thread. In short I changed my hosts file and its working ...
0
votes
2answers
399 views

SSIS Data Flow overflowing on dates

I have a FoxPro data source, and the destination is SQL Server 2008. On the FoxPro side, I have a column with the Date data type. That's a width of 8, min value is 0001-01-01 and max is 9999-12-31. ...
0
votes
1answer
162 views

How do visual programming languages work?

I'm exploring the possibility of presenting a visual interface to users of an application that would allow them to enter some custom code/functionality in a dataflow-ish style (a la Yahoo Pipes). I'm ...
0
votes
1answer
107 views

Which is better - relying on delegates or persisting through objects - iOS

After doing some reading I notice Apple pushes the use of delegates on controllers communicating with one another. So say I have a Menu controller which needs to communicate with the help controller ...
0
votes
1answer
967 views

export products to csv from the admin product grid

The import products profile allows you to filter which products to export by name, sku... I want to have the same functionality in the manage products page. The admin will filter products in the grid ...
0
votes
1answer
230 views

Process results of conditional split in SSIS

I have a Data Flow Task and am connecting to a database via an OLE DB Source component to extract data. This data feeds into a Conditional Split component to separate the data based on a simple ...
0
votes
3answers
995 views

How do I get SSIS Data Flow to put '0.00' in a flat file?

I have an SSIS package with a Data Flow that takes an ADO.NET data source (just a small table), executes a select * query, and outputs the query results to a flat file (I've also tried just pulling ...
0
votes
1answer
134 views

How to deal with alias registers in data-flow analysis using SSA form? (e.g. EAX/AX/AH/AL in x86)

For exmaple: How to represent the following x86 in SSA form: xor eax, eax inc ax By introducing some pseudo functions, I come up with: eax@1 = eax@0 ^ eax@0 ax@1 = LOWORD(eax@1) al@1 = ...
0
votes
3answers
134 views

What are the alternatives to Pervasive DataRush

We are looking into the solution that facilitate massively parallel data processing. Our processing graphs are often rather complex, so well developed operator framework like one Pervasive DataRush ...

1 2