Welcome to the Cloudera Community

Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Who agreed with this topic

cloudera-director update aws.reference.conf - Not able to update workers using director client.

avatar
Rising Star

we have upper limit for EC2 machines under d2.2x category but no such limit for i2.x EC2.

 

Here is what I did.

 

Started Cluster using director bootstrap command with just one worker of type d2.2x.

 

Now i am trying to update my cluster with 2 new worker of type i2.x EC2. I am still receving old error which i was getting with d2.2x.

 

com.cloudera.director.aws.shaded.com.amazonaws.AmazonServiceException: You have requested more instances (2) than your current instance limit of 1 allows for the specified instance type. Please visit http://aws.amazon.com/contact-us/ec2-request to request an adjustment to this limit. (Service: AmazonEC2; Status Code: 400; Error Code: InstanceLimitExceeded; Request ID: c999a493-11e1-4b55-b07f-fdc717310943)
--------------------------------------------------

 

my conf is like below :

 

## exisitng worker

workers {
count: 1
minCount: 1

instance: ${instances.d22x} {

tags {
group: worker
}
}

roles {
HDFS: [DATANODE]
YARN: [NODEMANAGER]
HBASE: [REGIONSERVER]
}

}


#### my new workers
workers2 {
count: 3
minCount: 3

instance: ${instances.i2x} {

tags {
group: worker2
}
}

roles {
HDFS: [DATANODE]
YARN: [NODEMANAGER]
HBASE: [REGIONSERVER]
}

}

 

 

 

 

 

 

 

 

 

Who agreed with this topic