Internal models used in the implementation of apibuilder
Contact: Michael Bryzek mbryzek@alum.mit.edu http://twitter.com/mbryzek
License: MIT
task
| Field | Type | Description |
|---|---|---|
| guid required | uuid | |
| data required | task_data | |
| number_attempts required | long | default: 0 Records the number of times we have attempted to run this task. Commonly we increment number attempts, process the task, and if succeeds we then delete the task. If it fails, we update last_error. This allows us to retry a task say twice; after which we no longer process the task (can notify an admin of the error). |
| last_error | string |
task_data_diff_version
| Field | Type |
|---|---|
| old_version_guid required | uuid |
| new_version_guid required | uuid |
task_data_index_application
| Field | Type |
|---|---|
| application_guid required | uuid |