몽골인
0.2.1
유지 관리되지 않습니다. 대신 https://github.com/utilitywarehouse/streaming-mongo-burs/를 사용하십시오.
이 도구는 DB가 AWS S3에서 실행되는 동안 MongoDB 컬렉션을 백업하거나 복원할 수 있습니다.
go get -u github.com/utilitywarehouse/mongolizer
mongolizer --help
일정에 따라 백업을 실행하는 도커 컨테이너를 배포할 수 있습니다(기본값은 매일 오전 10시 30분).
백업 상태는 /var/data/mongolizer/state.db
의 boltdb 파일에 보관됩니다.
상태 엔드포인트는 0.0.0.0:8080/__/health
에서 사용할 수 있으며 지난 13시간 동안 성공적인 백업이 있었던 경우 정상으로 보고됩니다.
계측 엔드포인트는 0.0.0.0:8080/__/metrics
에서 사용할 수 있으며, 이전 백업 결과에 따라 mongolizer_status
게이지 값이 1 또는 0인 프롬 게이지가 노출됩니다. 게이지에는 database
및 컬렉션 labels
지정되어 있습니다.
지난 13시간 동안 백업이 발견되지 않으면 초기 백업이 실행됩니다.
# docker run --rm mongolizer /mongolizer scheduled-backup --help
Usage: mongolizer scheduled-backup [OPTIONS] COLLECTIONS
backup a set of mongodb collections
Arguments:
COLLECTIONS="foo/content,foo/bar" Collections to process (comma separated /) ($MONGODB_COLLECTIONS)
Options:
--cron="30 10 * * *" Cron expression for when to run ($CRON)
--dbPath="/var/data/mongolizer/state.db" Path to store boltdb file ($DBPATH)
--run=true Run backups on startup? ($RUN)
지속적 볼륨을 갖춘 롤링 몽고 + 메트릭 스크래핑을 갖춘 몽고라이저의 전체 예
# A headless service to create DNS records
apiVersion: v1
kind: Service
metadata:
annotations:
service.alpha.kubernetes.io/tolerate-unready-endpoints: "true"
prometheus.io/scrape: 'true'
prometheus.io/path: /__/metrics
prometheus.io/port: '8080'
name: mongo
labels:
app: mongo
spec:
ports:
- port: 8080
targetPort: 8080
name: mongolizer
- port: 27017
targetPort: 27017
name: client
clusterIP: None
selector:
app: mongo
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: mongo
spec:
replicas: 1
template:
metadata:
name: mongo
labels:
app: mongo
spec:
imagePullSecrets:
- name: dockerhub-key
containers:
- name: mongolizer
image: registry.uw.systems/system/mongolizer:latest
imagePullPolicy: Always
ports:
- containerPort: 8080
volumeMounts:
- name: data
mountPath: "/var/data/mongolizer/"
subPath: "mongolizer"
env:
- name: MONGODB_COLLECTIONS
value: "db/collection,db/collection2"
- name: MONGODB
value: "mongo:27017"
- name: AWS_ACCESS_KEY_ID
value: ""
- name: AWS_SECRET_ACCESS_KEY
value: ""
- name: S3_BUCKET
value: "backup-bucket"
- name: S3_DIR
value: "/"
- name: mongo
image: mongo
ports:
- containerPort: 27017
volumeMounts:
- name: data
mountPath: /data/db
subPath: "mongodb"
volumes:
- name: data
persistentVolumeClaim:
claimName: mongo-ebs-pvc
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: mongo-ebs-pvc
annotations:
volume.beta.kubernetes.io/storage-class: ebs-gp2
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 20Gi
# docker run --rm mongolizer /mongolizer restore --help
Usage: mongolizer restore [OPTIONS]
restore a set of mongodb collections
Options:
--collections="foo/content,foo/bar" Collections to process (comma separated /) ($MONGODB_COLLECTIONS)
--date="2006-01-02T15-04-05" Date to restore backup from
측정항목을 얻으려면 다음과 유사한 쿼리를 사용할 수 있습니다.
1 - avg(mongolizer_status{kubernetes_namespace="default"}) by (app, database, collection) < bool 1
예시 알림