I am using the follow to open:

db.open("db.kch#tune_defrag=10000", DB.OWRITER | DB.OCREATE)

I am putting and removing elements. At the end of execution, the database is "empty", the count() function returns 0, because I remove all elements. Why the file size always increase when I repeat the test? Is it possible to run something like "garbage collector" to clean the removed registers? If I execute the same test 100 times, I have a 500 MB size database, even I have only 2 records.

I tried to put the "tune_defrag=10000" but I think it didn't work fine.

Obs.: a only register is less than 1K, I don't understand why the registers take so much space in disk.

Thanks for any help

link|improve this question

78% accept rate
feedback

3 Answers

Try this:

db.kch#dfunit=8

That means the KC runs defrag for every 8 fragmentation detected, and 8 is actually recommended by Mikio.

Available options are listed here, however it could use some polish.

http://fallabs.com/kyotocabinet/command.html

link|improve this answer
Thanks so much. I'll try. – Felipe Micaroni Lalli Feb 14 '11 at 20:41
feedback

I haven't used this particular db but in some other ones a hack to resolve this issue is to copy the db into a new one, and then delete the old one. After making sure it copied well :).

I've implemented this process into production systems, as long as it is coded really really well it should work.

link|improve this answer
hahah, very creative solution! it seems to work, but it's a little dirty, isn't it? – Felipe Micaroni Lalli Dec 21 '10 at 5:02
feedback

From a cursory look through the kyoto documentation it doesn't appear that you have any way to resize or otherwise clean the database of deleted records... or really to manage it in any way shape or form.

That project looks like it is a long way off from being "production ready". If you really want to implement it, I'd suggest contacting the project owners (http://fallabs.com/) and seeing if they have any plans for some much needed utility functions.

Otherwise, I'd suggest moving to a different nosql style database that is a bit more mature.

link|improve this answer
Sorry, I really don't think so. – Felipe Micaroni Lalli Dec 1 '10 at 11:07
@Spamkids: Don't think so about what part? (just trying to understand). – Chris Lively Dec 1 '10 at 14:36
I made some tests here and I found out an interesting fact: if I kill the process (with kill or kill -9) when I back - tcharam! - the database is fucking small. Because the database turned on its "auto recover" as said in the official documentation. I saw an internal variable and the "reorganized" is set to 1 (if I close everything softly it was always 0). So, I think it is possible to force something like a reorganization. I just don't know how. It is not a insoluble problem, I'm sure about that. I just didn't find out how to solve. – Felipe Micaroni Lalli Dec 2 '10 at 1:19
feedback

Your Answer

 
or
required, but never shown

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