Is it possible to perform additional operation on job cancellation?
1 view (last 30 days)
Show older comments
Is it possible to perform additional operations on job cancellation?
The context: From time to time a read operation from the database hangs up for eternity with no apparent reason. The read operation is performed with sqlread function, and (according to the docs) there is no way to set a timeout on this operation. So my idea was the following: read from the database in a separate thread and set a timeout on this thread. This is accomplished as per code snippet below:
pool = gcp(); % create a thread pool
f = parfeval(pool, @dbRead, 1, datasource,username,password); % start an asynchronous read job
ok = wait(f, 'finished', 60); % set the timeout of 60 sec
if ~ok % if timeout out, cancel the job
cancel(f);
else % otherwise fetch the results
result = fetchOutput(f);
end
delete(f); % delete the job
function [result] = dbRead(datasource,username,password)
conn = database(datasource,username,password); % connect to the database
result = sqlread(conn, 'tablename'); % read the table
close(conn); % close the connection
end
The problem with this approach is that I'm opening the database connection inside the dbRead function and, if the job is cancelled, the connection does not get closed.
Approach 1 - Pass connection as a parameter to dbRead function - Not possible in my version of Matlab (results in an error). A function that would allow me to do so www.mathworks.com/help/database/ug/createconnectionforpool.html was introduced in R2019a; unfortunately upgrading my Matlab (2018b) to a higher version is not an option.
Approach 2 - Keep connection as a global variable - Results in an error, precisely:
Caused by:
Error using database.odbc.connection/sqlread (line 62)
Invalid connection.
To sum up, my question is - is it possible to run additional code / function on job cancellation?
What other approach could I take to accomplish my goal of terminating the database read if it hangs?
0 Comments
Answers (1)
Philippe Lebel
on 26 Nov 2019
Checkout this function:
2 Comments
Philippe Lebel
on 3 Dec 2019
Edited: Philippe Lebel
on 3 Dec 2019
Have you tried setting callbacks on your job?
I don't know if a cancelled job results in the "jobfinished" callback function being called though.
See Also
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!