Skip to content

Instantly share code, notes, and snippets.

View ruxandraburtica's full-sized avatar

Ruxandra Burtica ruxandraburtica

  • Bucharest, Romania
View GitHub Profile
@ruxandraburtica
ruxandraburtica / cache_to_disk.py
Last active July 24, 2019 12:18
Cache function result to disk.
# Note that joblib must be installed first
# https://joblib.readthedocs.io/en/latest/installing.html
from joblib import Memory
import time
memory = Memory(location='/path/to/cache', verbose=0)
@memory.cache
EC2 SageMaker
t2.medium 0.0464 0.0464
m5.xlarge 0.192 0.269
m4.xlarge 0.2 0.28
c5.large 0.085 0.119
c4.2xlarge 0.398 0.557
c4.4xlarge 0.796 1.114
@ruxandraburtica
ruxandraburtica / mongodb-s3-backup.sh
Created November 5, 2017 14:23 — forked from eladnava/mongodb-s3-backup.sh
Automatically backup a MongoDB database to S3 using mongodump, tar, and awscli (Ubuntu 14.04 LTS)
#!/bin/sh
# Make sure to:
# 1) Name this file `backup.sh` and place it in /home/ubuntu
# 2) Run sudo apt-get install awscli to install the AWSCLI
# 3) Run aws configure (enter s3-authorized IAM user and specify region)
# 4) Fill in DB host + name
# 5) Create S3 bucket for the backups and fill it in below (set a lifecycle rule to expire files older than X days in the bucket)
# 6) Run chmod +x backup.sh
# 7) Test it out via ./backup.sh