-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Region #24
Comments
For now i just monkeypatch lemur: (defn emr-client [aws-creds]
(doto (AmazonElasticMapReduceClient. aws-creds)
(.setEndpoint "elasticmapreduce.eu-west-1.amazonaws.com"))) Is there better way? ) |
You can avoid the monkeypatch, using this trick in your jobdef: (require '[com.climate.services.aws.emr :as emr] (import (defn eu-west-1-emr-client ... (with-bindings {#'emr/emr (aws/aws eu-west-1-emr-client See this discussion with more detail: marc On Tue, Mar 4, 2014 at 12:23 AM, Andrew Rudenko [email protected]:
|
Hello.
How to set region for EMR cluster?
The text was updated successfully, but these errors were encountered: