Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "SMILA/Documentation/2011.Simplification/Usage of Blackboard Service"

(Record lifecycle on the Blackboard)
(For SMILA 1.0: Simplification pages are obsolete, redirect to SMILA/Documentation/Usage_of_Blackboard_Service)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== What is the Blackboard ==
+
#REDIRECT [[SMILA/Documentation/Usage_of_Blackboard_Service]]
Purpose of the Blackboard is management of SMILA record data during processing in SMILA component (Connectivity, Workflow Processor). Complete record data is stored only on a Blackboard which is not pushed through the workflow engine itself. The Blackboard hides handling of record persistence from the services.
+
Clients should generally manipulate records using Blackboard API methods in most cases so records will be completely under control of the Blackboard.
+
 
+
== Creation and Lifecycle of Blackboard ==
+
 
+
For Blackboard creation we use a BlackboardFactory service running as a declarative service.
+
* The factory can create Blackboard instances which are either "transient" (pure in-memory implementation, not using any storages) or "persisting" (linked to binary storage and optionally to record storage). The client selects which kind of blackboard it wants to use. A persisting blackboard can only be created successfully, if at least a binary storage is known. Creation of transient blackboards is always possible.
+
* For each "session" an own new blackboard instance is created that manages only those records worked on by this request. A session is for example:
+
** a single task list execution of a QueueWorker router or listener (i.e. add/delete one record in Connectivity, or processing one input record from a queue message and manage all additional records created by the invoked workflows)
+
** a single search request in the search service.
+
* After the session the blackboard instance is released completely, thus freeing any memory resources automatically without interfering with other blackboard sessions.
+
 
+
=== BlackboardFactory interfaces ===
+
 
+
<source lang="java">
+
interface BlackboardFactory {
+
  /**
+
  * create a new non-persisting blackboard instance.
+
  * This method must always return a valid empty blackboard instance.
+
  */
+
  Blackboard createTransientBlackboard();
+
 
+
  /**
+
  * create a blackboard able to persist records in storages
+
  * @throws BlackboardAccessException no persisting blackboard can be created, because
+
  * not even a  binary storage service is available (record storage remains optional)
+
  */
+
  Blackboard createPersistingBlackboard() throws BlackboardAccessException;
+
}
+
</source>
+
 
+
== Usage of Blackboard ==
+
 
+
=== Record lifecycle on the Blackboard ===
+
 
+
Record can be put onto Blackboard with one of the following operations:
+
* create(String id);
+
*: Creates a new record with a given Id. No data is loaded from persistence. If record with this Id already exists in the storages it will be overwritten when the created record will be committed. E.g. used by Connectivity to initialize the record from incoming data.
+
* load(String id);
+
*: Loads record data for the given Id from persistence. Used by a client to indicate that it wants to process this record.
+
* copyRecord(String id, String copyId);
+
*: create a new record with the copyId and copy all metadata from the record with id to it. Attachments are not copied.
+
* setRecord(Record);
+
*: Puts record on the Blackboard, saves record attachments to BinStorage and replaces actual record attachments values with null.
+
* synchronizeRecord(Record);
+
*: Assumes that record with the same Id as of given record already exists on Blackboard or in storage. Loads record from the storage if needed and updates it's properties with properties of the given record.
+
 
+
Record is removed from the blackboard with one of these operations:
+
* commit(String id);
+
*: Saves record and attachments to storages and removes record from the Blackboard.
+
* invalidate(String id);
+
*: Record is removed from the Blackboard. If the record was created new (not overwritten) on the Blackboard it will be removed completely. The record is not removed from persistence.
+
* removeRecord(String id);
+
*: Remove record completely from Blackboard and all persistence layer.
+
 
+
=== Record Access ===
+
 
+
* Record getRecord(String id);
+
*: get the record with complete metadata. You should not rely on the record having all attachment values attached, only the names will be available. Use the blackboard attachments access methods to access attachments. If the record is not yet loaded in the blackboard, the PersistingBlackboard will return null, if it has a RecordStorage set and the record does not exist in record storage. If it doesn't have a RecordStorage a new record is created automatically. The TransientBlackboard creates a new record, too, if necessary. If you change the record metadata, you change the record stored on the blackboard, too, so you don't have to call setRecord() to write back the changes explicitly.
+
* AnyMap getMetadata(String id);
+
*: shortcut for getRecord(id).getMetadata()
+
* Record getRecord(String id, String filterName);
+
*: Create a copy of the record with only those metadata elements allowed by the named record filter.  Changes done to the filtered metadata are not applied to the original record automatically.
+
* Record filterRecord(Record record, String filterName);
+
*: apply a record filter known to the blackboard to a record which does not have to be loaded on the blackboard.
+
 
+
=== Attachments management ===
+
There are following methods for working with Record attachments in the Blackboard:
+
* setAttachment(id, name, byte[]);
+
* setAttachmentFromStream(id, name, InputStream);
+
* byte[] getAttachment(id, name);
+
* InputStream getAttachmentAsStream(id, name);
+
* boolean hasAttachment(id, name);
+
 
+
Attachments are not stored anywhere in the Blackboard, they are saved to BinStorage directly and the actual attachment value in the corresponding Record is replaced with {{null}}. It is highly recommended to use only Stream methods to manage attachments because loading the whole attachments in memory will cause great memory consumption and can be cause for application crash.
+
 
+
=== Usage of Blackboard Notes ===
+
Notes is additional temporary data created by pipelets to be used in later pipelets in the same workflow, but not to be persisted in the storages. Notes can be either global or record specific (associated with a record Id). Record specific notes are copied on record splits and removed when the associated record is removed from the Blackboard. Each Note has a String name and Serialaizable value.
+
There are following methods for working with Notes:
+
* boolean hasGlobalNote(name);
+
* Serializable getGlobalNote(name);
+
* setGlobalNote(name, value);
+
* boolean hasRecordNote(id, name);
+
* getRecordNote(id, name);
+
* setRecordNote(id, name, value);
+
 
+
[[Category:SMILA]]
+

Latest revision as of 07:12, 19 January 2012

Back to the top