active questions tagged huge-files - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T03:23:44Zhttp://stackoverflow.com/feeds/tag/huge-fileshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1896674/python-how-to-read-huge-text-file-into-memory3Python: How to read huge text file into memoryasmaier2009-12-13T14:34:04Z2009-12-13T22:44:28Z
<p>I'm using Python 2.6 on a Mac Mini with 1GB RAM. I want to read in a huge text file</p>
<pre><code>$ ls -l links.csv; file links.csv; tail links.csv
-rw-r--r-- 1 user user 469904280 30 Nov 22:42 links.csv
links.csv: ASCII text, with CRLF line terminators
4757187,59883
4757187,99822
4757187,66546
4757187,638452
4757187,4627959
4757187,312826
4757187,6143
4757187,6141
4757187,3081726
4757187,58197
</code></pre>
<p>So each line in the file consists of a tuple of two comma separated integer values.
I want to read in the whole file and sort it according to the second column. I know, that I could do the sorting without reading the whole file into memory. But I thought for a file of 500MB I should still be able to do it in memory since I have 1GB available.</p>
<p>However when I try to read in the file, Python seems to allocate a lot more memory than is needed by the file on disk. So even with 1GB of RAM I'm not able to read in the 500MB file into memory.
My Python code for reading the file and printing some information about the memory consumption is:</p>
<pre><code>#!/usr/bin/python
# -*- coding: utf-8 -*-
import sys
infile=open("links.csv", "r")
edges=[]
count=0
#count the total number of lines in the file
for line in infile:
count=count+1
total=count
print "Total number of lines: ",total
infile.seek(0)
count=0
for line in infile:
edge=tuple(map(int,line.strip().split(",")))
edges.append(edge)
count=count+1
# for every million lines print memory consumption
if count%1000000==0:
print "Position: ", edge
print "Read ",float(count)/float(total)*100,"%."
mem=sys.getsizeof(edges)
for edge in edges:
mem=mem+sys.getsizeof(edge)
for node in edge:
mem=mem+sys.getsizeof(node)
print "Memory (Bytes): ", mem
</code></pre>
<p>The output I got was:</p>
<pre><code>Total number of lines: 30609720
Position: (9745, 2994)
Read 3.26693612356 %.
Memory (Bytes): 64348736
Position: (38857, 103574)
Read 6.53387224712 %.
Memory (Bytes): 128816320
Position: (83609, 63498)
Read 9.80080837067 %.
Memory (Bytes): 192553000
Position: (139692, 1078610)
Read 13.0677444942 %.
Memory (Bytes): 257873392
Position: (205067, 153705)
Read 16.3346806178 %.
Memory (Bytes): 320107588
Position: (283371, 253064)
Read 19.6016167413 %.
Memory (Bytes): 385448716
Position: (354601, 377328)
Read 22.8685528649 %.
Memory (Bytes): 448629828
Position: (441109, 3024112)
Read 26.1354889885 %.
Memory (Bytes): 512208580
</code></pre>
<p>Already after reading only 25% of the 500MB file, Python consumes 500MB. So it seem that storing the content of the file as a list of tuples of ints is not very memory efficient.
Is there a better way to do it, so that I can read in my 500MB file into my 1GB of memory?</p>
http://stackoverflow.com/questions/159521/text-editor-to-open-big-giant-huge-large-text-files35Text editor to open big (giant, huge, large) text filesYuvi2008-10-01T20:22:35Z2009-12-09T11:04:57Z
<p>By big, I mean atleast a hundred megabytes big? </p>
<p>While 100+ megabyte textfiles aren't common (atleast I hope so!), I have an app that's exporting data as XML and needs to be debugged. So, need to look through the XML, and can't do that if the editor is crashy.</p>
http://stackoverflow.com/questions/1009179/net-transforming-large-xml-docs-with-xsl2.Net Transforming large XML docs with XSLJay2009-06-17T19:49:39Z2009-11-02T04:43:15Z
<p>Question: What is the best way to transform a large XML document (>200MB) using XSL in .Net?</p>
<p>Background:
I have a application that feeds me large data files, I cannot change the format. In the past I have been able to translate smaller data files with no issues.</p>
<p>Originally I was working with the XML as strings and was running out of memory very quickly. I switched my code and now I deal with MemoryStream's to read, transform using a stylesheet and then save off a copy of the output to a separate location using filestreams.</p>
<p>Applying of the stylesheet causes the application to consume upwards of 1gb memory and eventually crashes.</p>
<p>I know I could programatically process the XML using the DOM but I would really like to stick with a generic method of applying an XSL stylesheet. </p>
<p>Does anyone have any pointers on how I could better manage memory while processing the XSL transformation? Below is a snippet of code where i am applying the transformation:</p>
<pre><code>'xmlData is a memory stream passed into a function
'...
Dim strfilepath As String = appConfigSettings.FilePaths.XslFilePath & "\" & odtrow.formatterXsl
Dim xslt As New System.Xml.Xsl.XslCompiledTransform()
xslt.Load(strfilepath)
Dim xmlRead As XmlReader = XmlReader.Create(xmlData)
newStream = New MemoryStream()
xslt.Transform(xmlRead, Nothing, newStream) 'here is where it fails
newStream.Position = 0
'...
</code></pre>
<p>C# or VB examples are fine I can work with either...This app was a hand me down so not criticism for the vb please :)
-J</p>
http://stackoverflow.com/questions/1591723/linux-text-editor-for-working-with-huge-files6Linux text editor for working with huge filesRichard2009-10-19T23:37:10Z2009-10-20T04:09:23Z
<p>Hello,</p>
<p>I have a huge (~2GB) file that I need to navigate around. I don't actually need to edit it, just jump around efficiently.</p>
<p>I tried vim but it choked.</p>
<p>Any recommendations for working with huge files on Linux?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/817749/cloud-huge-data-storage-options0Cloud HUGE data storage options?ToughPal2009-05-03T19:08:22Z2009-08-29T14:17:20Z
<p>Hi,</p>
<p>Does anyone have a good suggestion on how to do video recording?</p>
<p>We have a camera that can record and then stream live video to a server. So this means we can have 1000's of cameras sending data 24X7 for recording. We will store data for over 7 / 14 / 30 days depending on the package.</p>
<ul>
<li>Per day if a camera is sending data to the server then it will store 1.5GB.</li>
<li>So that means there is a traffic of 1.5GB / day / camera</li>
<li>Total monthly 45GB / month / camera (Data + bandwidth for one camera)</li>
</ul>
<p>Please let me know the most cost effective way to get this data stored? </p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1283948/viewing-large-text-file-in-a-browser0Viewing large text file in a browserMeLight2009-08-16T10:15:17Z2009-08-16T23:57:39Z
<p>Hi, I need to write a text file viewer (not the directory tree, but the actual file contents) for use in a browser. It will be used to view large files. I want to give the user the ability to actually ummm, browse the file, ie prev page & next page buttons, while each page will show only a portion of the file.</p>
<p>Two question:</p>
<ul>
<li>Is there anyway to pass the file descriptor through POST (or something) so that on each page I can keep reading from an already open file, and not starting all over again (again - huge files)</li>
<li>Is there a way to read the file backwards? Will be very useful for browsing back in a file.</li>
</ul>
<p>Any other implementation ideas are very welcome. Thanks</p>
http://stackoverflow.com/questions/1275409/search-replace-on-3000-row-25-column-spreadsheet0search & replace on 3000 row, 25 column spreadsheetDeca2009-08-14T00:25:03Z2009-08-14T02:20:19Z
<p>I'm attempting to clean up data in this (old) spreadsheet and need to remove things like single and double quotes, HTML tags and so on. Trouble is, it's a 3000 row file with 25 columns and every spreadsheet app I've tried (NeoOffice, MS Excel, Apple Numbers) chokes on it. Hard.</p>
<p>Any ideas on how else I can clean this thing up for import to MySQL? Clearly I could go through each record manually, row by row, but would like to avoid that if at all possible. Likewise, I could write a PHP script to handle it on import, but don't want to put the server into a death spiral either.</p>
http://stackoverflow.com/questions/290700/how-can-you-concatenate-two-huge-files-with-very-little-spare-disk-space5How can you concatenate two huge files with very little spare disk space?Adam Rosenfield2008-11-14T16:43:03Z2009-07-24T23:04:34Z
<p>Suppose that you have two huge files (several GB) that you want to concatenate together, but that you have very little spare disk space (let's say a couple hundred MB). That is, given <code>file1</code> and <code>file2</code>, you want to end up with a single file which is the result of concatenating <code>file1</code> and <code>file2</code> together byte-for-byte, and delete the original files.</p>
<p>You can't do the obvious <code>cat file2 >> file1; rm file2</code>, since in between the two operations, you'd run out of disk space.</p>
<p>Solutions on any and all platforms with free or non-free tools are welcome; this is a hypothetical problem I thought up while I was downloading a Linux ISO the other day, and the download got interrupted partway through due to a wireless hiccup.</p>
http://stackoverflow.com/questions/1063897/version-control-system-for-huge-files3Version control system for huge files?Ben Harper2009-06-30T14:08:10Z2009-06-30T14:31:28Z
<p>I am looking for a quick but not-so-dirty way to do snapshots of a bunch of files totaling about 80 gigs. The issue here is that many of the files are around 1 GB large.</p>
<p>What is the best free version control system for this type of thing?</p>
<p>I know ZFS is an option, but I'd rather try something else first.</p>
http://stackoverflow.com/questions/878591/xml-streaming-with-xproc1XML streaming with XProc.Pierre2009-05-18T16:34:33Z2009-06-07T08:38:47Z
<p>Hi all, I'm playing with <a href="http://www.w3.org/TR/xproc/" rel="nofollow">xproc</a>, the XML pipeline language and <a href="http://xmlcalabash.com/" rel="nofollow">http://xmlcalabash.com/</a>. I'd like to find an example for streaming large xml documents.
for example, given the following <strong>huge</strong> xml document:</p>
<pre><code><Books>
<Book>
<title>Book-1</title>
</Book>
<Book>
<title>Book-2</title>
</Book>
<Book>
<title>Book-3</title>
</Book>
<!-- many many.... -->
<Book>
<title>Book-N</title>
</Book>
</Books>
</code></pre>
<p>How should I proceed to loop (streaming) over x->N documents like</p>
<pre><code><Books>
<Book>
<title>Book-x</title>
</Book>
</Books>
</code></pre>
<p>and treat each document with a xslt ? is it possible with xproc ?</p>
http://stackoverflow.com/questions/862613/importing-wikipedia-database-dumb-kills-navicat-anyone-got-any-ideas1Importing wikipedia database dumb - kills navicat - anyone got any ideas?Ali2009-05-14T10:26:38Z2009-05-14T13:13:40Z
<p>Ok guys I've downloaded the wikipedia xml dump and its a whopping 12 GB of data :\ for one table and I wanted to import it into mysql databse on my localhost - however its a humongous file 12GB and obviously navicats taking its sweet time in importing it or its more likely its hanged :(.</p>
<p>Is there a way to include this dump or atleast partially at most you know bit by bit.</p>
<p><hr /></p>
<p>Let me correct that its 21 GB of data - not that it helps :\ - does any one have any idea of importing humongous files like this into MySQL database.</p>
http://stackoverflow.com/questions/744256/reading-huge-file-in-python7Reading Huge File in Pythonmarcog2009-04-13T15:28:04Z2009-04-13T17:01:17Z
<p>I have a 384MB text file with 50 million lines. Each line contains 2 space-separated integers: a key and a value. The file is sorted by key. I need an efficient way of looking up the values of a list of about 200 keys in Python.</p>
<p>My current approach is included below. It takes 30 seconds. There must be more efficient Python foo to get this down to a reasonable efficiency of a couple of seconds at most.</p>
<pre><code># list contains a sorted list of the keys we need to lookup
# there is a sentinel at the end of list to simplify the code
# we use pointer to iterate through the list of keys
for line in fin:
line = map(int, line.split())
while line[0] == list[pointer].key:
list[pointer].value = line[1]
pointer += 1
while line[0] > list[pointer].key:
pointer += 1
if pointer >= len(list) - 1:
break # end of list; -1 is due to sentinel
</code></pre>
<p>Coded binary search + seek solution (thanks kigurai!):</p>
<pre><code>entries = 24935502 # number of entries
width = 18 # fixed width of an entry in the file padded with spaces
# at the end of each line
for i, search in enumerate(list): # list contains the list of search keys
left, right = 0, entries-1
key = None
while key != search and left <= right:
mid = (left + right) / 2
fin.seek(mid * width)
key, value = map(int, fin.readline().split())
if search > key:
left = mid + 1
else:
right = mid - 1
if key != search:
value = None # for when search key is not found
search.result = value # store the result of the search
</code></pre>
http://stackoverflow.com/questions/561500/how-may-i-scroll-with-vim-into-a-big-file3How may I scroll with vim into a big file ?Luc M2009-02-18T15:27:43Z2009-02-18T15:39:14Z
<p>Hello,</p>
<p>I have a big file with thousands of lines of thousands of characters.</p>
<p>I move the cursor to 3000th character.</p>
<p>If I use <i>PageDown</i> or <i> <CTRL>-D</i>, the file will scroll but the cursor will come back to the first no-space character.</p>
<p>There's is an option to set to keep the cursor in the same column after a such scroll ?</p>
<p>I have the beavior with gvim on <i>Window</i>, vim on <i>OpenVMS</i> and <i>Cygwin</i>.</p>
<p>Regards</p>
http://stackoverflow.com/questions/470388/my-c-object-file-is-too-big1My C++ object file is too bigzarawesome2009-01-22T19:01:04Z2009-01-23T09:45:47Z
<p>I am working on a C++ program and the compiled object code from a single 1200-line file (which initializes a rather complex state machine) comes out to nearly a megabyte. What could be making the file so large? Is there a way I can find what takes space inside the object file?</p>
http://stackoverflow.com/questions/80833/nuking-huge-file-in-svn-repository6Nuking huge file in svn repositoryDarenW2008-09-17T07:35:25Z2008-09-18T21:34:40Z
<p>As the local subversion czar i explain to everyone to keep only source code and non-huge text files in the repository, not huge binary data files. Smaller binary files that are parts of tests, maybe. </p>
<p>Unfortunately i work with <em>humans</em>! Someone is likely to someday accidentally commit a 800MB binary hulk. This slows down repository operations. </p>
<p>Last time i checked, you can't delete a file from the repository; only make it not part of the latest revision. The repository keeps the monster for all eternity, in case anyone ever wants to recall the state of the repository for that date or revision number. </p>
<p>Is there a way to really delete that monster file and end up with a decent sized repository? I've tried the svnadmin dump/load thing but it was a pain.</p>