Created
April 15, 2012 21:44
-
-
Save mattdeboard/2394966 to your computer and use it in GitHub Desktop.
Custom bootstrap for using Cascalog in emacs to address a memory issue I was having.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (ns doop.bootstrap | |
| (:use cascalog.playground)) | |
| (defn my-bootstrap-emacs [] | |
| "Custom bootstrap to tweak the hadoop job config for cascalog, to help | |
| manage memory." | |
| (bootstrap-emacs) | |
| (alter-var-root #'cascalog.conf/*JOB-CONF* (fn [& ignored] | |
| {"io.sort.mb" 1}))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment