Looks like there is no current method to prevent multiple dashboard nodes 
from stomping on each others reports, the delayed_jobs table does have a 
locked_by, but that is only used during the actual event processing.

mysql> describe delayed_jobs;
+------------+--------------+------+-----+---------+----------------+
| Field      | Type         | Null | Key | Default | Extra          |
+------------+--------------+------+-----+---------+----------------+
| id         | int(11)      | NO   | PRI | NULL    | auto_increment |
| priority   | int(11)      | YES  | MUL | 0       |                |
| attempts   | int(11)      | YES  |     | 0       |                |
| handler    | longtext     | YES  |     | NULL    |                |
| last_error | text         | YES  |     | NULL    |                |
| run_at     | datetime     | YES  |     | NULL    |                |
| locked_at  | datetime     | YES  |     | NULL    |                |
| failed_at  | datetime     | YES  |     | NULL    |                |
| locked_by  | varchar(255) | YES  |     | NULL    |                |
| created_at | datetime     | YES  |     | NULL    |                |
| updated_at | datetime     | YES  |     | NULL    |                |
+------------+--------------+------+-----+---------+----------------+
11 rows in set (0.00 sec)

I suppose I will open this as an RFE.  If anyone has any other ideas how to 
do this (other than the dreaded NFS share) please let me know.

Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/puppet-users/-/KufkHt4fpc8J.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to