2015-12-28 01:50:25 +00:00
|
|
|
Table workerqueue
|
2021-06-13 20:33:50 +00:00
|
|
|
===========
|
|
|
|
Background tasks queue entries
|
2015-12-28 01:50:25 +00:00
|
|
|
|
2021-06-13 20:33:50 +00:00
|
|
|
| Field | Description | Type | Null | Key | Default | Extra |
|
|
|
|
| ----- | ----------- | ---- | ---- | --- | ------- | ----- |
|
2021-06-14 05:08:01 +00:00
|
|
|
| id | Auto incremented worker task id | int unsigned | YES | PRI | NULL | auto_increment |
|
|
|
|
| command | Task command | varchar(100) | NO | | NULL | |
|
|
|
|
| parameter | Task parameter | mediumtext | NO | | NULL | |
|
2021-06-13 20:33:50 +00:00
|
|
|
| priority | Task priority | tinyint unsigned | YES | | 0 | |
|
|
|
|
| created | Creation date | datetime | YES | | 0001-01-01 00:00:00 | |
|
|
|
|
| pid | Process id of the worker | int unsigned | YES | | 0 | |
|
|
|
|
| executed | Execution date | datetime | YES | | 0001-01-01 00:00:00 | |
|
|
|
|
| next_try | Next retrial date | datetime | YES | | 0001-01-01 00:00:00 | |
|
|
|
|
| retrial | Retrial counter | tinyint | YES | | 0 | |
|
|
|
|
| done | Marked 1 when the task was done - will be deleted later | boolean | YES | | 0 | |
|
2015-12-28 01:50:25 +00:00
|
|
|
|
|
|
|
Return to [database documentation](help/database)
|