Stop pipeline after 24 hour - sql

I have a pipeline in which ingest data from an API and load them into an azure database. The pipeline is called by a trigger. The load time is normally 6 to 7 hours. But sometimes for some reason, the pipeline runs more than 24 hours and on the next day again is executed by the trigger. So I want to stop the pipeline, if pipeline it runs more than 24 hours. Appreciate any help.

In Azure Pipeline, set Timeout for agent job would achieve your demand. Each job has a timeout. If the job has not completed in the specified time, the server will cancel the job. It will attempt to signal the agent to stop, and it will mark the job as canceled: https://learn.microsoft.com/en-us/azure/devops/pipelines/process/runs?view=azure-devops#timeouts-and-disconnects
Set 1440 minutes for 24 hours.

Related

Slurm - job runs, gets data but gives TIMEOUT error

So I'm running some code which takes about 2 hours to run on the cluster. I configured the batch file with
# Set maximum wallclock time limit for this job
#Time Format = days-hours:minutes:seconds
#SBATCH --time=0-02:15:00
Just to give some overhead if the job slows for whatever reason. I checked the directory that the generated files are stored in and the simulation completes successfully every time. Despite this, slurm keeps the job running until it hits the max time. The .out file keeps saying
slurmstepd: *** JOB CANCELLED AT 2022-03-05T10:38:26 DUE TO TIME LIMIT ***
Any ideas why it doesn't show as complete instead?
In my opinion, this error is not related to Slurm rather about your application. Your application is somehow not sending the exit signal to the slurm.
You can use sstat -j jobid to see the status of the job, may be after 2 hours to see how the cpu consumption etc going and figure out what happens in your application (where it hangs after completion or so).

SSIS Package occasionally does not execute from SQL Job

I have an SSIS job that runs every 15 minutes. One of over 2 dozen that run on regular intervals throughout the day. Occasionally, they fail, the job fails before ever getting to the point where it executes the SSIS package. You can see below. I've attached an image of the report ssis execution. 3PM today it failed, going into the SSIS Report Execution, no entry was there for 3PM.
How do I debug this? It seems to happen in spurts. When 1 fails, all of a sudden 5 will fail at the same interval. They may pick up and run fine the next time, they may fail again.
JOB RUN: 'Production_365_To_DW_Full_Sync' was run on 9/9/2020 at 3:00:00 PM
DURATION: 0 hours, 0 minutes, 20 seconds
STATUS: Failed
MESSAGES: The job failed. The Job was invoked by Schedule 29 (Every 30 Minutes). The last step to run was step 1 (Execute SSIS).

Why is the query for the scheduled query is running but not as Scheduled query in Bigquery?

I have a query which will run if I simply run it through console or from code.
When I created Scheduled Query for the Query, it would not run. The Scheduled Query is successfully created, and the interval I set (every 2 hours) is correctly implemented but only the jobs are not created (I can see in Scheduled query that the time to run is being incremented by 2 hours every time it is supposed to run).
These are the properties when running query from Scheduled query:
Overwrite table, Processing location: US, Allow large results, Batch priority
If I do a Schedule Backfill, it creates 12 jobs which fails with an error messages similar to the following:
Exceeded CPU limit 125%
Exceeded memory
If I cancel all the created jobs and leave one to run, it would run successfully. The Scheduled Query itself would not create any jobs.
I started the Scheduled query at 12:00 and made it to run for every 2 hours in repeats.
I assumed the jobs would run at the start time but apparently it is not the case. Scheduled Query ran perfectly as intended from 14:00 following with 16:00 and so on.
The errors regarding maximum CPU/memory usage is because the query I wrote had ORDER BY statement which was causing this issue. Removing that cleared the issue.

BigQuery Error: Destination deleted/expired during execution

I've a batch script to load data from google cloud bucket to a table in big query. A scheduled SSIS job executes this batch file daily.
bq load -F "\t" --encoding=UTF-8 --replace=true db_name.tbl_name gs://GSCloudBucket/file.txt "column1:string, column2:string, column3:string"
Weirdly, the execution is successful some days and not some other time. Here is what I have on the log.
Waiting on bqjob_r790a43a4_00000155a65559c2_1 ... (0s) Current status: RUNNING ......
Waiting on bqjob_r790a43a4_00000155a65559c2_1 ... (7s) Current status: DONE
BigQuery error in load operation: Error processing job: Destination
deleted/expired during execution
one option is if you have 1 day (or multiple of days) expiration on that table (either on table directly or via default expiration on dataset). In this case - because actual time of load very you can get to situation when destination table has expired by that time.
You can use configuration.load.createDisposition attribute to address this.
Or/and you can make sure you have proper expiration set - for daily process it would be let's say - 26 hours - so you have extra 2 hours for your SSIS job to complete before table can expire

Sql Agent Not Working On System Date Change?

I am facing issue with sql agent , on changing the server date it does not start at its schedule time while job is schedule daily at fixed time. No logs are found on this . This issue also occurs while system date has been changed to its real date . I have to restart the sql agent after that to invoke the job at its schedule time.
SQL Agent scheduled jobs will have last run date/time and next run date/time. Each time the jobs run, these values get updated. Please look in MSDB and you will see these details. You can also look in Job history.
When you manually reset the system clock to a date later than now, then your next run date/time will be in the past. As you have mentioned, bouncing the agent service should start the jobs again.
Raj