...
만약 복제 중 타깃 노드가 전원장애로 인해 갑자기 다운된다면 디스크 캐쉬 영역이 배터리 백업 장치에 의해 백업되어 있지 않을 경우 데이터 유실이 발생할 수 있습니다. 따라서 복제 복제에선 이를 미연에 방지하기 위해 데이터를 타깃의 디스크에 쓰는 과정에서 데이터를 미디어에 기록하고 난 후 flush 동작을 항상 수반하여 데이터 유실을 방지 합니다.
Info |
---|
You should only disable device flushes when running bsr on devices with a battery-backed write cache (BBWC). Most storage controllers allow to automatically disable the write cache when the battery is depleted, switching to write-through mode when the battery dies. It is strongly recommended to enable such a feature. |
BBWC 가 장착된 스토리지 장치에선 디스크 플러시 동작을 굳이 할 필요가 없으므로 다음과 같이 플러시를 비활성화 할 수 있도록 옵션을 제공합니다.
Code Block |
---|
resource <resource> disk { disk-flushes no; md-flushes no; ... } ... } |