{#if advancedSelected === 'retries'}
{:else if advancedSelected === 'early-stop'}
{:else if advancedSelected === 'suspend'}
{:else if advancedSelected === 'sleep'}
{:else if advancedSelected === 'cache'}
{:else if advancedSelected === 'mock'}
{:else if advancedSelected === 'timeout'}
{:else if advancedSelected === 'concurrency'}
Allowed concurrency within a given timeframe
{#if flowModule.value.type == 'rawscript'}
{:else}
The concurrency limit of a workspace script is only settable in the script
metadata itself. For hub scripts, this feature is non available yet.
{/if}
{:else if advancedSelected === 'same_worker'}
If shared directory is set, will share a folder that will be mounted on
`./shared` for each of them to pass data between each other.
{:else if advancedSelected === 'priority'}
0}
on:change={() => {
if (flowModule.priority) {
flowModule.priority = undefined
} else {
flowModule.priority = 100
}
}}
options={{
right: 'High priority flow step',
rightTooltip: `Jobs scheduled from this step when the flow is executed are labeled as high priority and take precedence over the other jobs in the jobs queue. ${
!$enterpriseLicense
? 'This is a feature only available on enterprise edition.'
: ''
}`
}}
>
{
if (flowModule.priority && flowModule.priority > 100) {
flowModule.priority = 100
} else if (flowModule.priority && flowModule.priority < 0) {
flowModule.priority = 0
}
}}
/>
{:else if advancedSelected === 's3'}
S3 snippets
Pull, push and aggregate snippets for S3, particularly useful for ETL
processes.