Firestore の Document を定期的にバックアップする
6094 ワード
公式ドキュメントが充実しているので、基本的には以下を参考にすれば済みます。
- GCS への定期的なエクスポート: https://firebase.google.com/docs/firestore/solutions/schedule-export
- それを BigQuery で色々する: https://cloud.google.com/bigquery/docs/loading-data-cloud-firestore
- gcloud コマンドによる操作: https://firebase.google.com/docs/firestore/manage-data/export-import
昔は GAE のインスタンスを作って cron job を定義して...という作業をしていましたが、今は☝️に書いた感じで済みます。
定期的なエクスポートの部分だけ、TypeScript のサンプルコードを載せます。
sample.ts
export const exportFirestoreFunc = functions.region('asia-northeast1').pubsub
.schedule('every day 05:00')
.timeZone('Asia/Tokyo')
.onRun(async _ => await exportToStorage())
async function exportToStorage(): Promise<void> {
const admin = await import('firebase-admin')
admin.initializeApp()
const gcpProjectId = admin.instanceId().app.options.projectId
const bucket = `gs://${gcpProjectId}.appspot.com`
const client = new admin.firestore.v1.FirestoreAdminClient()
const databaseName = client.databasePath(gcpProjectId, '(default)')
try {
const res : any[] = await client.exportDocuments({
name: databaseName,
outputUriPrefix: bucket,
collectionIds: ['foo', 'bar']
})
console.info(`Operation Name: ${res[0]['name']}`)
} catch (err) {
console.error(err)
throw new Error('Export operation failed')
}
}
Author And Source
この問題について(Firestore の Document を定期的にバックアップする), 我々は、より多くの情報をここで見つけました https://qiita.com/sensuikan1973/items/e7711886b576674b0b07著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .