Tagged Questions
The data-processing tag has no wiki summary.
12
votes
3answers
214 views
frameworks for representing data processing as a pipeline
Most data processing can be envisioned as a pipeline of components, the output of one feeding into the input of another. A typical processing pipeline is:
reader | handler | writer
As a foil for ...
12
votes
3answers
2k views
Large scale data processing Hbase vs Cassandra
I am nearly landed at Cassandra after my research on large scale data storage solutions. But its generally said that Hbase is better solution for large scale data processing and analysis.
While both ...
8
votes
10answers
6k views
Word Anagram Hashing Algorithm?
Given set of words, we need to find the anagram words and display each category alone using the best algorithm
input:
man car kile arc none like
output:
man
car arc
kile like
none
the best ...
7
votes
3answers
333 views
Lua vs Embedded Lisp and potential other candidates. for set based data processing (edit: chosing lua)
Current Choice: lua-jit. Impressive benchmarks, I am getting used to the syntax. Writing a high performance ABI will require careful consideration on how I will structure my C++.
Other Questions of ...
7
votes
5answers
5k views
Ways to read only select columns from a file into R? (A happy medium between `read.table` and `scan`?)
I have some very big delimited data files and I want to process only certain columns in R without taking the time and memory to create a data.frame for the whole file.
The only options I know of are ...
6
votes
4answers
349 views
using Hibernate to loading 20K products, modifying the entity and updating to db
I am using hibernate to update 20K products in my database.
As of now I am pulling in the 20K products, looping through them and modifying some properties and then updating the database.
so:
load ...
6
votes
6answers
955 views
free secure distributed make system for linux
Are there any good language-agnostic distributed make systems for linux that are secure and free?
Background Information:
I run scientific experiments (computer-science ones) that sometimes have ...
5
votes
12answers
622 views
What is so wrong with extract()?
I was recently reading this thread, on some of the worst PHP practices.
In the second answer there is a mini discussion on the use of extract(), and im just wondering what all the huff is about.
I ...
4
votes
4answers
868 views
Intensive file I/O and data processing in C#
I'm writing an app which needs to process a large text file (comma-separated with several different types of records - I do not have the power or inclination to change the data storage format). It ...
4
votes
2answers
345 views
CPU bound applications vs. IO bound
For 'number-crunching' style applications that use alot of data (reads: "hundreds of MB, but not into GB" ie, it will fit nicely into memory beside the OS), does it make sense to read all your data ...
2
votes
1answer
82 views
In memory alternative to datasets
I am moving a complex process out of SQL to a .NET application. I'm kind of taking a brute force approach by pulling down only the data that is needed from SQL, then storing in datatables. Using a ...
2
votes
2answers
102 views
Selecting distinct records without using a temporary table
I have a third party table that is being populated with some cluttered data that I'm needing to get the most recent distinct records out of. The table will be fed a new row every year, or every time ...
2
votes
3answers
188 views
How do you handle timezones for data processing?
curious how people have solved this problem...
I have a series of jobs that run overnight that roll up reports based on that day's data for customers. They're now asking for timezone support.
One of ...
2
votes
4answers
1k views
Regular Expressions to insert “\r” every n characters in a line and before a complete word (basically a wordwrap feature)
I'm new to JavaScript and regular expression. I'm trying to automatically format a text document to specific number of characters per line or put a "\r" before the word.
This is functionally similar ...
2
votes
4answers
863 views
Web service for live Forex data for Eastern Europe currency?
Is there a Web service for live Forex data for Eastern Europe currency? The yahoo data is updated with a couple of minutes delay, so I don't want to use that. I've seen some Java Applets, but thy are ...
2
votes
3answers
145 views
Fast min on span
Given a list of arrays and lots of setup time I need to quickly find the smallest value in some sub-span of each array. In concept:
class SpanThing
{
int Data;
SpanThing(int[][] data) /// ...
2
votes
5answers
3k views
What is the best way to reduce cyclomatic complexity when validating data?
Right now I'm working on a web application that receives a significant amount of data from a database that has a potential to return null results. When going through the cyclomatic complexity for the ...
1
vote
3answers
39 views
How to detect threshing in accelerometer?
I'm writing an application controlled by an accelerometer built into a wrist watch. I want one of the commands to be "wildly swinging your forehand". How do I detect it and measure for how long it ...
1
vote
1answer
136 views
(C) Virtual network adapter
Is there any way in linux to programatically create a virtual network adapter that can be listened to, so that whenever an attempt is made to send data through the adapter, a method is called?
I am ...
1
vote
3answers
58 views
data and software architecture for calculations from year 0 - year n
For example, our application tracks animal movements and prices for a farm. To get the current stock count the simplest solution is to have a starting number, then add up all the movement in and out ...
1
vote
3answers
124 views
What is the optimal way to process a very large (over 30GB) text file and also show progress
[newbie question]
Hi,
I'm working on a huge text file which is well over 30GB.
I have to do some processing on each line and then write it to a db in JSON format. When I read the file and loop ...
1
vote
2answers
140 views
Processing XML data for JSP
I have a form/calculator, which posts to itself some data, this data is then calculated by dispatching a servlet and the results are output as xml. The dispatcher code is shown below:
//create ...
1
vote
1answer
371 views
C# - Data Clustering approach
I am writing a program in C# in which I have a set of 200 points displayed on an image. However, the points tend to cluster in various regions, and I am looking to find a way to "cluster." In other ...
1
vote
1answer
99 views
Patterns for non-layered applications
In Patterns of Enterprise Application Architecture, Martin Fowler writes:
This book is thus about how you
decompose an enterprise application
into layers and how those layers work
together. ...
0
votes
1answer
22 views
Categorize the output of ec2-describe-images or ec2-describe-instances
Is there any command/tool/script to categorize the bulky output of ec2-describe-images or ec2-describe-instances.
I have a list of around 100 servers with each and every detail. I want to categorize ...
0
votes
0answers
22 views
How to find a Mathematical Pattern in a Database?
So I have several tables (python but I am open to any languages/programs which could do this):
timestamp = {123234 , 2342343, 2342345 , ...}
good_bad = {1 , -1 , -1 , ...}
number_of_t = {4 , 3 , 5 ...
0
votes
0answers
32 views
Are there any good data transformation/mapping standards? XSLT, XQuery and XPath don't count
I'm working on a project involves a lot of mappings/transformations.
Most of it is one to one mappings
a = 1
but some parts require logic and math
if x
a = 1
else
a = 1 + b
That ...
0
votes
2answers
38 views
Software engineering for data driven processes [closed]
I'm used to planning software where the complexity lies in the user interactions. The agile software engineering principles I learned work pretty well for that type of scenario. User stories are very ...
0
votes
2answers
48 views
Handling In-Memory Data In PHP
I am writing a PHP framework which can be used to visualize huge amounts of data. I cannot fetch all the data into memory and process it (like sort,filter etc). So I have a sql query builder which ...
0
votes
3answers
47 views
Can anyone suggest a regex pattern that matches 4 consecutive lines of text?
I am trying to parse a large data file. In the file there are groups of either 3 or 4 lines of data separated by a blank line. Eg:
Data Group One Name
Data Group One Datum 1
Data Group One Datum 2
...
0
votes
1answer
100 views
Convert list of pairs to a table in shell without using awk
I have a tab-delimited list of pairs like this:
apple yellow
orange green
apple red
pear blue
apple yellow
apple yellow
I want to convert it, using Linux command-line tools, to table:
...
0
votes
3answers
269 views
How do I extract data between square brackets that appear several times in a line using perl?
I have a line that containes multiple instances of square bracketed data.
[data 1] junk [data 2] junk,junk [data 3] junk [data 4]
Does any one have a goo regex? So I can use
print $1,$2,$3,$4;
...
0
votes
1answer
49 views
Temporary storage for keeping data between program iterations?
I am working on an application that works like this:
It fetches data from many sources, resulting in pool of about 500,000-1,500,000 records (depends on time/day)
Data is parsed
Part of data is ...
0
votes
2answers
71 views
How should I filter this data?
I have a several series of data points that need to be graphed. For each graph, some points may need to be thrown out due to error. An example is the following:
The circled areas are errors in the ...
0
votes
1answer
59 views
How to build multiple source feed parsing and data consolidating daemon?
I am given task to write a script (or better yet, a daemon), that has to do several things:
Crawl most recent data from several input xml feeds. There are, like, 15-20 feeds for the time being, but ...
0
votes
1answer
167 views
How to read different files stored in a directory and store some data from them to one file
This is a follow up to the question I asked earlier and with the help of some people here I was able to start up with the function I want to write,but I am yet to complete it.
Here is my earlier ...
0
votes
1answer
304 views
Best way to transpose a grid of data in a file
I have large data files of values on a 2D grid.
They are organized such that subsequent rows of data in the grid are subsequent lines in the file.
Each column is separated by a tab character.
...
0
votes
1answer
465 views
Optimal update in resultset on Sybase IQ
Im looking to rewrite code that update a table on a Sybase IQ database v14 that does the following:
selects all the records in the table and extracts some data to file
updates the extracted to file ...
0
votes
1answer
721 views
Processing CSV files from the Web using embedded Java database
Short version: assuming I don't want to keep the data for long, how do I create a database programmaticly in HSQLDB and load some CSV data into it to? My schema will match the files exactly and the ...
-1
votes
3answers
304 views
How can I read specific data columns from a file in c
Good day all,
I am a beginner in c programming.I have this problem and have have spent quite a huge amount of time on it without any considerable progress.
My problem is stated thus:
I have a ...
-1
votes
4answers
290 views
What are some good Perl modules for flow-based programming on files?
What are some good Perl modules to process files based on configurations?
Basically I am working on taking data files, split them into columns, remove some rows based on some columns, remove ...
-2
votes
1answer
57 views
correlation failure - Pearson
I want to write to datafile information about correlation as follows:
*korelacja=cor(p2,d2,method="pearson",use = "complete.obs")
korelacja2=cor(p2,d2,method="kendall",use = "complete.obs")
...