您好,登錄后才能下訂單哦!
本篇內容介紹了“PostgreSQL中怎么使用snapshot操作接口函數”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
1、創建快照,當BLOCK發生變更時,變更之前的BLOCK(舊版本),寫入*.snapmap.SNAP_ID file
文件中。直到snapshot被刪除。
/* * Create new snapshot. Starting from this moment Postgres will store original copies of all updated pages. * Them will be stored in shanpshot file (*.snap.SNAP_ID and addressed through *.snapmap.SNAP_ID file) until * snapshot is deleted by sfs_remove_snapshot function or new snapshot is created. */ extern SnapshotId sfs_make_snapshot(void);
2、刪除snapshot.
/* * Remove snapshot with all it's files */ extern void sfs_remove_snapshot(SnapshotId sid);
3、將數據庫恢復到指定snapshot.
/* * Reset database state to the paritcular snapshot. * It will be not possible any more to recover to any of more recent snashots or to the most recent database state. */ extern void sfs_recover_to_snapshot(SnapshotId sid);
4、查看數據庫過去的某個狀態。(并不是恢復到過去的狀態)
/* * Temporary switch instance to the particular snashot. It will be possible to return back to the most recent database state or to switch to any other snapshot */ extern void sfs_switch_to_snapshot(SnapshotId sid);
5、僅僅將當前的BACKEND PID,切換到數據庫過去某個SNAPSHOT ID的狀態,而不是將所有BACKEND切換到過去的某個狀態。
/* * Set snapshot for backend, unlike sfs_switch_to_snapshot function, it switchces snapshot for the current backend and not for all server instance. */ extern void sfs_set_backend_snapshot(SnapshotId sid);
這些接口與ZFS的SNAPSHOT功能非常類似。
“PostgreSQL中怎么使用snapshot操作接口函數”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。