Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix/add property v2 for duration #148

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion src/main/java/io/kestra/plugin/azure/datafactory/CreateRun.java
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,20 @@ public class CreateRun extends AbstractAzureIdentityConnection implements Runnab
@Builder.Default
private Property<Boolean> wait = Property.of(Boolean.TRUE);

@Schema(
title = "Wait until completion duration",
description = "Maximum duration to wait for the pipeline to resolve. After this time the task will time out"
)
@Builder.Default
private Property<Duration> waitUntilCompletion = Property.of(Duration.ofHours(1L));

@Schema(
title = "Completion check interval",
description = "The frequency with which the task checks whether the pipeline has completed."
)
@Builder.Default
private final Property<Duration> completionCheckInterval = Property.of(Duration.ofSeconds(5L));

@Override
public CreateRun.Output run(RunContext runContext) throws Exception {
Logger logger = runContext.logger();
Expand Down Expand Up @@ -151,6 +165,8 @@ public CreateRun.Output run(RunContext runContext) throws Exception {
.runId(runId)
.build();
}
final Duration completionCheckIntervalRendered = runContext.render(completionCheckInterval, Duration.class);
final Duration waitUntilCompletionRendered = runContext.render(waitUntilCompletion, Duration.class);

final AtomicReference<PipelineRun> runningPipelineResponse = new AtomicReference<>();
try {
Expand All @@ -163,7 +179,7 @@ public CreateRun.Output run(RunContext runContext) throws Exception {
}

return PIPELINE_SUCCEEDED_STATUS.equals(runStatus);
}, COMPLETION_CHECK_INTERVAL, WAIT_UNTIL_COMPLETION);
}, completionCheckIntervalRendered, waitUntilCompletionRendered);
} catch (TimeoutException | RuntimeException e) {
logger.error("Pipeline '{}' with runId '{} finished with status '{}'", pipelineName, runId, runningPipelineResponse.get().status());
throw new RuntimeException(runningPipelineResponse.get().message());
Expand Down