Skip to main content

node_types

Operations on a node_types resource.

Overview

Namenode_types
TypeResource
Iddatabricks_workspace.compute.node_types

Fields

NameDatatype
descriptionstring
categorystring
display_orderinteger
instance_type_idstring
is_deprecatedboolean
is_hiddenboolean
is_io_cache_enabledboolean
memory_mbinteger
node_instance_typeobject
node_type_idstring
num_coresinteger
num_gpusinteger
support_cluster_tagsboolean
support_ebs_volumesboolean
support_port_forwardingboolean
supports_elastic_diskboolean

Methods

NameAccessible byRequired ParamsDescription
listnodetypesSELECTdeployment_nameReturns 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 }}';