cron Jobs
Having designed and tested the query, it can be inserted into a Unix cron table to automate the operation. The crond daemon is a process that runs by default in a Linux installation and continually checks the time. If any of the entries in user tables match the current time, then the commands in the entries are executed. Consider an example:
30 17 * * mon-fri echo 'Go home!'
This prints the string at 5:30 p.m. each working day. The two asterisks mean every day of the month, and every month of the year respectively. The string mon-fri means the days Monday to Friday inclusive. More details about cron can be found by running man crontab in a Linux shell.
We can add our housekeeping query to our cron table by running:
% crontab -e
This edits the user's cron table.
We have decided that the system should check for old shopping carts every 30 minutes. To do so, we add the following two lines to the file:
0 * * * * /usr/local/mysql/bin/mysql -uusername -psecret
-e 'USE winestore; DELETE FROM orders WHERE
unix_timestamp(date) <
(unix_timestamp(date_add(now( ), interval -1 day)))
AND cust_id = -1;'
30 * * * * /usr/local/mysql/bin/mysql -uusername -psecret
-e 'USE winestore; DELETE FROM items WHERE
unix_timestamp(date) <
(unix_timestamp(date_add(now( ), interval -1 day)))
AND cust_id = -1;'
The first line contains the complete query command for the orders table from earlier in this section, and the second line the items query. The shopping cart orders DELETE query runs exactly on each hour, while the items DELETE query runs at 30 minutes past each hour. Different times are used to balance the DBMS load.
Reports, updates, delete operations, and other tasks can be added to the cron table in a similar way. For example, we can output a simple report of the number of bottles purchased yesterday and send this to our email address each morning:
0 8 * * * mon-fri /usr/local/mysql/bin/mysql -uusername -psecret -e 'USE winestore; SELECT sum(qty) FROM items WHERE unix_timestamp(date) > (unix_timestamp(date_add(now( ), interval -1 day))) AND cust_id != -1;' | mail help@webdatabasebook.com
We could also have automatically written the information to a log file or to a table in the database.