Large data is difficult to process and manage because the size is usually bigger than the limits software can normally deal with.

learn more… | top users | synonyms

0
votes
2answers
27 views

Which python data type should I use to create a huge 2d array (7Mx7M) with fast random access?

Which python data type should I use to create a huge 2d array (7Mx7M) with fast random access? I want to write each element once and read many times. Thanks
0
votes
1answer
27 views

Backup very large table in SQL Server

everyone. I'm deeply sorry if this is an amateurish question, but I have to update certain values of a large table (for the sake of a presumed example, it is called 'Resource' and it is over 5M rows) ...
-1
votes
0answers
18 views

WPF application search in large databases

I have made ​​an application in WPF. application connects to a very large database (aprox. half a million lines). I want to make a filter that where user will first select one municipalitie. when user ...
1
vote
1answer
23 views

Linear Independence of Large Sparse Matrices in R

I have three large matrices: I, G, and G^2. These are 4Million x 4Million matrices and they are sparse. I would like to check if they are linearly independent and I would like to do this in R. For ...
0
votes
1answer
26 views

What is the most efficient way to search multiple times in a large database MySQL

I have GEO ip location database where each countriy has a range of IP associated with it. country | ip_start | ip_end I have a very large list of ip (1 million) and i need to associate each ip to ...
1
vote
1answer
22 views

Split large file according to value in single column (AWK)

I would like to split a large file (10^6 rows) according to the value in the 6th column (about 10*10^3 unique values). However, I can't get it working because of the number of records. It should be ...
0
votes
1answer
23 views

MySQL performance with large number of records - partitioning?

I am trying to build a database that would contain a large number of records, each with a lot of columns(fields) - maybe around 200-300 fields total for all tables. Let's say that I would have in a ...
0
votes
1answer
19 views

Error while handling multiple txt files

I'm constructing a program to search all .xml inside a folder setted by user (Source folder) and copy all these files to another folder (Destination folder). My program is able to search all XML ...
0
votes
0answers
24 views

Quickly update a large amount of rows in a table, without blocking inserts on referencing tables, in SQL Server 2008

Context: I have a system that acts as a Web UI for a legacy accounting system. This legacy system sends me a large text file, several times a day, so I can update a CONTRACT table in my database (the ...
0
votes
0answers
21 views

Software for visualizing very large graphs

I have a very large (about 205k edges and 200k nodes) graph of text nodes (names) that I would like to visualize using something like Graphviz. The problem with running this on Graphviz (using sfdp) ...
0
votes
2answers
40 views

Read a term-document matrix from csv using python

The reason classic csv reader doesn't work on term-document arrays is that the first column of the csv file are terms, not values. Thus the file has the following syntax: ...
0
votes
1answer
26 views

Importing millions no of records from text file to mysql table

I need to insert records in mySql from a text file ,that's not a problem . Problem is- Text file contains millions of record,that i'v to save,means 1 text file results into millions of INSERT ...
0
votes
1answer
25 views

MySQL Update a Complete Column data from Another Table with same Primary Key (30 Million Row)

I have two tables: Final and Primary in my MySQL database. Final Table: UID (Primary Key), Surface (Varchar), BCD_Value (Int , Index), Env_Value (Int) Primary Table: UID (Primary Key), BCD_Value ...
0
votes
0answers
29 views

How to append data to big matrix stored on disk in matlab

I'm using matfile to save big file to disk, but I need to append more data later, how can I do it? PointToMat=matfile('test.mat','Writable',true); PointToMat.Y(1000,1000,2500)=0; for i=1:2500 ...
0
votes
1answer
32 views

Which are some of best decimation algorithm to apply on large amount of data ? - .Net Component-one chart

We have got large amount of data points (more then 50,000) which needs to be rendered on componentone line chart (or may be telerik chart control) This chart is to show electrical channels i.e. ...
4
votes
2answers
57 views

Matlab data structure for mixed type - what's time + space efficient?

I need to process large amounts of tabular data of mixed type - strings and doubles. A standard problem, I would think. What is the best data structure in Matlab for working with this? Cellarray is ...
0
votes
1answer
25 views

Mysql puts all data in one partition

I've a 30M rows table and I want to partition it by dates. mysql > SHOW CREATE TABLE `parameters` CREATE TABLE `parameters` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `add_time` ...
0
votes
0answers
80 views

CUDA Most efficient way to store a large array of position data {x, y, z, w}

I'm quite new to this and doing a mass-spring system with CUDA. The system has a large number of particles of different masses linked by springs with different elasticity. At each time step, I will ...
0
votes
1answer
60 views

What is the most effective method for handling large scale dynamic data for recommendation system?

We re thinking on a recommendation system based on large scale data but also looking for a professional way to keeping a dynamic DB structure for working in faster manner. We consider some of the ...
2
votes
2answers
117 views

How do I process large amount of data in asp.net

I have a web project in asp.net/C#/Mysql where the data can be up to some 30,000 rows of data to process. Its a reporting tool, and I have to show statistics like counts and sum at several levels. I ...
0
votes
2answers
85 views

remote neo4j data base: import large amount of data

I need to import about one million of nodes and rougly twice as many relationships between them to a remote neo4j database. The thing that matters to me is: performance I found the java-rest-binding ...
0
votes
0answers
7 views

NSMutableAttributedString is unable to handle large size of the text string

I am using EGOTextView in to my app.Its using NSMutableAttributedString to handle all text.If I paste large size of the text its crashes.How can I handle with large text by using ...
0
votes
2answers
69 views

Looping through huge ranges in python [duplicate]

How do I (efficiently) loop through huge ranges in Python? Whenever I try to run something like- for x in range(105, 10000000000000): #do stuff it takes an eternity to complete. I've tried many ...
0
votes
2answers
54 views

PHP script (algorithm) - only loops till a certain iteration after which it stops

I am running an algorithm in PHP which has a lot of data involved. All the processing happens within a nested for loop. Strangely, the outer for loop stops working after 'X' number of iterations ...
3
votes
3answers
50 views

Performance Issue due to Network

I am currently working on a .NET (3.5) page that has a large dataset and performance is a main concern for the users sitting in 2 different locations (separated 12 hours apart). Goal & ...
0
votes
1answer
81 views

Convert ~500mb csv file to adjacency list

I data scraped from Kickstarter.com. The format of data is in CSV with headers "backer" and "backed_projects". The "backer" column stores all the profile urls of backers and the "backed_projects" ...
1
vote
1answer
66 views

Padding large numpy arrays

Another numpy array handling question: I have an approx. 2000³ entries numpy array with fixed size (that I know), containing integers. I want to pad the array with another integer, so that it's ...
0
votes
4answers
76 views

Plotting too many points?

How does R (base, lattice or whatever) create a graph from a 100000 elements vector (or a function that outputs that values)? Does it plot some and reject others? plot all on top of each other? How ...
0
votes
0answers
26 views

Mysql or NonSql or Lucene for a large hashtag database? [closed]

I'm starting project which is largely depends on user data and hashtags, I want to chose between 3 strategies and I'm not sure which one is the best, I appreciate some insights: a typical relational ...
0
votes
2answers
36 views

Oracle representing hierarchy of data combinations

I'm having an Oracle volume of data issue, which I think is being caused by a data representation problem. I have a hierarchy made from seven different lists, and need to store all the unique ...
1
vote
4answers
123 views

How to allocate memory for a very large two-dimensional array in C

I have a file which has 5 million rows and 4 columns. As usual, I try to read the data in a 5million by 4 array. long M = 5000000; double *coordinates[M]; for (i = 0; i < M; i++){ ...
0
votes
0answers
71 views

reading in large data set in Fortran

I am attempting read a large data file into Fortran it contains about 40960000 rows, I later convert it to a matrix so it would be 6400 * 6400. When I try my code using a much smaller data set it ...
0
votes
0answers
34 views

query large number of records using nhibernate

I am using nHibernate to query a large number of records (around 50000) but it takes too long more than 5 minutes. I tried rhino nHibernate profiler, which helped me retrieving the underlying SQL ...
0
votes
2answers
69 views

Way to compute large lists

Suppose, I need to count collisions for various schemes of hashes. Number of elements in input sequence is 1e10^8 and more. Don't know how to count this analytically, so using brute-force. It's ...
0
votes
1answer
53 views

How would I transfer a large amount of data to a MySQL server in one value?

I am making a PHP script which uploads a very large amount of data to a MySQL server. I do not have administrator rights for the MySQL server, so I can not change the maximum packet size, but I want ...
2
votes
1answer
50 views

Function application and reduction on large arrays

I have two numpy arrays, X and Y whose shapes are X.shape == (m,d) and Y.shape == (n,d), where m, n, and d are non-trivial sizes. I need to make a third array Z whose shape is Z.shape == (m,n). An ...
0
votes
1answer
157 views

Pandas, large data, HDF tables and memory usage when calling a function

Short question When Pandas work on a HDFStore (eg: .mean() or .apply() ), does it load the full data in memory as a DataFrame, or does it process record-by-record as a Serie? Long description I ...
0
votes
1answer
35 views

Creating large arrays in mpir

For small arrays and floating number in mpir I get no error messages but when i wanted to create a very large array. say >100,000,000 I get the following error message: GNU MP: Cannot allocate memory ...
1
vote
0answers
29 views

Cancelling WCF calls with large data?

I'm about to implement a FileService using WCF. It should be able to upload files by providing the filecontent itself and the filename. The current ServiceContract looks like the following ...
1
vote
3answers
98 views

Optimizing database query with up to 10mil rows as result

I have a MySQL Query that i need to optimize as much as possible (should have a load time below 5s, if possible) Query is as follow: SELECT domain_id, COUNT(keyword_id) as total_count FROM tableName ...
1
vote
0answers
98 views

Android EditText and large amount of text

I work on some application with ability to edit text files. But I have serious problem with EditText. Currently I load text file of size 17KB. I don't think, that 17KB is terrible amount of text. ...
0
votes
0answers
90 views

php- web crawling: discuss “indexing unique URL's” - performance issue

(forgive me for the poor english) I'm operating a custom web-crawler on a specific range of URL's. I'm testing it and everything is working perfect so far.. Lately i notice a performance issue i ...
1
vote
1answer
49 views

Efficient way of mapping similar inputs to similar outputs

Is there a efficient way of approaching this particular problem in matlab. I am trying to map this matrix or possible array BeansRice (see below) Beans={0:1,0:1,0:2,0:2,0:2,0:2,0:1,0:1,0:2,0:2} [a ...
0
votes
1answer
31 views

Pull single records from csv file into excel

I have a 2 gig csv file that I want to read into an excel vba macro process one record at a time, or one datum at a time. How can I? Can I?
1
vote
2answers
231 views

faster way to limit records between range in sql server

I have a large number of records in my table , and i want records page wise between limits,but for that we have only one solution WITH data AS ( SELECT ID ,YourColumn ...
0
votes
1answer
44 views

OutOfMemoryException when loading large table into DataSet

I would like retrieve data from a SQL Server table containing 2M records. I am using the Devexpress GridControl and have tried a simple code like this: DataTable dt = new DataTable(); String ...
0
votes
1answer
57 views

How to deal with this error?

I'm dealing with very long lists, and large trees. Sometimes I would find this error: surgery a;; Characters 8-9: surgery a;; ^ Error: This expression has type int t/1044 but an ...
0
votes
1answer
92 views

Large Data Array manipulations in MATLAB

I have a large data set in an array <1x43 cell>. The data size is really large, these are some of the cell dimensions - 5 are <1x327680 double>, 11 are <1x1376256 double> I am attempting to ...
0
votes
1answer
212 views

Too slow or out of memory problems in Machine Learning/Data Mining [closed]

EDIT: An attempt to rephrase myself: Tools like R, Weka are feature-rich but are slow and limited in size of data they can work with. Tools like Mahout, Vowpal Wabbit (VW) and its extension AllReduce ...
0
votes
1answer
384 views

ASP.NET MVC4 Error during serialization or deserialization JSON - big data

I am writing to you with an error in website: Error during serialization or deserialization using the JSON JavaScriptSerializer. The length of the string exceeds the value set on the maxJsonLength ...

1 2 3 4 5 7