DebugBackupRAW folder

    Joined
    Aug 2, 2013
    Messages
    13
    Reaction score
    0
    Anyone know what this folder would be for?
    I don't see it on any other server i have been admin on or have ftp access to,

    It seams to grow at a alarming rate of 10 gigs a day
     

    AndyP

    Customer Experience Manager
    Joined
    Aug 15, 2013
    Messages
    1,199
    Reaction score
    264
    • Schine
    • Wired for Logic
    Edit your server.cfg to:
    Code:
    DEBUG_SEGMENT_WRITING = false //Debugs correctness of writing of segments (costs server performance)
    It is an old option to force-roll all files on every single chunk being written.
    This was related to an old rollback-bug we had in mid of 2012, this option does not have any effect anymore, except keeping track of any chunk ever written to force-rollback on missing chunks.
    Also its save to delete the "DebugBackupRAW" once you turned off the option.


    Make sure you use/enable
    Code:
    FORCE_DISK_WRITE_COMPLETION = true //forces writing operations of raw data to disk directly after operation. For some OS this prevents raw data corruption
    once you encounter any frequent rollbacks you didn't have before.

    - Andy