I am using AWS EMR cluster which i am using to do sentiment analysis on the reviews. My EMR cluster says status is "STARTING" for hours together.
I have done the following steps:
- Created IAM user and assigned AdministrativeAccess policy group.
- Created S3 buckets for holding input, logs and output
Created a cluster in AWS CLI using the following command:
aws emr create-cluster --release-label emr-4.1.0 --service-role="EMR_DefaultRole" --ec2-attributes AvailabilityZone=us-west-1a,InstanceProfile="EMR_EC2_DefaultRole" --instance-groups InstanceGroupType=MASTER,InstanceCount=1,InstanceType=m1.medium InstanceGroupType=CORE,InstanceCount=2,InstanceType=m1.medium --name "Yelp Review Sentiment Analysis Cluster" --log-uri s3://mybucket/logs/ --enable-debugging --tags Name=emr --bootstrap-actions Path=s3://mybucket/bootstrap-mrjob.sh,Name="Setup mrjob / text analytics"
My cluster is created but the status is not changing.Is there any steps i missed?