Skip to main content

clusters_streaming_jobs

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

Overview

Nameclusters_streaming_jobs
TypeResource
Idazure.stream_analytics.clusters_streaming_jobs

Fields

NameDatatypeDescription
idstringResource ID of the streaming job.
jobStatestringThe current execution state of the streaming job.
streamingUnitsintegerThe number of streaming units that are used by the streaming job.

Methods

NameAccessible byRequired ParamsDescription
listSELECTclusterName, resourceGroupName, subscriptionIdLists all of the streaming jobs in the given cluster.

SELECT examples

Lists all of the streaming jobs in the given cluster.

SELECT
id,
jobState,
streamingUnits
FROM azure.stream_analytics.clusters_streaming_jobs
WHERE clusterName = '{{ clusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';