Skip to content

Instantly share code, notes, and snippets.

@nlathia
nlathia / Datastore to Cloud Storage MapReduce
Last active July 5, 2018 05:41
GAE MapReduce Datastore to Cloud Storage
import webapp2
from google.appengine.ext import ndb
from mapreduce import mapreduce_pipeline
from mapreduce import base_handler
PROJECT_ID = 'your-project-name'
GS_BUCKET = 'your-project-bucket-name'
ENTITY_KIND = 'your.Entity'
PIPELINE_NAME = 'some-name'