View multipart_upload.go
package main | |
import ( | |
"bytes" | |
"fmt" | |
"io" | |
"log" | |
"mime/multipart" | |
"net/http" | |
"os" |
View pig_test.py
from boto.emr.connection import EmrConnection | |
from boto.emr.step import InstallPigStep, PigStep | |
AWS_ACCESS_KEY = '' # REQUIRED | |
AWS_SECRET_KEY = '' # REQUIRED | |
conn = EmrConnection(AWS_ACCESS_KEY, AWS_SECRET_KEY) | |
pig_file = 's3://elasticmapreduce/samples/pig-apache/do-reports2.pig' | |
INPUT = 's3://elasticmapreduce/samples/pig-apache/input/access_log_1' | |
OUTPUT = '' # REQUIRED, S3 bucket for job output |