node_types
Operations on a node_types
resource.
Overview
Name | node_types |
Type | Resource |
Id | databricks_workspace.compute.node_types |
Fields
Name | Datatype |
---|---|
description | string |
category | string |
display_order | integer |
instance_type_id | string |
is_deprecated | boolean |
is_hidden | boolean |
is_io_cache_enabled | boolean |
memory_mb | integer |
node_instance_type | object |
node_type_id | string |
num_cores | integer |
num_gpus | integer |
support_cluster_tags | boolean |
support_ebs_volumes | boolean |
support_port_forwarding | boolean |
supports_elastic_disk | boolean |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
listnodetypes | SELECT | deployment_name | Returns a list of supported Spark node types. These node types can be used to launch a cluster. |
SELECT
examples
SELECT
description,
category,
display_order,
instance_type_id,
is_deprecated,
is_hidden,
is_io_cache_enabled,
memory_mb,
node_instance_type,
node_type_id,
num_cores,
num_gpus,
support_cluster_tags,
support_ebs_volumes,
support_port_forwarding,
supports_elastic_disk
FROM databricks_workspace.compute.node_types
WHERE deployment_name = '{{ deployment_name }}';