10
votes
10answers
354 views
Fastest way to search 1GB+ a string of data for the first occurence of a pattern in Python.
There's a 1 Gigabyte string of arbitrary data which you can assume to be equivalent to something like:
1_gb_string=os.urandom(1*gigabyte)
We will be searching this string, 1_gb_ …
0
votes
5answers
59 views
mysql delete every other rows except the rows number in a given list
so basically here's what i want to do: i have an account table, i have a list of acct_id: (3, 24, 515, 6326, 17), assuming i have about 100,000 accounts in the table, what's the mo …
1
vote
5answers
107 views
how to handle large lists of data
We have a part of an application where, say, 20% of the time it needs to read in a huge amount of data that exceeds memory limits. While we can increase memory limits, we hesitate …
2
votes
4answers
105 views
Is there a way to maintain a 200MB immutable data structure in memory and access it from a script?
I have a list of 9 million IPs and, with a set of hash tables, I can make a constant-time function that returns if a particular IP is in that list. Can I do it in PHP? If so, how?
0
votes
2answers
139 views
Oracle: Find previous record for a ranked list of forecasts
Hi I am faced with a difficult problem:
I have a table (oracle 9i) of weather forecasts (many 100's of millions of records in size.)
whose makeup looks like this:
stationid f …
1
vote
2answers
114 views
Bad idea to transfer large payload using web services?
I gather that there basically isn't a limit to the amount of data that can be sent when using REST via a POST or GET. While I haven't used REST or web services it seems that most …
1
vote
3answers
415 views
Graphing large amounts of data
In a product I work on, there is an iteration loop which can have anywhere between a few hundred to a few million iterations. Each iteration computes a set of statistic variables …
0
votes
2answers
63 views
How to add more than 500 entries to the datastore with put() in google app engine?
I tried adding batches of data in a list with a couple of calls to db.put(). But it still timeouts occasionally.
Anyone have some tips?
7
votes
9answers
478 views
What if 2^32 is just not enough?
Hi,
what if you have so many entries in a table, that 2^32 is not enough for your auto_increment ID within a given period (day, week, month, ...)?
What if the largest datatype MyS …
1
vote
1answer
71 views
Is it necessary to have mysqlcheck run when starting mysql?
I have a large (about 10 GB with a 20 GB innodb buffer pool) database, and have noticed that when I start it, for about the first half hour it's running, the database will periodic …
4
votes
11answers
356 views
Best way to store/retrieve millions of files when their meta-data is in a SQL Database
I have a process that's going to initially generate 3-4 million PDF files, and continue at the rate of 80K/day. They'll be pretty small (50K) each, but what I'm worried about is ho …
3
votes
5answers
502 views
mysql tables structure - one very large table or separate tables?
I'm working on a project which is similar in nature to website visitor analysis.
It will be used by 100s of websites with average of 10,000s to 100,000s page views a day each so t …
4
votes
6answers
617 views
How to avoid OOM (Out of memory) error when retrieving all records from huge table?
Hi all,
I am given a task to convert a huge table to custom XML file. I will be using Java for this job.
If I simply issue a "SELECT * FROM customer", it may return huge amount o …
0
votes
7answers
121 views
How would you handle making an array or list that would have more entries than the standard implementation would allow you to access
I am trying to create an array or list that could handle in theory, given adequate hardware and such, as many as 100^100 BigInteger entries. The problem with using an array or sta …
2
votes
3answers
111 views
STXXL equivalent in Java
I'm searching a collection framework designed for huge datasets in Java that behaves transparently, like STXXL does for C++.
It should transparently swap to disk, but in a much mo …
