vote up 5 vote down star
1

We happily use SVN for SCM at work. Currently I've got our binary assets in the same SVN repository as our code. SVN supports very large files (it transmits them 'streamily' to keep memory usage sane), but it is SLOOWWWWW.

What asset management software do you recommend, for about a GB (and growing) worth of assets? We would prefer branching and merging (different assets & config files go to different customers).

flag

Duplicate of: stackoverflow.com/questions/275147/… – Greg Hewgill Nov 9 '08 at 18:22
the first paragraph is shared, the questions are completely different. – Dustin Getz Nov 11 '08 at 5:30

5 Answers

vote up 0 vote down check

The use of Subversion should be limited to text files because keeping binary files in there doesn't add much benefit. For binary files, look into different backup management software. For starters, you can create a folder for each date and store them on external harddrive. Even if you take a daily backup for an year, you can fit in a my book.

Edit: The software/hardware choice really depends on the scale, your IT dept, budget and needs. The cheap and quick way might be to buy an external drive and get a consumer backup software. PC Magazine thinks Genie Backup Manager Pro is good (I've never heard of it). If it's something important for work, you can do something like a NAS from Dell connected by fast switch (so files copy fast), and use things like Backup Exec or UltraBac, and also rent a remote rack space so you can park the second NAS for remote backup.

link|flag
recommend any asset management software, per original question? – Dustin Getz Nov 12 '08 at 13:06
vote up 1 vote down

Please be very aware that it is almost impossible to merge binary files! At least automatically. At least I've never heard of a program that supports three-way merging on a binary format. Let alone conflict resolving.

That's why most asset management tools don't have branching, since it makes little sense since you can't merge again. Locking and linear history is better. If you want to "branch", then make a copy of the file with history.

link|flag
vote up 0 vote down

Git has quite good performance and can be used in an SVN-like centralized environment, or distributed environments.

link|flag
vote up 0 vote down

Perforce is the only version control system I've heard being used for huge files and whole projects. It's free for two seats, but pretty expensive for more users (around $900 per seat). I've heard it can handle repositories as large as a terabyte.

git might be another option. It behaves somewhat differently from SVN, but is made for bigger projects (e.g. the Linux kernel). I'm not sure if it's good for big binary files.

link|flag
With GIT and Adobe Flash projects (45 mb .FLA files), I am begun seeing fatal: Out of memory, malloc failed. I have 2 GB in my machines, so I guess GIT is not good at handling large files. – neoneye Nov 14 at 13:16
vote up -1 vote down

@Hugo, well I want merging on the text config files, and for binary assets I don't really care about merging diffs of a single file but I'd like to be able to merge trees (additions and deletions)

link|flag
this should be added as a comment to hugo's answer, not an answer itself. – nickf Nov 12 '08 at 2:45
nit much? I'd rather it be visible so more people don't ask the same question. – Dustin Getz Nov 12 '08 at 13:05
Then edit your question. This is a non-answer, -1 – Carl Meyer Sep 3 at 22:01

Your Answer

Get an OpenID
or

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