YARN-8296. Removed unique_component_support from YARN services.
Contributed by Suma Shivaprasad
This commit is contained in:
parent
989cfdc1e0
commit
2f2dd22aad
|
@ -221,7 +221,6 @@ POST URL - http://localhost:8088:/app/v1/services/hbase-app-1
|
||||||
{
|
{
|
||||||
"name": "regionserver",
|
"name": "regionserver",
|
||||||
"number_of_containers": 3,
|
"number_of_containers": 3,
|
||||||
"unique_component_support": "true",
|
|
||||||
"artifact": {
|
"artifact": {
|
||||||
"id": "hbase:latest",
|
"id": "hbase:latest",
|
||||||
"type": "DOCKER"
|
"type": "DOCKER"
|
||||||
|
|
|
@ -220,7 +220,7 @@ One or more components of the service. If the service is HBase say, then the com
|
||||||
|
|
||||||
|Name|Description|Required|Schema|Default|
|
|Name|Description|Required|Schema|Default|
|
||||||
|----|----|----|----|----|
|
|----|----|----|----|----|
|
||||||
|name|Name of the service component (mandatory). If Registry DNS is enabled, the max length is 63 characters. If unique component support is enabled, the max length is lowered to 44 characters.|true|string||
|
|name|Name of the service component (mandatory). If Registry DNS is enabled, the max length is 44 characters.|true|string||
|
||||||
|state|The state of the component|false|ComponentState||
|
|state|The state of the component|false|ComponentState||
|
||||||
|dependencies|An array of service components which should be in READY state (as defined by readiness check), before this component can be started. The dependencies across all components of a service should be represented as a DAG.|false|string array||
|
|dependencies|An array of service components which should be in READY state (as defined by readiness check), before this component can be started. The dependencies across all components of a service should be represented as a DAG.|false|string array||
|
||||||
|readiness_check|Readiness check for this component.|false|ReadinessCheck||
|
|readiness_check|Readiness check for this component.|false|ReadinessCheck||
|
||||||
|
@ -638,7 +638,6 @@ POST URL - http://localhost:8088:/app/v1/services/hbase-app-1
|
||||||
{
|
{
|
||||||
"name": "regionserver",
|
"name": "regionserver",
|
||||||
"number_of_containers": 3,
|
"number_of_containers": 3,
|
||||||
"unique_component_support": "true",
|
|
||||||
"artifact": {
|
"artifact": {
|
||||||
"id": "hbase:latest",
|
"id": "hbase:latest",
|
||||||
"type": "DOCKER"
|
"type": "DOCKER"
|
||||||
|
|
|
@ -65,7 +65,6 @@ export default DS.Model.extend({
|
||||||
artifactType: 'DOCKER',
|
artifactType: 'DOCKER',
|
||||||
launchCommand: '',
|
launchCommand: '',
|
||||||
dependencies: [],
|
dependencies: [],
|
||||||
uniqueComponentSupport: false,
|
|
||||||
configuration: null
|
configuration: null
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -199,9 +198,6 @@ export default DS.Model.extend({
|
||||||
cpus: record.get('cpus'),
|
cpus: record.get('cpus'),
|
||||||
memory: record.get('memory')
|
memory: record.get('memory')
|
||||||
};
|
};
|
||||||
if (record.get('uniqueComponentSupport')) {
|
|
||||||
json['unique_component_support'] = "true";
|
|
||||||
}
|
|
||||||
if (record.get('configuration')) {
|
if (record.get('configuration')) {
|
||||||
json['configuration'] = record.get('configuration');
|
json['configuration'] = record.get('configuration');
|
||||||
}
|
}
|
||||||
|
|
|
@ -97,12 +97,6 @@
|
||||||
<label class="required">Launch Command</label>
|
<label class="required">Launch Command</label>
|
||||||
{{input type="text" class="form-control" value=currentComponent.launchCommand}}
|
{{input type="text" class="form-control" value=currentComponent.launchCommand}}
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
|
||||||
<label class="checkbox-inline">
|
|
||||||
{{input type="checkbox" checked=currentComponent.uniqueComponentSupport}}
|
|
||||||
Unique Component Support
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
||||||
|
|
Loading…
Reference in New Issue