Skip to main content

big_data_pools

Creates, updates, deletes, gets or lists a big_data_pools resource.

Overview

Namebig_data_pools
TypeResource
Idazure.synapse.big_data_pools

Fields

NameDatatypeDescription
auto_pausetextfield from the properties object
auto_scaletextfield from the properties object
bigDataPoolNametextfield from the properties object
cache_sizetextfield from the properties object
creation_datetextfield from the properties object
custom_librariestextfield from the properties object
default_spark_log_foldertextfield from the properties object
dynamic_executor_allocationtextfield from the properties object
is_autotune_enabledtextfield from the properties object
is_compute_isolation_enabledtextfield from the properties object
last_succeeded_timestamptextfield from the properties object
library_requirementstextfield from the properties object
locationtextThe geo-location where the resource lives
node_counttextfield from the properties object
node_sizetextfield from the properties object
node_size_familytextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
session_level_packages_enabledtextfield from the properties object
spark_config_propertiestextfield from the properties object
spark_events_foldertextfield from the properties object
spark_versiontextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextResource tags.
workspaceNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTbigDataPoolName, resourceGroupName, subscriptionId, workspaceNameGet a Big Data pool.
list_by_workspaceSELECTresourceGroupName, subscriptionId, workspaceNameList Big Data pools in a workspace.
create_or_updateINSERTbigDataPoolName, resourceGroupName, subscriptionId, workspaceNameCreate a new Big Data pool.
deleteDELETEbigDataPoolName, resourceGroupName, subscriptionId, workspaceNameDelete a Big Data pool from the workspace.
updateUPDATEbigDataPoolName, resourceGroupName, subscriptionId, workspaceNamePatch a Big Data pool.

SELECT examples

List Big Data pools in a workspace.

SELECT
auto_pause,
auto_scale,
bigDataPoolName,
cache_size,
creation_date,
custom_libraries,
default_spark_log_folder,
dynamic_executor_allocation,
is_autotune_enabled,
is_compute_isolation_enabled,
last_succeeded_timestamp,
library_requirements,
location,
node_count,
node_size,
node_size_family,
provisioning_state,
resourceGroupName,
session_level_packages_enabled,
spark_config_properties,
spark_events_folder,
spark_version,
subscriptionId,
tags,
workspaceName
FROM azure.synapse.vw_big_data_pools
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';

INSERT example

Use the following StackQL query and manifest file to create a new big_data_pools resource.

/*+ create */
INSERT INTO azure.synapse.big_data_pools (
bigDataPoolName,
resourceGroupName,
subscriptionId,
workspaceName,
tags,
location,
properties
)
SELECT
'{{ bigDataPoolName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ workspaceName }}',
'{{ tags }}',
'{{ location }}',
'{{ properties }}'
;

UPDATE example

Updates a big_data_pools resource.

/*+ update */
UPDATE azure.synapse.big_data_pools
SET
tags = '{{ tags }}'
WHERE
bigDataPoolName = '{{ bigDataPoolName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';

DELETE example

Deletes the specified big_data_pools resource.

/*+ delete */
DELETE FROM azure.synapse.big_data_pools
WHERE bigDataPoolName = '{{ bigDataPoolName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';