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

The following fields are returned by SELECT queries:

Successfully listed the streaming jobs in the specified cluster.

NameDatatypeDescription
idstringResource ID of the streaming job.
jobStatestringThe current execution state of the streaming job.
streamingUnitsinteger (int32)The number of streaming units that are used by the streaming job.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, clusterNameLists all of the streaming jobs in the given cluster.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
clusterNamestringThe name of the cluster.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Lists all of the streaming jobs in the given cluster.

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