-
Notifications
You must be signed in to change notification settings - Fork 128
Technical_Overview
The event types you can queue off of are generally of the form Shotgun_[entity_type]_[New|Change|Retirement|Revival]. Here are a few examples of this pattern:
Shotgun_Note_New
Shotgun_Shot_New
Shotgun_Task_Change
Shotgun_CustomEntity06_Change
Shotgun_Playlist_Retirement
Shotgun_Playlist_Revival
Some notable departures from this pattern are used for events that aren't related to entity record activity but rather key points in application behaviour.
CRS_PlaylistShare_Create
CRS_PlaylistShare_Revoke
Shotgun_Attachment_View
Shotgun_Big_Query
Shotgun_DisplayColumn_Delete
Shotgun_NotesApp_Summary_Email
Shotgun_User_FailedLogin
Shotgun_User_Login
Shotgun_User_Logout
Toolkit_App_Startup
Toolkit_Desktop_ProjectLaunch
Toolkit_Desktop_AppLaunch
Toolkit_Folders_Create
Toolkit_Folders_Delete
This list is not exhaustive but is a pretty primer. If you wish to know more about the activity and event types on your Shotgun site, please consult a page of EventLogEntries which you can filter and search through like any other grid page of any other entity type.
Each event is always processed in the same predictable order so if any plugins or callbacks are co-dependant, your can safely organize their processing.
The configuration file specifies a paths config that contains one or multiple
plugin locations. The earlier the location in the list the earlier the contained
plugins will be processed.
Each plugin within a plugin path is then processed in ascending alphabetical order.
Note: Internally the filenames are put in a list and sorted.
Finally, each callback registered by a plugin is called in registration order. First resgistered, first run.
It is suggested to keep any functionality that needs to share state somehow in the same plugin as one or multiple callbacks.
If multiple callbacks need to share state many options may be used.
- Global variables. Ick. Please don't do this.
- An imported module that holds the state information. Ick, but a bit better than simple globals.
- A mutable passed in the
argsargument when callingRegistrar.registerCallback. A state object of your design or something as simple as a dict. Preferred. - Implement callbacks as
__call__on object instances and provide some shared state object at callback object initialization. Most powerful, most convoluted and might be a bit redundant vs.argsargument method.
Here is a brief overview of some error and warning message that you may see appear in your logs depending on your configured logging level.
Each event that occurs in Shotgun (field update, entity creation, entity retirement, etc) has a unique id number to its event log entry. Sometimes there are gaps in the id number sequence. These gaps can occur for many reasons, one of them being a large database transaction that has yet to complete.
Every time a gap in the event log sequence is encountered the "missing" event ids are put into a backlog for later processing. This allows for the event daemon to process the events from a long database transaction once it has finished.
Sometimes the gap in the event log sequence will never be filled in such as a failed transaction or reverted page setting modifications. In this case the event log entry id number that was put in the backlog will eventually hit a timeout (5 minutes) and the system will stop waiting for this event to appear. It is at this time that you will see a "Timeout elapsed on backlog event id #####" message.