flexibleengine.MrsHybridClusterV1
Explore with Pulumi AI
Manages a MRS hybrid cluster resource cluster within FlexibleEngine.
!> Warning: It has been deprecated, please use flexibleengine.MrsClusterV2
instead.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as flexibleengine from "@pulumi/flexibleengine";
const exampleVpc = new flexibleengine.VpcV1("exampleVpc", {cidr: "192.168.0.0/16"});
const exampleSubnet = new flexibleengine.VpcSubnetV1("exampleSubnet", {
cidr: "192.168.0.0/24",
gatewayIp: "192.168.0.1",
vpcId: exampleVpc.vpcV1Id,
});
const cluster1 = new flexibleengine.MrsHybridClusterV1("cluster1", {
availableZone: "eu-west-0a",
clusterName: "mrs-hybrid-cluster-acc",
clusterVersion: "MRS 2.0.1",
componentLists: [
"Hadoop",
"Storm",
"Spark",
"Hive",
],
vpcId: exampleVpc.vpcV1Id,
subnetId: exampleSubnet.vpcSubnetV1Id,
clusterAdminSecret: "Cluster@123",
masterNodeKeyPair: "KeyPair-ci",
masterNodes: {
nodeNumber: 1,
flavor: "s3.2xlarge.4.linux.mrs",
dataVolumeType: "SATA",
dataVolumeSize: 100,
dataVolumeCount: 1,
},
analysisCoreNodes: {
nodeNumber: 1,
flavor: "s3.xlarge.4.linux.mrs",
dataVolumeType: "SATA",
dataVolumeSize: 100,
dataVolumeCount: 1,
},
streamingCoreNodes: {
nodeNumber: 1,
flavor: "s3.xlarge.4.linux.mrs",
dataVolumeType: "SATA",
dataVolumeSize: 100,
dataVolumeCount: 1,
},
});
import pulumi
import pulumi_flexibleengine as flexibleengine
example_vpc = flexibleengine.VpcV1("exampleVpc", cidr="192.168.0.0/16")
example_subnet = flexibleengine.VpcSubnetV1("exampleSubnet",
cidr="192.168.0.0/24",
gateway_ip="192.168.0.1",
vpc_id=example_vpc.vpc_v1_id)
cluster1 = flexibleengine.MrsHybridClusterV1("cluster1",
available_zone="eu-west-0a",
cluster_name="mrs-hybrid-cluster-acc",
cluster_version="MRS 2.0.1",
component_lists=[
"Hadoop",
"Storm",
"Spark",
"Hive",
],
vpc_id=example_vpc.vpc_v1_id,
subnet_id=example_subnet.vpc_subnet_v1_id,
cluster_admin_secret="Cluster@123",
master_node_key_pair="KeyPair-ci",
master_nodes={
"node_number": 1,
"flavor": "s3.2xlarge.4.linux.mrs",
"data_volume_type": "SATA",
"data_volume_size": 100,
"data_volume_count": 1,
},
analysis_core_nodes={
"node_number": 1,
"flavor": "s3.xlarge.4.linux.mrs",
"data_volume_type": "SATA",
"data_volume_size": 100,
"data_volume_count": 1,
},
streaming_core_nodes={
"node_number": 1,
"flavor": "s3.xlarge.4.linux.mrs",
"data_volume_type": "SATA",
"data_volume_size": 100,
"data_volume_count": 1,
})
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/flexibleengine/flexibleengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleVpc, err := flexibleengine.NewVpcV1(ctx, "exampleVpc", &flexibleengine.VpcV1Args{
Cidr: pulumi.String("192.168.0.0/16"),
})
if err != nil {
return err
}
exampleSubnet, err := flexibleengine.NewVpcSubnetV1(ctx, "exampleSubnet", &flexibleengine.VpcSubnetV1Args{
Cidr: pulumi.String("192.168.0.0/24"),
GatewayIp: pulumi.String("192.168.0.1"),
VpcId: exampleVpc.VpcV1Id,
})
if err != nil {
return err
}
_, err = flexibleengine.NewMrsHybridClusterV1(ctx, "cluster1", &flexibleengine.MrsHybridClusterV1Args{
AvailableZone: pulumi.String("eu-west-0a"),
ClusterName: pulumi.String("mrs-hybrid-cluster-acc"),
ClusterVersion: pulumi.String("MRS 2.0.1"),
ComponentLists: pulumi.StringArray{
pulumi.String("Hadoop"),
pulumi.String("Storm"),
pulumi.String("Spark"),
pulumi.String("Hive"),
},
VpcId: exampleVpc.VpcV1Id,
SubnetId: exampleSubnet.VpcSubnetV1Id,
ClusterAdminSecret: pulumi.String("Cluster@123"),
MasterNodeKeyPair: pulumi.String("KeyPair-ci"),
MasterNodes: &flexibleengine.MrsHybridClusterV1MasterNodesArgs{
NodeNumber: pulumi.Float64(1),
Flavor: pulumi.String("s3.2xlarge.4.linux.mrs"),
DataVolumeType: pulumi.String("SATA"),
DataVolumeSize: pulumi.Float64(100),
DataVolumeCount: pulumi.Float64(1),
},
AnalysisCoreNodes: &flexibleengine.MrsHybridClusterV1AnalysisCoreNodesArgs{
NodeNumber: pulumi.Float64(1),
Flavor: pulumi.String("s3.xlarge.4.linux.mrs"),
DataVolumeType: pulumi.String("SATA"),
DataVolumeSize: pulumi.Float64(100),
DataVolumeCount: pulumi.Float64(1),
},
StreamingCoreNodes: &flexibleengine.MrsHybridClusterV1StreamingCoreNodesArgs{
NodeNumber: pulumi.Float64(1),
Flavor: pulumi.String("s3.xlarge.4.linux.mrs"),
DataVolumeType: pulumi.String("SATA"),
DataVolumeSize: pulumi.Float64(100),
DataVolumeCount: pulumi.Float64(1),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Flexibleengine = Pulumi.Flexibleengine;
return await Deployment.RunAsync(() =>
{
var exampleVpc = new Flexibleengine.VpcV1("exampleVpc", new()
{
Cidr = "192.168.0.0/16",
});
var exampleSubnet = new Flexibleengine.VpcSubnetV1("exampleSubnet", new()
{
Cidr = "192.168.0.0/24",
GatewayIp = "192.168.0.1",
VpcId = exampleVpc.VpcV1Id,
});
var cluster1 = new Flexibleengine.MrsHybridClusterV1("cluster1", new()
{
AvailableZone = "eu-west-0a",
ClusterName = "mrs-hybrid-cluster-acc",
ClusterVersion = "MRS 2.0.1",
ComponentLists = new[]
{
"Hadoop",
"Storm",
"Spark",
"Hive",
},
VpcId = exampleVpc.VpcV1Id,
SubnetId = exampleSubnet.VpcSubnetV1Id,
ClusterAdminSecret = "Cluster@123",
MasterNodeKeyPair = "KeyPair-ci",
MasterNodes = new Flexibleengine.Inputs.MrsHybridClusterV1MasterNodesArgs
{
NodeNumber = 1,
Flavor = "s3.2xlarge.4.linux.mrs",
DataVolumeType = "SATA",
DataVolumeSize = 100,
DataVolumeCount = 1,
},
AnalysisCoreNodes = new Flexibleengine.Inputs.MrsHybridClusterV1AnalysisCoreNodesArgs
{
NodeNumber = 1,
Flavor = "s3.xlarge.4.linux.mrs",
DataVolumeType = "SATA",
DataVolumeSize = 100,
DataVolumeCount = 1,
},
StreamingCoreNodes = new Flexibleengine.Inputs.MrsHybridClusterV1StreamingCoreNodesArgs
{
NodeNumber = 1,
Flavor = "s3.xlarge.4.linux.mrs",
DataVolumeType = "SATA",
DataVolumeSize = 100,
DataVolumeCount = 1,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.flexibleengine.VpcV1;
import com.pulumi.flexibleengine.VpcV1Args;
import com.pulumi.flexibleengine.VpcSubnetV1;
import com.pulumi.flexibleengine.VpcSubnetV1Args;
import com.pulumi.flexibleengine.MrsHybridClusterV1;
import com.pulumi.flexibleengine.MrsHybridClusterV1Args;
import com.pulumi.flexibleengine.inputs.MrsHybridClusterV1MasterNodesArgs;
import com.pulumi.flexibleengine.inputs.MrsHybridClusterV1AnalysisCoreNodesArgs;
import com.pulumi.flexibleengine.inputs.MrsHybridClusterV1StreamingCoreNodesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var exampleVpc = new VpcV1("exampleVpc", VpcV1Args.builder()
.cidr("192.168.0.0/16")
.build());
var exampleSubnet = new VpcSubnetV1("exampleSubnet", VpcSubnetV1Args.builder()
.cidr("192.168.0.0/24")
.gatewayIp("192.168.0.1")
.vpcId(exampleVpc.vpcV1Id())
.build());
var cluster1 = new MrsHybridClusterV1("cluster1", MrsHybridClusterV1Args.builder()
.availableZone("eu-west-0a")
.clusterName("mrs-hybrid-cluster-acc")
.clusterVersion("MRS 2.0.1")
.componentLists(
"Hadoop",
"Storm",
"Spark",
"Hive")
.vpcId(exampleVpc.vpcV1Id())
.subnetId(exampleSubnet.vpcSubnetV1Id())
.clusterAdminSecret("Cluster@123")
.masterNodeKeyPair("KeyPair-ci")
.masterNodes(MrsHybridClusterV1MasterNodesArgs.builder()
.nodeNumber(1)
.flavor("s3.2xlarge.4.linux.mrs")
.dataVolumeType("SATA")
.dataVolumeSize(100)
.dataVolumeCount(1)
.build())
.analysisCoreNodes(MrsHybridClusterV1AnalysisCoreNodesArgs.builder()
.nodeNumber(1)
.flavor("s3.xlarge.4.linux.mrs")
.dataVolumeType("SATA")
.dataVolumeSize(100)
.dataVolumeCount(1)
.build())
.streamingCoreNodes(MrsHybridClusterV1StreamingCoreNodesArgs.builder()
.nodeNumber(1)
.flavor("s3.xlarge.4.linux.mrs")
.dataVolumeType("SATA")
.dataVolumeSize(100)
.dataVolumeCount(1)
.build())
.build());
}
}
resources:
exampleVpc:
type: flexibleengine:VpcV1
properties:
cidr: 192.168.0.0/16
exampleSubnet:
type: flexibleengine:VpcSubnetV1
properties:
cidr: 192.168.0.0/24
gatewayIp: 192.168.0.1
vpcId: ${exampleVpc.vpcV1Id}
cluster1:
type: flexibleengine:MrsHybridClusterV1
properties:
availableZone: eu-west-0a
clusterName: mrs-hybrid-cluster-acc
clusterVersion: MRS 2.0.1
componentLists:
- Hadoop
- Storm
- Spark
- Hive
vpcId: ${exampleVpc.vpcV1Id}
subnetId: ${exampleSubnet.vpcSubnetV1Id}
clusterAdminSecret: Cluster@123
masterNodeKeyPair: KeyPair-ci
masterNodes:
nodeNumber: 1
flavor: s3.2xlarge.4.linux.mrs
dataVolumeType: SATA
dataVolumeSize: 100
dataVolumeCount: 1
analysisCoreNodes:
nodeNumber: 1
flavor: s3.xlarge.4.linux.mrs
dataVolumeType: SATA
dataVolumeSize: 100
dataVolumeCount: 1
streamingCoreNodes:
nodeNumber: 1
flavor: s3.xlarge.4.linux.mrs
dataVolumeType: SATA
dataVolumeSize: 100
dataVolumeCount: 1
Create MrsHybridClusterV1 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MrsHybridClusterV1(name: string, args: MrsHybridClusterV1Args, opts?: CustomResourceOptions);
@overload
def MrsHybridClusterV1(resource_name: str,
args: MrsHybridClusterV1Args,
opts: Optional[ResourceOptions] = None)
@overload
def MrsHybridClusterV1(resource_name: str,
opts: Optional[ResourceOptions] = None,
master_node_key_pair: Optional[str] = None,
analysis_core_nodes: Optional[MrsHybridClusterV1AnalysisCoreNodesArgs] = None,
available_zone: Optional[str] = None,
master_nodes: Optional[MrsHybridClusterV1MasterNodesArgs] = None,
cluster_name: Optional[str] = None,
vpc_id: Optional[str] = None,
component_lists: Optional[Sequence[str]] = None,
subnet_id: Optional[str] = None,
streaming_core_nodes: Optional[MrsHybridClusterV1StreamingCoreNodesArgs] = None,
mrs_hybrid_cluster_v1_id: Optional[str] = None,
cluster_admin_secret: Optional[str] = None,
region: Optional[str] = None,
safe_mode: Optional[float] = None,
security_group_id: Optional[str] = None,
analysis_task_nodes: Optional[MrsHybridClusterV1AnalysisTaskNodesArgs] = None,
streaming_task_nodes: Optional[MrsHybridClusterV1StreamingTaskNodesArgs] = None,
log_collection: Optional[float] = None,
timeouts: Optional[MrsHybridClusterV1TimeoutsArgs] = None,
cluster_version: Optional[str] = None)
func NewMrsHybridClusterV1(ctx *Context, name string, args MrsHybridClusterV1Args, opts ...ResourceOption) (*MrsHybridClusterV1, error)
public MrsHybridClusterV1(string name, MrsHybridClusterV1Args args, CustomResourceOptions? opts = null)
public MrsHybridClusterV1(String name, MrsHybridClusterV1Args args)
public MrsHybridClusterV1(String name, MrsHybridClusterV1Args args, CustomResourceOptions options)
type: flexibleengine:MrsHybridClusterV1
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args MrsHybridClusterV1Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args MrsHybridClusterV1Args
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args MrsHybridClusterV1Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MrsHybridClusterV1Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MrsHybridClusterV1Args
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var mrsHybridClusterV1Resource = new Flexibleengine.MrsHybridClusterV1("mrsHybridClusterV1Resource", new()
{
MasterNodeKeyPair = "string",
AnalysisCoreNodes = new Flexibleengine.Inputs.MrsHybridClusterV1AnalysisCoreNodesArgs
{
DataVolumeCount = 0,
DataVolumeSize = 0,
DataVolumeType = "string",
Flavor = "string",
NodeNumber = 0,
RootVolumeSize = 0,
RootVolumeType = "string",
},
AvailableZone = "string",
MasterNodes = new Flexibleengine.Inputs.MrsHybridClusterV1MasterNodesArgs
{
DataVolumeCount = 0,
DataVolumeSize = 0,
DataVolumeType = "string",
Flavor = "string",
NodeNumber = 0,
RootVolumeSize = 0,
RootVolumeType = "string",
},
ClusterName = "string",
VpcId = "string",
ComponentLists = new[]
{
"string",
},
SubnetId = "string",
StreamingCoreNodes = new Flexibleengine.Inputs.MrsHybridClusterV1StreamingCoreNodesArgs
{
DataVolumeCount = 0,
DataVolumeSize = 0,
DataVolumeType = "string",
Flavor = "string",
NodeNumber = 0,
RootVolumeSize = 0,
RootVolumeType = "string",
},
MrsHybridClusterV1Id = "string",
ClusterAdminSecret = "string",
Region = "string",
SafeMode = 0,
SecurityGroupId = "string",
AnalysisTaskNodes = new Flexibleengine.Inputs.MrsHybridClusterV1AnalysisTaskNodesArgs
{
DataVolumeCount = 0,
DataVolumeSize = 0,
DataVolumeType = "string",
Flavor = "string",
NodeNumber = 0,
RootVolumeSize = 0,
RootVolumeType = "string",
},
StreamingTaskNodes = new Flexibleengine.Inputs.MrsHybridClusterV1StreamingTaskNodesArgs
{
DataVolumeCount = 0,
DataVolumeSize = 0,
DataVolumeType = "string",
Flavor = "string",
NodeNumber = 0,
RootVolumeSize = 0,
RootVolumeType = "string",
},
LogCollection = 0,
Timeouts = new Flexibleengine.Inputs.MrsHybridClusterV1TimeoutsArgs
{
Create = "string",
Delete = "string",
},
ClusterVersion = "string",
});
example, err := flexibleengine.NewMrsHybridClusterV1(ctx, "mrsHybridClusterV1Resource", &flexibleengine.MrsHybridClusterV1Args{
MasterNodeKeyPair: pulumi.String("string"),
AnalysisCoreNodes: &flexibleengine.MrsHybridClusterV1AnalysisCoreNodesArgs{
DataVolumeCount: pulumi.Float64(0),
DataVolumeSize: pulumi.Float64(0),
DataVolumeType: pulumi.String("string"),
Flavor: pulumi.String("string"),
NodeNumber: pulumi.Float64(0),
RootVolumeSize: pulumi.Float64(0),
RootVolumeType: pulumi.String("string"),
},
AvailableZone: pulumi.String("string"),
MasterNodes: &flexibleengine.MrsHybridClusterV1MasterNodesArgs{
DataVolumeCount: pulumi.Float64(0),
DataVolumeSize: pulumi.Float64(0),
DataVolumeType: pulumi.String("string"),
Flavor: pulumi.String("string"),
NodeNumber: pulumi.Float64(0),
RootVolumeSize: pulumi.Float64(0),
RootVolumeType: pulumi.String("string"),
},
ClusterName: pulumi.String("string"),
VpcId: pulumi.String("string"),
ComponentLists: pulumi.StringArray{
pulumi.String("string"),
},
SubnetId: pulumi.String("string"),
StreamingCoreNodes: &flexibleengine.MrsHybridClusterV1StreamingCoreNodesArgs{
DataVolumeCount: pulumi.Float64(0),
DataVolumeSize: pulumi.Float64(0),
DataVolumeType: pulumi.String("string"),
Flavor: pulumi.String("string"),
NodeNumber: pulumi.Float64(0),
RootVolumeSize: pulumi.Float64(0),
RootVolumeType: pulumi.String("string"),
},
MrsHybridClusterV1Id: pulumi.String("string"),
ClusterAdminSecret: pulumi.String("string"),
Region: pulumi.String("string"),
SafeMode: pulumi.Float64(0),
SecurityGroupId: pulumi.String("string"),
AnalysisTaskNodes: &flexibleengine.MrsHybridClusterV1AnalysisTaskNodesArgs{
DataVolumeCount: pulumi.Float64(0),
DataVolumeSize: pulumi.Float64(0),
DataVolumeType: pulumi.String("string"),
Flavor: pulumi.String("string"),
NodeNumber: pulumi.Float64(0),
RootVolumeSize: pulumi.Float64(0),
RootVolumeType: pulumi.String("string"),
},
StreamingTaskNodes: &flexibleengine.MrsHybridClusterV1StreamingTaskNodesArgs{
DataVolumeCount: pulumi.Float64(0),
DataVolumeSize: pulumi.Float64(0),
DataVolumeType: pulumi.String("string"),
Flavor: pulumi.String("string"),
NodeNumber: pulumi.Float64(0),
RootVolumeSize: pulumi.Float64(0),
RootVolumeType: pulumi.String("string"),
},
LogCollection: pulumi.Float64(0),
Timeouts: &flexibleengine.MrsHybridClusterV1TimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
},
ClusterVersion: pulumi.String("string"),
})
var mrsHybridClusterV1Resource = new MrsHybridClusterV1("mrsHybridClusterV1Resource", MrsHybridClusterV1Args.builder()
.masterNodeKeyPair("string")
.analysisCoreNodes(MrsHybridClusterV1AnalysisCoreNodesArgs.builder()
.dataVolumeCount(0)
.dataVolumeSize(0)
.dataVolumeType("string")
.flavor("string")
.nodeNumber(0)
.rootVolumeSize(0)
.rootVolumeType("string")
.build())
.availableZone("string")
.masterNodes(MrsHybridClusterV1MasterNodesArgs.builder()
.dataVolumeCount(0)
.dataVolumeSize(0)
.dataVolumeType("string")
.flavor("string")
.nodeNumber(0)
.rootVolumeSize(0)
.rootVolumeType("string")
.build())
.clusterName("string")
.vpcId("string")
.componentLists("string")
.subnetId("string")
.streamingCoreNodes(MrsHybridClusterV1StreamingCoreNodesArgs.builder()
.dataVolumeCount(0)
.dataVolumeSize(0)
.dataVolumeType("string")
.flavor("string")
.nodeNumber(0)
.rootVolumeSize(0)
.rootVolumeType("string")
.build())
.mrsHybridClusterV1Id("string")
.clusterAdminSecret("string")
.region("string")
.safeMode(0)
.securityGroupId("string")
.analysisTaskNodes(MrsHybridClusterV1AnalysisTaskNodesArgs.builder()
.dataVolumeCount(0)
.dataVolumeSize(0)
.dataVolumeType("string")
.flavor("string")
.nodeNumber(0)
.rootVolumeSize(0)
.rootVolumeType("string")
.build())
.streamingTaskNodes(MrsHybridClusterV1StreamingTaskNodesArgs.builder()
.dataVolumeCount(0)
.dataVolumeSize(0)
.dataVolumeType("string")
.flavor("string")
.nodeNumber(0)
.rootVolumeSize(0)
.rootVolumeType("string")
.build())
.logCollection(0)
.timeouts(MrsHybridClusterV1TimeoutsArgs.builder()
.create("string")
.delete("string")
.build())
.clusterVersion("string")
.build());
mrs_hybrid_cluster_v1_resource = flexibleengine.MrsHybridClusterV1("mrsHybridClusterV1Resource",
master_node_key_pair="string",
analysis_core_nodes={
"data_volume_count": 0,
"data_volume_size": 0,
"data_volume_type": "string",
"flavor": "string",
"node_number": 0,
"root_volume_size": 0,
"root_volume_type": "string",
},
available_zone="string",
master_nodes={
"data_volume_count": 0,
"data_volume_size": 0,
"data_volume_type": "string",
"flavor": "string",
"node_number": 0,
"root_volume_size": 0,
"root_volume_type": "string",
},
cluster_name="string",
vpc_id="string",
component_lists=["string"],
subnet_id="string",
streaming_core_nodes={
"data_volume_count": 0,
"data_volume_size": 0,
"data_volume_type": "string",
"flavor": "string",
"node_number": 0,
"root_volume_size": 0,
"root_volume_type": "string",
},
mrs_hybrid_cluster_v1_id="string",
cluster_admin_secret="string",
region="string",
safe_mode=0,
security_group_id="string",
analysis_task_nodes={
"data_volume_count": 0,
"data_volume_size": 0,
"data_volume_type": "string",
"flavor": "string",
"node_number": 0,
"root_volume_size": 0,
"root_volume_type": "string",
},
streaming_task_nodes={
"data_volume_count": 0,
"data_volume_size": 0,
"data_volume_type": "string",
"flavor": "string",
"node_number": 0,
"root_volume_size": 0,
"root_volume_type": "string",
},
log_collection=0,
timeouts={
"create": "string",
"delete": "string",
},
cluster_version="string")
const mrsHybridClusterV1Resource = new flexibleengine.MrsHybridClusterV1("mrsHybridClusterV1Resource", {
masterNodeKeyPair: "string",
analysisCoreNodes: {
dataVolumeCount: 0,
dataVolumeSize: 0,
dataVolumeType: "string",
flavor: "string",
nodeNumber: 0,
rootVolumeSize: 0,
rootVolumeType: "string",
},
availableZone: "string",
masterNodes: {
dataVolumeCount: 0,
dataVolumeSize: 0,
dataVolumeType: "string",
flavor: "string",
nodeNumber: 0,
rootVolumeSize: 0,
rootVolumeType: "string",
},
clusterName: "string",
vpcId: "string",
componentLists: ["string"],
subnetId: "string",
streamingCoreNodes: {
dataVolumeCount: 0,
dataVolumeSize: 0,
dataVolumeType: "string",
flavor: "string",
nodeNumber: 0,
rootVolumeSize: 0,
rootVolumeType: "string",
},
mrsHybridClusterV1Id: "string",
clusterAdminSecret: "string",
region: "string",
safeMode: 0,
securityGroupId: "string",
analysisTaskNodes: {
dataVolumeCount: 0,
dataVolumeSize: 0,
dataVolumeType: "string",
flavor: "string",
nodeNumber: 0,
rootVolumeSize: 0,
rootVolumeType: "string",
},
streamingTaskNodes: {
dataVolumeCount: 0,
dataVolumeSize: 0,
dataVolumeType: "string",
flavor: "string",
nodeNumber: 0,
rootVolumeSize: 0,
rootVolumeType: "string",
},
logCollection: 0,
timeouts: {
create: "string",
"delete": "string",
},
clusterVersion: "string",
});
type: flexibleengine:MrsHybridClusterV1
properties:
analysisCoreNodes:
dataVolumeCount: 0
dataVolumeSize: 0
dataVolumeType: string
flavor: string
nodeNumber: 0
rootVolumeSize: 0
rootVolumeType: string
analysisTaskNodes:
dataVolumeCount: 0
dataVolumeSize: 0
dataVolumeType: string
flavor: string
nodeNumber: 0
rootVolumeSize: 0
rootVolumeType: string
availableZone: string
clusterAdminSecret: string
clusterName: string
clusterVersion: string
componentLists:
- string
logCollection: 0
masterNodeKeyPair: string
masterNodes:
dataVolumeCount: 0
dataVolumeSize: 0
dataVolumeType: string
flavor: string
nodeNumber: 0
rootVolumeSize: 0
rootVolumeType: string
mrsHybridClusterV1Id: string
region: string
safeMode: 0
securityGroupId: string
streamingCoreNodes:
dataVolumeCount: 0
dataVolumeSize: 0
dataVolumeType: string
flavor: string
nodeNumber: 0
rootVolumeSize: 0
rootVolumeType: string
streamingTaskNodes:
dataVolumeCount: 0
dataVolumeSize: 0
dataVolumeType: string
flavor: string
nodeNumber: 0
rootVolumeSize: 0
rootVolumeType: string
subnetId: string
timeouts:
create: string
delete: string
vpcId: string
MrsHybridClusterV1 Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The MrsHybridClusterV1 resource accepts the following input properties:
- Analysis
Core MrsNodes Hybrid Cluster V1Analysis Core Nodes - Specifies the analysis core nodes information.
- Available
Zone string - ID or Name of an available zone. Obtain the value from Regions and Endpoints.
- Cluster
Name string - Cluster name, which is globally unique and contains only 1 to 64 letters, digits, hyphens (-), and underscores (_).
- Component
Lists List<string> - Component name
- Presto, Hadoop, Spark, HBase, Hive, Tez, Hue, Loader, Flume, Kafka and Storm are supported by MRS 2.0.1 or later.
- Presto, Hadoop, Spark, HBase, Opentsdb, Hive, Hue, Loader, Flink, Flume, Kafka, KafkaManager and Storm are supported by MRS 1.8.9.
- Hadoop, Spark, HBase, Hive, Hue, Loader, Flume, Kafka and Storm are supported by versions earlier than MRS 1.8.9.
- Master
Node stringKey Pair - Name of a key pair You can use a key to log in to the Master node in the cluster.
- Master
Nodes MrsHybrid Cluster V1Master Nodes - Specifies the master nodes information.
- Streaming
Core MrsNodes Hybrid Cluster V1Streaming Core Nodes - Specifies the streaming core nodes information.
- Subnet
Id string - Specifies the ID of the VPC Subnet.
- Vpc
Id string - Specifies the id of the VPC.
- Analysis
Task MrsNodes Hybrid Cluster V1Analysis Task Nodes - Specifies the analysis task nodes information.
- Cluster
Admin stringSecret - Indicates the password of the MRS Manager administrator.
- Must contain 8 to 32 characters.
- Must contain at least three types of the following: Lowercase letters, Uppercase letters, Digits, Special characters of `~!@#$%^&*()-_=+|[{}];:'",<.>/? and Spaces.
- Must be different from the username.
- Must be different from the username written in reverse order. For versions earlier than MRS 2.0.1, this parameter is mandatory only when safe_mode is set to 1. For MRS 2.0.1 or later, this parameter is mandatory no matter which value safe_mode is set to.
- Cluster
Version string - Version of the clusters. Possible values are as follows: MRS 1.8.9, MRS 2.0.1, MRS 2.1.0 and MRS 3.1.0-LTS.1.
- Log
Collection double - Indicates whether logs are collected when cluster installation fails. 0: not collected 1: collected The default value is 0. If log_collection is set to 1, OBS buckets will be created to collect the MRS logs. These buckets will be charged.
- Mrs
Hybrid stringCluster V1Id - The resource ID in UUID format.
- Region string
- Cluster region information. Obtain the value from Regions and Endpoints.
- Safe
Mode double MRS cluster running mode
- 0: common mode
The value indicates that the Kerberos authentication is disabled. Users can use all functions provided by the cluster.
- 1: safe mode (by default)
The value indicates that the Kerberos authentication is enabled. Common users cannot use the file management or job management functions of an MRS cluster and cannot view cluster resource usage or the job records of Hadoop and Spark. To use these functions, the users must obtain the relevant permissions from the MRS Manager administrator. The request has the cluster_admin_secret parameter only when safe_mode is set to 1.
- Security
Group stringId - Specifies the id of the security group which the cluster belongs to. If this parameter is empty, MRS automatically creates a security group, whose name starts with mrs_{cluster_name}.
- Streaming
Task MrsNodes Hybrid Cluster V1Streaming Task Nodes - Specifies the streaming task nodes information.
- Timeouts
Mrs
Hybrid Cluster V1Timeouts
- Analysis
Core MrsNodes Hybrid Cluster V1Analysis Core Nodes Args - Specifies the analysis core nodes information.
- Available
Zone string - ID or Name of an available zone. Obtain the value from Regions and Endpoints.
- Cluster
Name string - Cluster name, which is globally unique and contains only 1 to 64 letters, digits, hyphens (-), and underscores (_).
- Component
Lists []string - Component name
- Presto, Hadoop, Spark, HBase, Hive, Tez, Hue, Loader, Flume, Kafka and Storm are supported by MRS 2.0.1 or later.
- Presto, Hadoop, Spark, HBase, Opentsdb, Hive, Hue, Loader, Flink, Flume, Kafka, KafkaManager and Storm are supported by MRS 1.8.9.
- Hadoop, Spark, HBase, Hive, Hue, Loader, Flume, Kafka and Storm are supported by versions earlier than MRS 1.8.9.
- Master
Node stringKey Pair - Name of a key pair You can use a key to log in to the Master node in the cluster.
- Master
Nodes MrsHybrid Cluster V1Master Nodes Args - Specifies the master nodes information.
- Streaming
Core MrsNodes Hybrid Cluster V1Streaming Core Nodes Args - Specifies the streaming core nodes information.
- Subnet
Id string - Specifies the ID of the VPC Subnet.
- Vpc
Id string - Specifies the id of the VPC.
- Analysis
Task MrsNodes Hybrid Cluster V1Analysis Task Nodes Args - Specifies the analysis task nodes information.
- Cluster
Admin stringSecret - Indicates the password of the MRS Manager administrator.
- Must contain 8 to 32 characters.
- Must contain at least three types of the following: Lowercase letters, Uppercase letters, Digits, Special characters of `~!@#$%^&*()-_=+|[{}];:'",<.>/? and Spaces.
- Must be different from the username.
- Must be different from the username written in reverse order. For versions earlier than MRS 2.0.1, this parameter is mandatory only when safe_mode is set to 1. For MRS 2.0.1 or later, this parameter is mandatory no matter which value safe_mode is set to.
- Cluster
Version string - Version of the clusters. Possible values are as follows: MRS 1.8.9, MRS 2.0.1, MRS 2.1.0 and MRS 3.1.0-LTS.1.
- Log
Collection float64 - Indicates whether logs are collected when cluster installation fails. 0: not collected 1: collected The default value is 0. If log_collection is set to 1, OBS buckets will be created to collect the MRS logs. These buckets will be charged.
- Mrs
Hybrid stringCluster V1Id - The resource ID in UUID format.
- Region string
- Cluster region information. Obtain the value from Regions and Endpoints.
- Safe
Mode float64 MRS cluster running mode
- 0: common mode
The value indicates that the Kerberos authentication is disabled. Users can use all functions provided by the cluster.
- 1: safe mode (by default)
The value indicates that the Kerberos authentication is enabled. Common users cannot use the file management or job management functions of an MRS cluster and cannot view cluster resource usage or the job records of Hadoop and Spark. To use these functions, the users must obtain the relevant permissions from the MRS Manager administrator. The request has the cluster_admin_secret parameter only when safe_mode is set to 1.
- Security
Group stringId - Specifies the id of the security group which the cluster belongs to. If this parameter is empty, MRS automatically creates a security group, whose name starts with mrs_{cluster_name}.
- Streaming
Task MrsNodes Hybrid Cluster V1Streaming Task Nodes Args - Specifies the streaming task nodes information.
- Timeouts
Mrs
Hybrid Cluster V1Timeouts Args
- analysis
Core MrsNodes Hybrid Cluster V1Analysis Core Nodes - Specifies the analysis core nodes information.
- available
Zone String - ID or Name of an available zone. Obtain the value from Regions and Endpoints.
- cluster
Name String - Cluster name, which is globally unique and contains only 1 to 64 letters, digits, hyphens (-), and underscores (_).
- component
Lists List<String> - Component name
- Presto, Hadoop, Spark, HBase, Hive, Tez, Hue, Loader, Flume, Kafka and Storm are supported by MRS 2.0.1 or later.
- Presto, Hadoop, Spark, HBase, Opentsdb, Hive, Hue, Loader, Flink, Flume, Kafka, KafkaManager and Storm are supported by MRS 1.8.9.
- Hadoop, Spark, HBase, Hive, Hue, Loader, Flume, Kafka and Storm are supported by versions earlier than MRS 1.8.9.
- master
Node StringKey Pair - Name of a key pair You can use a key to log in to the Master node in the cluster.
- master
Nodes MrsHybrid Cluster V1Master Nodes - Specifies the master nodes information.
- streaming
Core MrsNodes Hybrid Cluster V1Streaming Core Nodes - Specifies the streaming core nodes information.
- subnet
Id String - Specifies the ID of the VPC Subnet.
- vpc
Id String - Specifies the id of the VPC.
- analysis
Task MrsNodes Hybrid Cluster V1Analysis Task Nodes - Specifies the analysis task nodes information.
- cluster
Admin StringSecret - Indicates the password of the MRS Manager administrator.
- Must contain 8 to 32 characters.
- Must contain at least three types of the following: Lowercase letters, Uppercase letters, Digits, Special characters of `~!@#$%^&*()-_=+|[{}];:'",<.>/? and Spaces.
- Must be different from the username.
- Must be different from the username written in reverse order. For versions earlier than MRS 2.0.1, this parameter is mandatory only when safe_mode is set to 1. For MRS 2.0.1 or later, this parameter is mandatory no matter which value safe_mode is set to.
- cluster
Version String - Version of the clusters. Possible values are as follows: MRS 1.8.9, MRS 2.0.1, MRS 2.1.0 and MRS 3.1.0-LTS.1.
- log
Collection Double - Indicates whether logs are collected when cluster installation fails. 0: not collected 1: collected The default value is 0. If log_collection is set to 1, OBS buckets will be created to collect the MRS logs. These buckets will be charged.
- mrs
Hybrid StringCluster V1Id - The resource ID in UUID format.
- region String
- Cluster region information. Obtain the value from Regions and Endpoints.
- safe
Mode Double MRS cluster running mode
- 0: common mode
The value indicates that the Kerberos authentication is disabled. Users can use all functions provided by the cluster.
- 1: safe mode (by default)
The value indicates that the Kerberos authentication is enabled. Common users cannot use the file management or job management functions of an MRS cluster and cannot view cluster resource usage or the job records of Hadoop and Spark. To use these functions, the users must obtain the relevant permissions from the MRS Manager administrator. The request has the cluster_admin_secret parameter only when safe_mode is set to 1.
- security
Group StringId - Specifies the id of the security group which the cluster belongs to. If this parameter is empty, MRS automatically creates a security group, whose name starts with mrs_{cluster_name}.
- streaming
Task MrsNodes Hybrid Cluster V1Streaming Task Nodes - Specifies the streaming task nodes information.
- timeouts
Mrs
Hybrid Cluster V1Timeouts
- analysis
Core MrsNodes Hybrid Cluster V1Analysis Core Nodes - Specifies the analysis core nodes information.
- available
Zone string - ID or Name of an available zone. Obtain the value from Regions and Endpoints.
- cluster
Name string - Cluster name, which is globally unique and contains only 1 to 64 letters, digits, hyphens (-), and underscores (_).
- component
Lists string[] - Component name
- Presto, Hadoop, Spark, HBase, Hive, Tez, Hue, Loader, Flume, Kafka and Storm are supported by MRS 2.0.1 or later.
- Presto, Hadoop, Spark, HBase, Opentsdb, Hive, Hue, Loader, Flink, Flume, Kafka, KafkaManager and Storm are supported by MRS 1.8.9.
- Hadoop, Spark, HBase, Hive, Hue, Loader, Flume, Kafka and Storm are supported by versions earlier than MRS 1.8.9.
- master
Node stringKey Pair - Name of a key pair You can use a key to log in to the Master node in the cluster.
- master
Nodes MrsHybrid Cluster V1Master Nodes - Specifies the master nodes information.
- streaming
Core MrsNodes Hybrid Cluster V1Streaming Core Nodes - Specifies the streaming core nodes information.
- subnet
Id string - Specifies the ID of the VPC Subnet.
- vpc
Id string - Specifies the id of the VPC.
- analysis
Task MrsNodes Hybrid Cluster V1Analysis Task Nodes - Specifies the analysis task nodes information.
- cluster
Admin stringSecret - Indicates the password of the MRS Manager administrator.
- Must contain 8 to 32 characters.
- Must contain at least three types of the following: Lowercase letters, Uppercase letters, Digits, Special characters of `~!@#$%^&*()-_=+|[{}];:'",<.>/? and Spaces.
- Must be different from the username.
- Must be different from the username written in reverse order. For versions earlier than MRS 2.0.1, this parameter is mandatory only when safe_mode is set to 1. For MRS 2.0.1 or later, this parameter is mandatory no matter which value safe_mode is set to.
- cluster
Version string - Version of the clusters. Possible values are as follows: MRS 1.8.9, MRS 2.0.1, MRS 2.1.0 and MRS 3.1.0-LTS.1.
- log
Collection number - Indicates whether logs are collected when cluster installation fails. 0: not collected 1: collected The default value is 0. If log_collection is set to 1, OBS buckets will be created to collect the MRS logs. These buckets will be charged.
- mrs
Hybrid stringCluster V1Id - The resource ID in UUID format.
- region string
- Cluster region information. Obtain the value from Regions and Endpoints.
- safe
Mode number MRS cluster running mode
- 0: common mode
The value indicates that the Kerberos authentication is disabled. Users can use all functions provided by the cluster.
- 1: safe mode (by default)
The value indicates that the Kerberos authentication is enabled. Common users cannot use the file management or job management functions of an MRS cluster and cannot view cluster resource usage or the job records of Hadoop and Spark. To use these functions, the users must obtain the relevant permissions from the MRS Manager administrator. The request has the cluster_admin_secret parameter only when safe_mode is set to 1.
- security
Group stringId - Specifies the id of the security group which the cluster belongs to. If this parameter is empty, MRS automatically creates a security group, whose name starts with mrs_{cluster_name}.
- streaming
Task MrsNodes Hybrid Cluster V1Streaming Task Nodes - Specifies the streaming task nodes information.
- timeouts
Mrs
Hybrid Cluster V1Timeouts
- analysis_
core_ Mrsnodes Hybrid Cluster V1Analysis Core Nodes Args - Specifies the analysis core nodes information.
- available_
zone str - ID or Name of an available zone. Obtain the value from Regions and Endpoints.
- cluster_
name str - Cluster name, which is globally unique and contains only 1 to 64 letters, digits, hyphens (-), and underscores (_).
- component_
lists Sequence[str] - Component name
- Presto, Hadoop, Spark, HBase, Hive, Tez, Hue, Loader, Flume, Kafka and Storm are supported by MRS 2.0.1 or later.
- Presto, Hadoop, Spark, HBase, Opentsdb, Hive, Hue, Loader, Flink, Flume, Kafka, KafkaManager and Storm are supported by MRS 1.8.9.
- Hadoop, Spark, HBase, Hive, Hue, Loader, Flume, Kafka and Storm are supported by versions earlier than MRS 1.8.9.
- master_
node_ strkey_ pair - Name of a key pair You can use a key to log in to the Master node in the cluster.
- master_
nodes MrsHybrid Cluster V1Master Nodes Args - Specifies the master nodes information.
- streaming_
core_ Mrsnodes Hybrid Cluster V1Streaming Core Nodes Args - Specifies the streaming core nodes information.
- subnet_
id str - Specifies the ID of the VPC Subnet.
- vpc_
id str - Specifies the id of the VPC.
- analysis_
task_ Mrsnodes Hybrid Cluster V1Analysis Task Nodes Args - Specifies the analysis task nodes information.
- cluster_
admin_ strsecret - Indicates the password of the MRS Manager administrator.
- Must contain 8 to 32 characters.
- Must contain at least three types of the following: Lowercase letters, Uppercase letters, Digits, Special characters of `~!@#$%^&*()-_=+|[{}];:'",<.>/? and Spaces.
- Must be different from the username.
- Must be different from the username written in reverse order. For versions earlier than MRS 2.0.1, this parameter is mandatory only when safe_mode is set to 1. For MRS 2.0.1 or later, this parameter is mandatory no matter which value safe_mode is set to.
- cluster_
version str - Version of the clusters. Possible values are as follows: MRS 1.8.9, MRS 2.0.1, MRS 2.1.0 and MRS 3.1.0-LTS.1.
- log_
collection float - Indicates whether logs are collected when cluster installation fails. 0: not collected 1: collected The default value is 0. If log_collection is set to 1, OBS buckets will be created to collect the MRS logs. These buckets will be charged.
- mrs_
hybrid_ strcluster_ v1_ id - The resource ID in UUID format.
- region str
- Cluster region information. Obtain the value from Regions and Endpoints.
- safe_
mode float MRS cluster running mode
- 0: common mode
The value indicates that the Kerberos authentication is disabled. Users can use all functions provided by the cluster.
- 1: safe mode (by default)
The value indicates that the Kerberos authentication is enabled. Common users cannot use the file management or job management functions of an MRS cluster and cannot view cluster resource usage or the job records of Hadoop and Spark. To use these functions, the users must obtain the relevant permissions from the MRS Manager administrator. The request has the cluster_admin_secret parameter only when safe_mode is set to 1.
- security_
group_ strid - Specifies the id of the security group which the cluster belongs to. If this parameter is empty, MRS automatically creates a security group, whose name starts with mrs_{cluster_name}.
- streaming_
task_ Mrsnodes Hybrid Cluster V1Streaming Task Nodes Args - Specifies the streaming task nodes information.
- timeouts
Mrs
Hybrid Cluster V1Timeouts Args
- analysis
Core Property MapNodes - Specifies the analysis core nodes information.
- available
Zone String - ID or Name of an available zone. Obtain the value from Regions and Endpoints.
- cluster
Name String - Cluster name, which is globally unique and contains only 1 to 64 letters, digits, hyphens (-), and underscores (_).
- component
Lists List<String> - Component name
- Presto, Hadoop, Spark, HBase, Hive, Tez, Hue, Loader, Flume, Kafka and Storm are supported by MRS 2.0.1 or later.
- Presto, Hadoop, Spark, HBase, Opentsdb, Hive, Hue, Loader, Flink, Flume, Kafka, KafkaManager and Storm are supported by MRS 1.8.9.
- Hadoop, Spark, HBase, Hive, Hue, Loader, Flume, Kafka and Storm are supported by versions earlier than MRS 1.8.9.
- master
Node StringKey Pair - Name of a key pair You can use a key to log in to the Master node in the cluster.
- master
Nodes Property Map - Specifies the master nodes information.
- streaming
Core Property MapNodes - Specifies the streaming core nodes information.
- subnet
Id String - Specifies the ID of the VPC Subnet.
- vpc
Id String - Specifies the id of the VPC.
- analysis
Task Property MapNodes - Specifies the analysis task nodes information.
- cluster
Admin StringSecret - Indicates the password of the MRS Manager administrator.
- Must contain 8 to 32 characters.
- Must contain at least three types of the following: Lowercase letters, Uppercase letters, Digits, Special characters of `~!@#$%^&*()-_=+|[{}];:'",<.>/? and Spaces.
- Must be different from the username.
- Must be different from the username written in reverse order. For versions earlier than MRS 2.0.1, this parameter is mandatory only when safe_mode is set to 1. For MRS 2.0.1 or later, this parameter is mandatory no matter which value safe_mode is set to.
- cluster
Version String - Version of the clusters. Possible values are as follows: MRS 1.8.9, MRS 2.0.1, MRS 2.1.0 and MRS 3.1.0-LTS.1.
- log
Collection Number - Indicates whether logs are collected when cluster installation fails. 0: not collected 1: collected The default value is 0. If log_collection is set to 1, OBS buckets will be created to collect the MRS logs. These buckets will be charged.
- mrs
Hybrid StringCluster V1Id - The resource ID in UUID format.
- region String
- Cluster region information. Obtain the value from Regions and Endpoints.
- safe
Mode Number MRS cluster running mode
- 0: common mode
The value indicates that the Kerberos authentication is disabled. Users can use all functions provided by the cluster.
- 1: safe mode (by default)
The value indicates that the Kerberos authentication is enabled. Common users cannot use the file management or job management functions of an MRS cluster and cannot view cluster resource usage or the job records of Hadoop and Spark. To use these functions, the users must obtain the relevant permissions from the MRS Manager administrator. The request has the cluster_admin_secret parameter only when safe_mode is set to 1.
- security
Group StringId - Specifies the id of the security group which the cluster belongs to. If this parameter is empty, MRS automatically creates a security group, whose name starts with mrs_{cluster_name}.
- streaming
Task Property MapNodes - Specifies the streaming task nodes information.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the MrsHybridClusterV1 resource produces the following output properties:
- Billing
Type string - The value is Metered, indicating on-demand payment.
- Charging
Start stringTime - Time when charging starts.
- Components
List<Mrs
Hybrid Cluster V1Component> - Create
At string - Cluster creation time.
- External
Alternate stringIp - Backup external IP address.
- External
Ip string - External IP address.
- Id string
- The provider-assigned unique ID for this managed resource.
- Internal
Ip string - Iternal IP address.
- Master
Node stringIp - IP address of a Master node.
- Private
Ip stringFirst - Primary private IP address.
- State string
- Cluster creation fee, which is automatically calculated.
- Total
Node doubleNumber - Total node number.
- Update
At string - Cluster update time.
- Vnc string
- URI address for remote login of the elastic cloud server.
- Billing
Type string - The value is Metered, indicating on-demand payment.
- Charging
Start stringTime - Time when charging starts.
- Components
[]Mrs
Hybrid Cluster V1Component - Create
At string - Cluster creation time.
- External
Alternate stringIp - Backup external IP address.
- External
Ip string - External IP address.
- Id string
- The provider-assigned unique ID for this managed resource.
- Internal
Ip string - Iternal IP address.
- Master
Node stringIp - IP address of a Master node.
- Private
Ip stringFirst - Primary private IP address.
- State string
- Cluster creation fee, which is automatically calculated.
- Total
Node float64Number - Total node number.
- Update
At string - Cluster update time.
- Vnc string
- URI address for remote login of the elastic cloud server.
- billing
Type String - The value is Metered, indicating on-demand payment.
- charging
Start StringTime - Time when charging starts.
- components
List<Mrs
Hybrid Cluster V1Component> - create
At String - Cluster creation time.
- external
Alternate StringIp - Backup external IP address.
- external
Ip String - External IP address.
- id String
- The provider-assigned unique ID for this managed resource.
- internal
Ip String - Iternal IP address.
- master
Node StringIp - IP address of a Master node.
- private
Ip StringFirst - Primary private IP address.
- state String
- Cluster creation fee, which is automatically calculated.
- total
Node DoubleNumber - Total node number.
- update
At String - Cluster update time.
- vnc String
- URI address for remote login of the elastic cloud server.
- billing
Type string - The value is Metered, indicating on-demand payment.
- charging
Start stringTime - Time when charging starts.
- components
Mrs
Hybrid Cluster V1Component[] - create
At string - Cluster creation time.
- external
Alternate stringIp - Backup external IP address.
- external
Ip string - External IP address.
- id string
- The provider-assigned unique ID for this managed resource.
- internal
Ip string - Iternal IP address.
- master
Node stringIp - IP address of a Master node.
- private
Ip stringFirst - Primary private IP address.
- state string
- Cluster creation fee, which is automatically calculated.
- total
Node numberNumber - Total node number.
- update
At string - Cluster update time.
- vnc string
- URI address for remote login of the elastic cloud server.
- billing_
type str - The value is Metered, indicating on-demand payment.
- charging_
start_ strtime - Time when charging starts.
- components
Sequence[Mrs
Hybrid Cluster V1Component] - create_
at str - Cluster creation time.
- external_
alternate_ strip - Backup external IP address.
- external_
ip str - External IP address.
- id str
- The provider-assigned unique ID for this managed resource.
- internal_
ip str - Iternal IP address.
- master_
node_ strip - IP address of a Master node.
- private_
ip_ strfirst - Primary private IP address.
- state str
- Cluster creation fee, which is automatically calculated.
- total_
node_ floatnumber - Total node number.
- update_
at str - Cluster update time.
- vnc str
- URI address for remote login of the elastic cloud server.
- billing
Type String - The value is Metered, indicating on-demand payment.
- charging
Start StringTime - Time when charging starts.
- components List<Property Map>
- create
At String - Cluster creation time.
- external
Alternate StringIp - Backup external IP address.
- external
Ip String - External IP address.
- id String
- The provider-assigned unique ID for this managed resource.
- internal
Ip String - Iternal IP address.
- master
Node StringIp - IP address of a Master node.
- private
Ip StringFirst - Primary private IP address.
- state String
- Cluster creation fee, which is automatically calculated.
- total
Node NumberNumber - Total node number.
- update
At String - Cluster update time.
- vnc String
- URI address for remote login of the elastic cloud server.
Look up Existing MrsHybridClusterV1 Resource
Get an existing MrsHybridClusterV1 resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: MrsHybridClusterV1State, opts?: CustomResourceOptions): MrsHybridClusterV1
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
analysis_core_nodes: Optional[MrsHybridClusterV1AnalysisCoreNodesArgs] = None,
analysis_task_nodes: Optional[MrsHybridClusterV1AnalysisTaskNodesArgs] = None,
available_zone: Optional[str] = None,
billing_type: Optional[str] = None,
charging_start_time: Optional[str] = None,
cluster_admin_secret: Optional[str] = None,
cluster_name: Optional[str] = None,
cluster_version: Optional[str] = None,
component_lists: Optional[Sequence[str]] = None,
components: Optional[Sequence[MrsHybridClusterV1ComponentArgs]] = None,
create_at: Optional[str] = None,
external_alternate_ip: Optional[str] = None,
external_ip: Optional[str] = None,
internal_ip: Optional[str] = None,
log_collection: Optional[float] = None,
master_node_ip: Optional[str] = None,
master_node_key_pair: Optional[str] = None,
master_nodes: Optional[MrsHybridClusterV1MasterNodesArgs] = None,
mrs_hybrid_cluster_v1_id: Optional[str] = None,
private_ip_first: Optional[str] = None,
region: Optional[str] = None,
safe_mode: Optional[float] = None,
security_group_id: Optional[str] = None,
state: Optional[str] = None,
streaming_core_nodes: Optional[MrsHybridClusterV1StreamingCoreNodesArgs] = None,
streaming_task_nodes: Optional[MrsHybridClusterV1StreamingTaskNodesArgs] = None,
subnet_id: Optional[str] = None,
timeouts: Optional[MrsHybridClusterV1TimeoutsArgs] = None,
total_node_number: Optional[float] = None,
update_at: Optional[str] = None,
vnc: Optional[str] = None,
vpc_id: Optional[str] = None) -> MrsHybridClusterV1
func GetMrsHybridClusterV1(ctx *Context, name string, id IDInput, state *MrsHybridClusterV1State, opts ...ResourceOption) (*MrsHybridClusterV1, error)
public static MrsHybridClusterV1 Get(string name, Input<string> id, MrsHybridClusterV1State? state, CustomResourceOptions? opts = null)
public static MrsHybridClusterV1 get(String name, Output<String> id, MrsHybridClusterV1State state, CustomResourceOptions options)
resources: _: type: flexibleengine:MrsHybridClusterV1 get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Analysis
Core MrsNodes Hybrid Cluster V1Analysis Core Nodes - Specifies the analysis core nodes information.
- Analysis
Task MrsNodes Hybrid Cluster V1Analysis Task Nodes - Specifies the analysis task nodes information.
- Available
Zone string - ID or Name of an available zone. Obtain the value from Regions and Endpoints.
- Billing
Type string - The value is Metered, indicating on-demand payment.
- Charging
Start stringTime - Time when charging starts.
- Cluster
Admin stringSecret - Indicates the password of the MRS Manager administrator.
- Must contain 8 to 32 characters.
- Must contain at least three types of the following: Lowercase letters, Uppercase letters, Digits, Special characters of `~!@#$%^&*()-_=+|[{}];:'",<.>/? and Spaces.
- Must be different from the username.
- Must be different from the username written in reverse order. For versions earlier than MRS 2.0.1, this parameter is mandatory only when safe_mode is set to 1. For MRS 2.0.1 or later, this parameter is mandatory no matter which value safe_mode is set to.
- Cluster
Name string - Cluster name, which is globally unique and contains only 1 to 64 letters, digits, hyphens (-), and underscores (_).
- Cluster
Version string - Version of the clusters. Possible values are as follows: MRS 1.8.9, MRS 2.0.1, MRS 2.1.0 and MRS 3.1.0-LTS.1.
- Component
Lists List<string> - Component name
- Presto, Hadoop, Spark, HBase, Hive, Tez, Hue, Loader, Flume, Kafka and Storm are supported by MRS 2.0.1 or later.
- Presto, Hadoop, Spark, HBase, Opentsdb, Hive, Hue, Loader, Flink, Flume, Kafka, KafkaManager and Storm are supported by MRS 1.8.9.
- Hadoop, Spark, HBase, Hive, Hue, Loader, Flume, Kafka and Storm are supported by versions earlier than MRS 1.8.9.
- Components
List<Mrs
Hybrid Cluster V1Component> - Create
At string - Cluster creation time.
- External
Alternate stringIp - Backup external IP address.
- External
Ip string - External IP address.
- Internal
Ip string - Iternal IP address.
- Log
Collection double - Indicates whether logs are collected when cluster installation fails. 0: not collected 1: collected The default value is 0. If log_collection is set to 1, OBS buckets will be created to collect the MRS logs. These buckets will be charged.
- Master
Node stringIp - IP address of a Master node.
- Master
Node stringKey Pair - Name of a key pair You can use a key to log in to the Master node in the cluster.
- Master
Nodes MrsHybrid Cluster V1Master Nodes - Specifies the master nodes information.
- Mrs
Hybrid stringCluster V1Id - The resource ID in UUID format.
- Private
Ip stringFirst - Primary private IP address.
- Region string
- Cluster region information. Obtain the value from Regions and Endpoints.
- Safe
Mode double MRS cluster running mode
- 0: common mode
The value indicates that the Kerberos authentication is disabled. Users can use all functions provided by the cluster.
- 1: safe mode (by default)
The value indicates that the Kerberos authentication is enabled. Common users cannot use the file management or job management functions of an MRS cluster and cannot view cluster resource usage or the job records of Hadoop and Spark. To use these functions, the users must obtain the relevant permissions from the MRS Manager administrator. The request has the cluster_admin_secret parameter only when safe_mode is set to 1.
- Security
Group stringId - Specifies the id of the security group which the cluster belongs to. If this parameter is empty, MRS automatically creates a security group, whose name starts with mrs_{cluster_name}.
- State string
- Cluster creation fee, which is automatically calculated.
- Streaming
Core MrsNodes Hybrid Cluster V1Streaming Core Nodes - Specifies the streaming core nodes information.
- Streaming
Task MrsNodes Hybrid Cluster V1Streaming Task Nodes - Specifies the streaming task nodes information.
- Subnet
Id string - Specifies the ID of the VPC Subnet.
- Timeouts
Mrs
Hybrid Cluster V1Timeouts - Total
Node doubleNumber - Total node number.
- Update
At string - Cluster update time.
- Vnc string
- URI address for remote login of the elastic cloud server.
- Vpc
Id string - Specifies the id of the VPC.
- Analysis
Core MrsNodes Hybrid Cluster V1Analysis Core Nodes Args - Specifies the analysis core nodes information.
- Analysis
Task MrsNodes Hybrid Cluster V1Analysis Task Nodes Args - Specifies the analysis task nodes information.
- Available
Zone string - ID or Name of an available zone. Obtain the value from Regions and Endpoints.
- Billing
Type string - The value is Metered, indicating on-demand payment.
- Charging
Start stringTime - Time when charging starts.
- Cluster
Admin stringSecret - Indicates the password of the MRS Manager administrator.
- Must contain 8 to 32 characters.
- Must contain at least three types of the following: Lowercase letters, Uppercase letters, Digits, Special characters of `~!@#$%^&*()-_=+|[{}];:'",<.>/? and Spaces.
- Must be different from the username.
- Must be different from the username written in reverse order. For versions earlier than MRS 2.0.1, this parameter is mandatory only when safe_mode is set to 1. For MRS 2.0.1 or later, this parameter is mandatory no matter which value safe_mode is set to.
- Cluster
Name string - Cluster name, which is globally unique and contains only 1 to 64 letters, digits, hyphens (-), and underscores (_).
- Cluster
Version string - Version of the clusters. Possible values are as follows: MRS 1.8.9, MRS 2.0.1, MRS 2.1.0 and MRS 3.1.0-LTS.1.
- Component
Lists []string - Component name
- Presto, Hadoop, Spark, HBase, Hive, Tez, Hue, Loader, Flume, Kafka and Storm are supported by MRS 2.0.1 or later.
- Presto, Hadoop, Spark, HBase, Opentsdb, Hive, Hue, Loader, Flink, Flume, Kafka, KafkaManager and Storm are supported by MRS 1.8.9.
- Hadoop, Spark, HBase, Hive, Hue, Loader, Flume, Kafka and Storm are supported by versions earlier than MRS 1.8.9.
- Components
[]Mrs
Hybrid Cluster V1Component Args - Create
At string - Cluster creation time.
- External
Alternate stringIp - Backup external IP address.
- External
Ip string - External IP address.
- Internal
Ip string - Iternal IP address.
- Log
Collection float64 - Indicates whether logs are collected when cluster installation fails. 0: not collected 1: collected The default value is 0. If log_collection is set to 1, OBS buckets will be created to collect the MRS logs. These buckets will be charged.
- Master
Node stringIp - IP address of a Master node.
- Master
Node stringKey Pair - Name of a key pair You can use a key to log in to the Master node in the cluster.
- Master
Nodes MrsHybrid Cluster V1Master Nodes Args - Specifies the master nodes information.
- Mrs
Hybrid stringCluster V1Id - The resource ID in UUID format.
- Private
Ip stringFirst - Primary private IP address.
- Region string
- Cluster region information. Obtain the value from Regions and Endpoints.
- Safe
Mode float64 MRS cluster running mode
- 0: common mode
The value indicates that the Kerberos authentication is disabled. Users can use all functions provided by the cluster.
- 1: safe mode (by default)
The value indicates that the Kerberos authentication is enabled. Common users cannot use the file management or job management functions of an MRS cluster and cannot view cluster resource usage or the job records of Hadoop and Spark. To use these functions, the users must obtain the relevant permissions from the MRS Manager administrator. The request has the cluster_admin_secret parameter only when safe_mode is set to 1.
- Security
Group stringId - Specifies the id of the security group which the cluster belongs to. If this parameter is empty, MRS automatically creates a security group, whose name starts with mrs_{cluster_name}.
- State string
- Cluster creation fee, which is automatically calculated.
- Streaming
Core MrsNodes Hybrid Cluster V1Streaming Core Nodes Args - Specifies the streaming core nodes information.
- Streaming
Task MrsNodes Hybrid Cluster V1Streaming Task Nodes Args - Specifies the streaming task nodes information.
- Subnet
Id string - Specifies the ID of the VPC Subnet.
- Timeouts
Mrs
Hybrid Cluster V1Timeouts Args - Total
Node float64Number - Total node number.
- Update
At string - Cluster update time.
- Vnc string
- URI address for remote login of the elastic cloud server.
- Vpc
Id string - Specifies the id of the VPC.
- analysis
Core MrsNodes Hybrid Cluster V1Analysis Core Nodes - Specifies the analysis core nodes information.
- analysis
Task MrsNodes Hybrid Cluster V1Analysis Task Nodes - Specifies the analysis task nodes information.
- available
Zone String - ID or Name of an available zone. Obtain the value from Regions and Endpoints.
- billing
Type String - The value is Metered, indicating on-demand payment.
- charging
Start StringTime - Time when charging starts.
- cluster
Admin StringSecret - Indicates the password of the MRS Manager administrator.
- Must contain 8 to 32 characters.
- Must contain at least three types of the following: Lowercase letters, Uppercase letters, Digits, Special characters of `~!@#$%^&*()-_=+|[{}];:'",<.>/? and Spaces.
- Must be different from the username.
- Must be different from the username written in reverse order. For versions earlier than MRS 2.0.1, this parameter is mandatory only when safe_mode is set to 1. For MRS 2.0.1 or later, this parameter is mandatory no matter which value safe_mode is set to.
- cluster
Name String - Cluster name, which is globally unique and contains only 1 to 64 letters, digits, hyphens (-), and underscores (_).
- cluster
Version String - Version of the clusters. Possible values are as follows: MRS 1.8.9, MRS 2.0.1, MRS 2.1.0 and MRS 3.1.0-LTS.1.
- component
Lists List<String> - Component name
- Presto, Hadoop, Spark, HBase, Hive, Tez, Hue, Loader, Flume, Kafka and Storm are supported by MRS 2.0.1 or later.
- Presto, Hadoop, Spark, HBase, Opentsdb, Hive, Hue, Loader, Flink, Flume, Kafka, KafkaManager and Storm are supported by MRS 1.8.9.
- Hadoop, Spark, HBase, Hive, Hue, Loader, Flume, Kafka and Storm are supported by versions earlier than MRS 1.8.9.
- components
List<Mrs
Hybrid Cluster V1Component> - create
At String - Cluster creation time.
- external
Alternate StringIp - Backup external IP address.
- external
Ip String - External IP address.
- internal
Ip String - Iternal IP address.
- log
Collection Double - Indicates whether logs are collected when cluster installation fails. 0: not collected 1: collected The default value is 0. If log_collection is set to 1, OBS buckets will be created to collect the MRS logs. These buckets will be charged.
- master
Node StringIp - IP address of a Master node.
- master
Node StringKey Pair - Name of a key pair You can use a key to log in to the Master node in the cluster.
- master
Nodes MrsHybrid Cluster V1Master Nodes - Specifies the master nodes information.
- mrs
Hybrid StringCluster V1Id - The resource ID in UUID format.
- private
Ip StringFirst - Primary private IP address.
- region String
- Cluster region information. Obtain the value from Regions and Endpoints.
- safe
Mode Double MRS cluster running mode
- 0: common mode
The value indicates that the Kerberos authentication is disabled. Users can use all functions provided by the cluster.
- 1: safe mode (by default)
The value indicates that the Kerberos authentication is enabled. Common users cannot use the file management or job management functions of an MRS cluster and cannot view cluster resource usage or the job records of Hadoop and Spark. To use these functions, the users must obtain the relevant permissions from the MRS Manager administrator. The request has the cluster_admin_secret parameter only when safe_mode is set to 1.
- security
Group StringId - Specifies the id of the security group which the cluster belongs to. If this parameter is empty, MRS automatically creates a security group, whose name starts with mrs_{cluster_name}.
- state String
- Cluster creation fee, which is automatically calculated.
- streaming
Core MrsNodes Hybrid Cluster V1Streaming Core Nodes - Specifies the streaming core nodes information.
- streaming
Task MrsNodes Hybrid Cluster V1Streaming Task Nodes - Specifies the streaming task nodes information.
- subnet
Id String - Specifies the ID of the VPC Subnet.
- timeouts
Mrs
Hybrid Cluster V1Timeouts - total
Node DoubleNumber - Total node number.
- update
At String - Cluster update time.
- vnc String
- URI address for remote login of the elastic cloud server.
- vpc
Id String - Specifies the id of the VPC.
- analysis
Core MrsNodes Hybrid Cluster V1Analysis Core Nodes - Specifies the analysis core nodes information.
- analysis
Task MrsNodes Hybrid Cluster V1Analysis Task Nodes - Specifies the analysis task nodes information.
- available
Zone string - ID or Name of an available zone. Obtain the value from Regions and Endpoints.
- billing
Type string - The value is Metered, indicating on-demand payment.
- charging
Start stringTime - Time when charging starts.
- cluster
Admin stringSecret - Indicates the password of the MRS Manager administrator.
- Must contain 8 to 32 characters.
- Must contain at least three types of the following: Lowercase letters, Uppercase letters, Digits, Special characters of `~!@#$%^&*()-_=+|[{}];:'",<.>/? and Spaces.
- Must be different from the username.
- Must be different from the username written in reverse order. For versions earlier than MRS 2.0.1, this parameter is mandatory only when safe_mode is set to 1. For MRS 2.0.1 or later, this parameter is mandatory no matter which value safe_mode is set to.
- cluster
Name string - Cluster name, which is globally unique and contains only 1 to 64 letters, digits, hyphens (-), and underscores (_).
- cluster
Version string - Version of the clusters. Possible values are as follows: MRS 1.8.9, MRS 2.0.1, MRS 2.1.0 and MRS 3.1.0-LTS.1.
- component
Lists string[] - Component name
- Presto, Hadoop, Spark, HBase, Hive, Tez, Hue, Loader, Flume, Kafka and Storm are supported by MRS 2.0.1 or later.
- Presto, Hadoop, Spark, HBase, Opentsdb, Hive, Hue, Loader, Flink, Flume, Kafka, KafkaManager and Storm are supported by MRS 1.8.9.
- Hadoop, Spark, HBase, Hive, Hue, Loader, Flume, Kafka and Storm are supported by versions earlier than MRS 1.8.9.
- components
Mrs
Hybrid Cluster V1Component[] - create
At string - Cluster creation time.
- external
Alternate stringIp - Backup external IP address.
- external
Ip string - External IP address.
- internal
Ip string - Iternal IP address.
- log
Collection number - Indicates whether logs are collected when cluster installation fails. 0: not collected 1: collected The default value is 0. If log_collection is set to 1, OBS buckets will be created to collect the MRS logs. These buckets will be charged.
- master
Node stringIp - IP address of a Master node.
- master
Node stringKey Pair - Name of a key pair You can use a key to log in to the Master node in the cluster.
- master
Nodes MrsHybrid Cluster V1Master Nodes - Specifies the master nodes information.
- mrs
Hybrid stringCluster V1Id - The resource ID in UUID format.
- private
Ip stringFirst - Primary private IP address.
- region string
- Cluster region information. Obtain the value from Regions and Endpoints.
- safe
Mode number MRS cluster running mode
- 0: common mode
The value indicates that the Kerberos authentication is disabled. Users can use all functions provided by the cluster.
- 1: safe mode (by default)
The value indicates that the Kerberos authentication is enabled. Common users cannot use the file management or job management functions of an MRS cluster and cannot view cluster resource usage or the job records of Hadoop and Spark. To use these functions, the users must obtain the relevant permissions from the MRS Manager administrator. The request has the cluster_admin_secret parameter only when safe_mode is set to 1.
- security
Group stringId - Specifies the id of the security group which the cluster belongs to. If this parameter is empty, MRS automatically creates a security group, whose name starts with mrs_{cluster_name}.
- state string
- Cluster creation fee, which is automatically calculated.
- streaming
Core MrsNodes Hybrid Cluster V1Streaming Core Nodes - Specifies the streaming core nodes information.
- streaming
Task MrsNodes Hybrid Cluster V1Streaming Task Nodes - Specifies the streaming task nodes information.
- subnet
Id string - Specifies the ID of the VPC Subnet.
- timeouts
Mrs
Hybrid Cluster V1Timeouts - total
Node numberNumber - Total node number.
- update
At string - Cluster update time.
- vnc string
- URI address for remote login of the elastic cloud server.
- vpc
Id string - Specifies the id of the VPC.
- analysis_
core_ Mrsnodes Hybrid Cluster V1Analysis Core Nodes Args - Specifies the analysis core nodes information.
- analysis_
task_ Mrsnodes Hybrid Cluster V1Analysis Task Nodes Args - Specifies the analysis task nodes information.
- available_
zone str - ID or Name of an available zone. Obtain the value from Regions and Endpoints.
- billing_
type str - The value is Metered, indicating on-demand payment.
- charging_
start_ strtime - Time when charging starts.
- cluster_
admin_ strsecret - Indicates the password of the MRS Manager administrator.
- Must contain 8 to 32 characters.
- Must contain at least three types of the following: Lowercase letters, Uppercase letters, Digits, Special characters of `~!@#$%^&*()-_=+|[{}];:'",<.>/? and Spaces.
- Must be different from the username.
- Must be different from the username written in reverse order. For versions earlier than MRS 2.0.1, this parameter is mandatory only when safe_mode is set to 1. For MRS 2.0.1 or later, this parameter is mandatory no matter which value safe_mode is set to.
- cluster_
name str - Cluster name, which is globally unique and contains only 1 to 64 letters, digits, hyphens (-), and underscores (_).
- cluster_
version str - Version of the clusters. Possible values are as follows: MRS 1.8.9, MRS 2.0.1, MRS 2.1.0 and MRS 3.1.0-LTS.1.
- component_
lists Sequence[str] - Component name
- Presto, Hadoop, Spark, HBase, Hive, Tez, Hue, Loader, Flume, Kafka and Storm are supported by MRS 2.0.1 or later.
- Presto, Hadoop, Spark, HBase, Opentsdb, Hive, Hue, Loader, Flink, Flume, Kafka, KafkaManager and Storm are supported by MRS 1.8.9.
- Hadoop, Spark, HBase, Hive, Hue, Loader, Flume, Kafka and Storm are supported by versions earlier than MRS 1.8.9.
- components
Sequence[Mrs
Hybrid Cluster V1Component Args] - create_
at str - Cluster creation time.
- external_
alternate_ strip - Backup external IP address.
- external_
ip str - External IP address.
- internal_
ip str - Iternal IP address.
- log_
collection float - Indicates whether logs are collected when cluster installation fails. 0: not collected 1: collected The default value is 0. If log_collection is set to 1, OBS buckets will be created to collect the MRS logs. These buckets will be charged.
- master_
node_ strip - IP address of a Master node.
- master_
node_ strkey_ pair - Name of a key pair You can use a key to log in to the Master node in the cluster.
- master_
nodes MrsHybrid Cluster V1Master Nodes Args - Specifies the master nodes information.
- mrs_
hybrid_ strcluster_ v1_ id - The resource ID in UUID format.
- private_
ip_ strfirst - Primary private IP address.
- region str
- Cluster region information. Obtain the value from Regions and Endpoints.
- safe_
mode float MRS cluster running mode
- 0: common mode
The value indicates that the Kerberos authentication is disabled. Users can use all functions provided by the cluster.
- 1: safe mode (by default)
The value indicates that the Kerberos authentication is enabled. Common users cannot use the file management or job management functions of an MRS cluster and cannot view cluster resource usage or the job records of Hadoop and Spark. To use these functions, the users must obtain the relevant permissions from the MRS Manager administrator. The request has the cluster_admin_secret parameter only when safe_mode is set to 1.
- security_
group_ strid - Specifies the id of the security group which the cluster belongs to. If this parameter is empty, MRS automatically creates a security group, whose name starts with mrs_{cluster_name}.
- state str
- Cluster creation fee, which is automatically calculated.
- streaming_
core_ Mrsnodes Hybrid Cluster V1Streaming Core Nodes Args - Specifies the streaming core nodes information.
- streaming_
task_ Mrsnodes Hybrid Cluster V1Streaming Task Nodes Args - Specifies the streaming task nodes information.
- subnet_
id str - Specifies the ID of the VPC Subnet.
- timeouts
Mrs
Hybrid Cluster V1Timeouts Args - total_
node_ floatnumber - Total node number.
- update_
at str - Cluster update time.
- vnc str
- URI address for remote login of the elastic cloud server.
- vpc_
id str - Specifies the id of the VPC.
- analysis
Core Property MapNodes - Specifies the analysis core nodes information.
- analysis
Task Property MapNodes - Specifies the analysis task nodes information.
- available
Zone String - ID or Name of an available zone. Obtain the value from Regions and Endpoints.
- billing
Type String - The value is Metered, indicating on-demand payment.
- charging
Start StringTime - Time when charging starts.
- cluster
Admin StringSecret - Indicates the password of the MRS Manager administrator.
- Must contain 8 to 32 characters.
- Must contain at least three types of the following: Lowercase letters, Uppercase letters, Digits, Special characters of `~!@#$%^&*()-_=+|[{}];:'",<.>/? and Spaces.
- Must be different from the username.
- Must be different from the username written in reverse order. For versions earlier than MRS 2.0.1, this parameter is mandatory only when safe_mode is set to 1. For MRS 2.0.1 or later, this parameter is mandatory no matter which value safe_mode is set to.
- cluster
Name String - Cluster name, which is globally unique and contains only 1 to 64 letters, digits, hyphens (-), and underscores (_).
- cluster
Version String - Version of the clusters. Possible values are as follows: MRS 1.8.9, MRS 2.0.1, MRS 2.1.0 and MRS 3.1.0-LTS.1.
- component
Lists List<String> - Component name
- Presto, Hadoop, Spark, HBase, Hive, Tez, Hue, Loader, Flume, Kafka and Storm are supported by MRS 2.0.1 or later.
- Presto, Hadoop, Spark, HBase, Opentsdb, Hive, Hue, Loader, Flink, Flume, Kafka, KafkaManager and Storm are supported by MRS 1.8.9.
- Hadoop, Spark, HBase, Hive, Hue, Loader, Flume, Kafka and Storm are supported by versions earlier than MRS 1.8.9.
- components List<Property Map>
- create
At String - Cluster creation time.
- external
Alternate StringIp - Backup external IP address.
- external
Ip String - External IP address.
- internal
Ip String - Iternal IP address.
- log
Collection Number - Indicates whether logs are collected when cluster installation fails. 0: not collected 1: collected The default value is 0. If log_collection is set to 1, OBS buckets will be created to collect the MRS logs. These buckets will be charged.
- master
Node StringIp - IP address of a Master node.
- master
Node StringKey Pair - Name of a key pair You can use a key to log in to the Master node in the cluster.
- master
Nodes Property Map - Specifies the master nodes information.
- mrs
Hybrid StringCluster V1Id - The resource ID in UUID format.
- private
Ip StringFirst - Primary private IP address.
- region String
- Cluster region information. Obtain the value from Regions and Endpoints.
- safe
Mode Number MRS cluster running mode
- 0: common mode
The value indicates that the Kerberos authentication is disabled. Users can use all functions provided by the cluster.
- 1: safe mode (by default)
The value indicates that the Kerberos authentication is enabled. Common users cannot use the file management or job management functions of an MRS cluster and cannot view cluster resource usage or the job records of Hadoop and Spark. To use these functions, the users must obtain the relevant permissions from the MRS Manager administrator. The request has the cluster_admin_secret parameter only when safe_mode is set to 1.
- security
Group StringId - Specifies the id of the security group which the cluster belongs to. If this parameter is empty, MRS automatically creates a security group, whose name starts with mrs_{cluster_name}.
- state String
- Cluster creation fee, which is automatically calculated.
- streaming
Core Property MapNodes - Specifies the streaming core nodes information.
- streaming
Task Property MapNodes - Specifies the streaming task nodes information.
- subnet
Id String - Specifies the ID of the VPC Subnet.
- timeouts Property Map
- total
Node NumberNumber - Total node number.
- update
At String - Cluster update time.
- vnc String
- URI address for remote login of the elastic cloud server.
- vpc
Id String - Specifies the id of the VPC.
Supporting Types
MrsHybridClusterV1AnalysisCoreNodes, MrsHybridClusterV1AnalysisCoreNodesArgs
- Data
Volume doubleCount - Number of data disks of the node Value range: 0 to 10
- Data
Volume doubleSize - Data disk size of the node Value range: 100 GB to 32000 GB
- Data
Volume stringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- Flavor string
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- Node
Number double - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- Root
Volume doubleSize - Root
Volume stringType
- Data
Volume float64Count - Number of data disks of the node Value range: 0 to 10
- Data
Volume float64Size - Data disk size of the node Value range: 100 GB to 32000 GB
- Data
Volume stringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- Flavor string
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- Node
Number float64 - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- Root
Volume float64Size - Root
Volume stringType
- data
Volume DoubleCount - Number of data disks of the node Value range: 0 to 10
- data
Volume DoubleSize - Data disk size of the node Value range: 100 GB to 32000 GB
- data
Volume StringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- flavor String
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- node
Number Double - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- root
Volume DoubleSize - root
Volume StringType
- data
Volume numberCount - Number of data disks of the node Value range: 0 to 10
- data
Volume numberSize - Data disk size of the node Value range: 100 GB to 32000 GB
- data
Volume stringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- flavor string
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- node
Number number - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- root
Volume numberSize - root
Volume stringType
- data_
volume_ floatcount - Number of data disks of the node Value range: 0 to 10
- data_
volume_ floatsize - Data disk size of the node Value range: 100 GB to 32000 GB
- data_
volume_ strtype - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- flavor str
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- node_
number float - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- root_
volume_ floatsize - root_
volume_ strtype
- data
Volume NumberCount - Number of data disks of the node Value range: 0 to 10
- data
Volume NumberSize - Data disk size of the node Value range: 100 GB to 32000 GB
- data
Volume StringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- flavor String
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- node
Number Number - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- root
Volume NumberSize - root
Volume StringType
MrsHybridClusterV1AnalysisTaskNodes, MrsHybridClusterV1AnalysisTaskNodesArgs
- Data
Volume doubleCount - Number of data disks of the node Value range: 0 to 10
- Data
Volume doubleSize - Data disk size of the node Value range: 100 GB to 32000 GB
- Data
Volume stringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- Flavor string
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- Node
Number double - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- Root
Volume doubleSize - Root
Volume stringType
- Data
Volume float64Count - Number of data disks of the node Value range: 0 to 10
- Data
Volume float64Size - Data disk size of the node Value range: 100 GB to 32000 GB
- Data
Volume stringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- Flavor string
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- Node
Number float64 - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- Root
Volume float64Size - Root
Volume stringType
- data
Volume DoubleCount - Number of data disks of the node Value range: 0 to 10
- data
Volume DoubleSize - Data disk size of the node Value range: 100 GB to 32000 GB
- data
Volume StringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- flavor String
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- node
Number Double - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- root
Volume DoubleSize - root
Volume StringType
- data
Volume numberCount - Number of data disks of the node Value range: 0 to 10
- data
Volume numberSize - Data disk size of the node Value range: 100 GB to 32000 GB
- data
Volume stringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- flavor string
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- node
Number number - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- root
Volume numberSize - root
Volume stringType
- data_
volume_ floatcount - Number of data disks of the node Value range: 0 to 10
- data_
volume_ floatsize - Data disk size of the node Value range: 100 GB to 32000 GB
- data_
volume_ strtype - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- flavor str
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- node_
number float - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- root_
volume_ floatsize - root_
volume_ strtype
- data
Volume NumberCount - Number of data disks of the node Value range: 0 to 10
- data
Volume NumberSize - Data disk size of the node Value range: 100 GB to 32000 GB
- data
Volume StringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- flavor String
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- node
Number Number - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- root
Volume NumberSize - root
Volume StringType
MrsHybridClusterV1Component, MrsHybridClusterV1ComponentArgs
- Component
Desc string - Component description.
- Component
Id string - Component ID. For example, component_id of Hadoop is MRS 3.1.0-LTS.1_001, MRS 2.1.0_001, MRS 2.0.1_001, and MRS 1.8.9_001.
- Component
Name string - Component name.
- Component
Version string - Component version.
- Component
Desc string - Component description.
- Component
Id string - Component ID. For example, component_id of Hadoop is MRS 3.1.0-LTS.1_001, MRS 2.1.0_001, MRS 2.0.1_001, and MRS 1.8.9_001.
- Component
Name string - Component name.
- Component
Version string - Component version.
- component
Desc String - Component description.
- component
Id String - Component ID. For example, component_id of Hadoop is MRS 3.1.0-LTS.1_001, MRS 2.1.0_001, MRS 2.0.1_001, and MRS 1.8.9_001.
- component
Name String - Component name.
- component
Version String - Component version.
- component
Desc string - Component description.
- component
Id string - Component ID. For example, component_id of Hadoop is MRS 3.1.0-LTS.1_001, MRS 2.1.0_001, MRS 2.0.1_001, and MRS 1.8.9_001.
- component
Name string - Component name.
- component
Version string - Component version.
- component_
desc str - Component description.
- component_
id str - Component ID. For example, component_id of Hadoop is MRS 3.1.0-LTS.1_001, MRS 2.1.0_001, MRS 2.0.1_001, and MRS 1.8.9_001.
- component_
name str - Component name.
- component_
version str - Component version.
- component
Desc String - Component description.
- component
Id String - Component ID. For example, component_id of Hadoop is MRS 3.1.0-LTS.1_001, MRS 2.1.0_001, MRS 2.0.1_001, and MRS 1.8.9_001.
- component
Name String - Component name.
- component
Version String - Component version.
MrsHybridClusterV1MasterNodes, MrsHybridClusterV1MasterNodesArgs
- Data
Volume doubleCount - Number of data disks of the node Value range: 0 to 10
- Data
Volume doubleSize - Data disk size of the node Value range: 100 GB to 32000 GB
- Data
Volume stringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- Flavor string
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- Node
Number double - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- Root
Volume doubleSize - Root
Volume stringType
- Data
Volume float64Count - Number of data disks of the node Value range: 0 to 10
- Data
Volume float64Size - Data disk size of the node Value range: 100 GB to 32000 GB
- Data
Volume stringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- Flavor string
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- Node
Number float64 - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- Root
Volume float64Size - Root
Volume stringType
- data
Volume DoubleCount - Number of data disks of the node Value range: 0 to 10
- data
Volume DoubleSize - Data disk size of the node Value range: 100 GB to 32000 GB
- data
Volume StringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- flavor String
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- node
Number Double - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- root
Volume DoubleSize - root
Volume StringType
- data
Volume numberCount - Number of data disks of the node Value range: 0 to 10
- data
Volume numberSize - Data disk size of the node Value range: 100 GB to 32000 GB
- data
Volume stringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- flavor string
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- node
Number number - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- root
Volume numberSize - root
Volume stringType
- data_
volume_ floatcount - Number of data disks of the node Value range: 0 to 10
- data_
volume_ floatsize - Data disk size of the node Value range: 100 GB to 32000 GB
- data_
volume_ strtype - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- flavor str
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- node_
number float - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- root_
volume_ floatsize - root_
volume_ strtype
- data
Volume NumberCount - Number of data disks of the node Value range: 0 to 10
- data
Volume NumberSize - Data disk size of the node Value range: 100 GB to 32000 GB
- data
Volume StringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- flavor String
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- node
Number Number - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- root
Volume NumberSize - root
Volume StringType
MrsHybridClusterV1StreamingCoreNodes, MrsHybridClusterV1StreamingCoreNodesArgs
- Data
Volume doubleCount - Number of data disks of the node Value range: 0 to 10
- Data
Volume doubleSize - Data disk size of the node Value range: 100 GB to 32000 GB
- Data
Volume stringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- Flavor string
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- Node
Number double - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- Root
Volume doubleSize - Root
Volume stringType
- Data
Volume float64Count - Number of data disks of the node Value range: 0 to 10
- Data
Volume float64Size - Data disk size of the node Value range: 100 GB to 32000 GB
- Data
Volume stringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- Flavor string
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- Node
Number float64 - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- Root
Volume float64Size - Root
Volume stringType
- data
Volume DoubleCount - Number of data disks of the node Value range: 0 to 10
- data
Volume DoubleSize - Data disk size of the node Value range: 100 GB to 32000 GB
- data
Volume StringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- flavor String
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- node
Number Double - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- root
Volume DoubleSize - root
Volume StringType
- data
Volume numberCount - Number of data disks of the node Value range: 0 to 10
- data
Volume numberSize - Data disk size of the node Value range: 100 GB to 32000 GB
- data
Volume stringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- flavor string
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- node
Number number - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- root
Volume numberSize - root
Volume stringType
- data_
volume_ floatcount - Number of data disks of the node Value range: 0 to 10
- data_
volume_ floatsize - Data disk size of the node Value range: 100 GB to 32000 GB
- data_
volume_ strtype - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- flavor str
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- node_
number float - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- root_
volume_ floatsize - root_
volume_ strtype
- data
Volume NumberCount - Number of data disks of the node Value range: 0 to 10
- data
Volume NumberSize - Data disk size of the node Value range: 100 GB to 32000 GB
- data
Volume StringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- flavor String
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- node
Number Number - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- root
Volume NumberSize - root
Volume StringType
MrsHybridClusterV1StreamingTaskNodes, MrsHybridClusterV1StreamingTaskNodesArgs
- Data
Volume doubleCount - Number of data disks of the node Value range: 0 to 10
- Data
Volume doubleSize - Data disk size of the node Value range: 100 GB to 32000 GB
- Data
Volume stringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- Flavor string
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- Node
Number double - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- Root
Volume doubleSize - Root
Volume stringType
- Data
Volume float64Count - Number of data disks of the node Value range: 0 to 10
- Data
Volume float64Size - Data disk size of the node Value range: 100 GB to 32000 GB
- Data
Volume stringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- Flavor string
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- Node
Number float64 - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- Root
Volume float64Size - Root
Volume stringType
- data
Volume DoubleCount - Number of data disks of the node Value range: 0 to 10
- data
Volume DoubleSize - Data disk size of the node Value range: 100 GB to 32000 GB
- data
Volume StringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- flavor String
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- node
Number Double - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- root
Volume DoubleSize - root
Volume StringType
- data
Volume numberCount - Number of data disks of the node Value range: 0 to 10
- data
Volume numberSize - Data disk size of the node Value range: 100 GB to 32000 GB
- data
Volume stringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- flavor string
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- node
Number number - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- root
Volume numberSize - root
Volume stringType
- data_
volume_ floatcount - Number of data disks of the node Value range: 0 to 10
- data_
volume_ floatsize - Data disk size of the node Value range: 100 GB to 32000 GB
- data_
volume_ strtype - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- flavor str
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- node_
number float - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- root_
volume_ floatsize - root_
volume_ strtype
- data
Volume NumberCount - Number of data disks of the node Value range: 0 to 10
- data
Volume NumberSize - Data disk size of the node Value range: 100 GB to 32000 GB
- data
Volume StringType - Data disk storage type of the node, supporting SATA and SSD currently
- SATA: common I/O
- SSD: Ultrahigh-speed I/O
- flavor String
Best match based on several years of commissioning experience. MRS supports specifications of hosts, and host specifications are determined by CPUs, memory, and disks space.
- Master nodes support s1.4xlarge and s1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of a streaming cluster support s1.xlarge, c2.2xlarge, s1.2xlarge, s1.4xlarge, s1.8xlarge, d1.8xlarge, c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4.
- Core nodes of an analysis cluster support all specifications c2.2xlarge, s1.xlarge, s1.4xlarge, s1.8xlarge, d1.xlarge, d1.2xlarge, d1.4xlarge, d1.8xlarge, , c3.2xlarge.2, c3.xlarge.4, c3.2xlarge.4, c3.4xlarge.2, c3.4xlarge.4, c3.8xlarge.4, c3.15xlarge.4, d2.xlarge.8, d2.2xlarge.8, d2.4xlarge.8, d2.8xlarge.8.
The following provides specification details.
node_size | CPU(core) | Memory(GB) | System Disk | Data Disk --- | --- | --- | --- | --- c2.2xlarge.linux.mrs | 8 | 16 | 40 | - cc3.xlarge.4.linux.mrs | 4 | 16 | 40 | - cc3.2xlarge.4.linux.mrs | 8 | 32 | 40 | - cc3.4xlarge.4.linux.mrs | 16 | 64 | 40 | - cc3.8xlarge.4.linux.mrs | 32 | 128 | 40 | - s1.xlarge.linux.mrs | 4 | 16 | 40 | - s1.4xlarge.linux.mrs | 16 | 64 | 40 | - s1.8xlarge.linux.mrs | 32 | 128 | 40 | - s3.xlarge.4.linux.mrs| 4 | 16 | 40 | - s3.2xlarge.4.linux.mrs| 8 | 32 | 40 | - s3.4xlarge.4.linux.mrs| 16 | 64 | 40 | - d1.xlarge.linux.mrs | 6 | 55 | 40 | 1.8 TB x 3 HDDs d1.2xlarge.linux.mrs | 12 | 110 | 40 | 1.8 TB x 6 HDDs d1.4xlarge.linux.mrs | 24 | 220 | 40 | 1.8 TB x 12 HDDs d1.8xlarge.linux.mrs | 48 | 440 | 40 | 1.8 TB x 24 HDDs d2.xlarge.linux.mrs | 4 | 32 | 40 | - d2.2xlarge.linux.mrs | 8 | 64 | 40 | - d2.4xlarge.linux.mrs | 16 | 128 | 40 | 1.8TB8HDDs d2.8xlarge.linux.mrs | 32 | 256 | 40 | 1.8TB16HDDs
- node
Number Number - Number of nodes. The value ranges from 0 to 500 and the default value is 0. The total number of Core and Task nodes cannot exceed 500.
- root
Volume NumberSize - root
Volume StringType
MrsHybridClusterV1Timeouts, MrsHybridClusterV1TimeoutsArgs
Package Details
- Repository
- flexibleengine flexibleenginecloud/terraform-provider-flexibleengine
- License
- Notes
- This Pulumi package is based on the
flexibleengine
Terraform Provider.