Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Are there any editors that can edit multi-gigabyte text files, perhaps by only loading small portions into memory at once? It doesn't seem like Vim can handle it =(

share|improve this question
I've loaded really big data acquisition files in vim, and it handled them without problem. – ldigas May 26 '09 at 10:57
Depending on your editing needs, you may just be able to pipe it through something like sed or perl to do a search and replace. – El Yobo Jun 1 '10 at 1:57

14 Answers

up vote 14 down vote accepted

If you are on *nix (and assuming u have to modify only parts of file & not often !) ,you may split the files (using split command), edit them individually (awk/sed etc.) & concatenate them after you are done . eg. cat file2 file3 >> file1.

share|improve this answer
Great tip. I had a 13GB (152.000.000 lines) sql-file, and just using "split -l 1000000" then editing the one million line files where I wanted with vim worked great. Took 10 minutes just to split them. (I tried to open the original file with vim and that worked, but it was too slow to be usable.) – Claes Mogren Jan 28 '11 at 11:51

It may be plugins that are causing it to choke. (syntax highlighting, folds etc.)

you can run vim without plugins.

vim -u "NONE" hugefile.log

Its minimalist but it will at least give you the vi motions your used to.

syntax off

is another obvious one. Prune your install down and source what you need. You'll find out what it's capable of and if you need to accomplish a task via other means.

share|improve this answer
This still loads the whole file in RAM... – Totor Mar 12 at 10:32
@Totor yeah I would split the file first but that setting would quickly give you the best vim performance by turning off random autocommands. That was my point. Workstations with decent memory should be able to handle files approaching a gig. – michael Mar 13 at 23:48

I've tried to do that, mostly with files around 1 GB when I needed to make some small change to an SQL dump. I'm on Windows, which makes it a major pain. It's seriously difficult.

The obvious question is "why do you need to?" I can tell you from experience having to try this more than once, you probably really want to try to find another way.

So how do you do it? There are a few ways I've done it. Sometimes I can get vim or nano to open the file, and I can use them. That's a really tough pain, but it works.

When that doesn't work (as in your case) you only have a few options. You can write a little program to make the changes you need (for example, search & replaces). You could use a command line program that may be able to do it (maybe it could be accomplished with sed/awk/grep/etc?)

If those don't work, you can always split the file into chunks (something like split being the obvious choice, but you could use head/tail to get the part you want) and then edit the part(s) that need it, and recombine later.

Trust me though, try to find another way.

share|improve this answer
1  
Usually sed is your friend in cases like this. Your editor really doesn't like the thought of inserting a few characters at the top of a file and figuring out how to push everything else down. – le dorfier May 26 '09 at 1:45
@le dorfier: Yep. I used sed when I had to do a search / replace. When I had to delete a few lines from a file like that (a few insanely long lines) I managed to do it in vim, but as you can guess moving between lines (as well as the actual deletion) took quite a bit of time (seconds+ to respond and redraw). I wouldn't want to attempt adding even a few letters to one of those lines. – MBCook May 26 '09 at 1:49

You might want to check out this VIM plugin which disables certain vim features in the interest of speed when loading large files.

share|improve this answer

In the past I opened up to a 3 gig file with this tool http://csved.sjfrancke.nl/

share|improve this answer

Wow, never managed to get vim to choke, even with a GB or two. I've heard that UltraEdit (on Windows) and BBEdit (on Macs) are even more suitable for even-larger files, but I have no personal experience.

share|improve this answer

I've used FAR Commander's built-in editor/viewer for super-large log files.

share|improve this answer

I think it is reasonably common for hex editors to handle huge files. On Windows, I use HxD, which claims to handle files up to 8 EB (8 billion gigabytes).

share|improve this answer

I have used TextPad for large log files it doesn't have an upper limit.

share|improve this answer

In the past I've successfully used a split/edit/join approach when files get very large. For this to work you have to know about where the to-be-edited text is, in the original file.

share|improve this answer

Personally, I like UltraEdit. Here is their little spiel on large files.

share|improve this answer

The only thing I've been able to use for something like that is my favorite Mac hex editor, 0XED. However, that was with files that I considered large at tens of megabytes. I'm not sure how far it will go. I'm pretty sure it only loads parts of the file into memory at once, though.

share|improve this answer

I'm using vim 7.3.3 on Win7 x64 with the LargeFile plugin by Charles Campbell to handle multi-gigabyte plain text files. It works really well.

I hope you come right.

share|improve this answer

WinVi can handle files up to 2GB in size.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.