Where is the file stored?
When a document is imported into document the metadata goes into the database and the file goes into some content store, typically the filesystem. The users are not bothered about where the content server will store this file but the content server needs to make that decision.
A Documentum repository specifies various storage areas that are available via objects of type dm_store. Each dm_store object holds enough information for the content server to get to the physical location identified for the storage area. The relative path from there is figured out based on the object ID [of the content object as clarified in one of the comments]. Therefore the content server needs to identify the storage area to use before it can store the file.
Here is how it is decided:
- If Content Storage Services (CSS) are in use it tries to resolve this by applying the policies in place using the CSS algorithm. If CSS is not in use or if it fails to resolve the storage area using this algorithm it tries the next step.
- Default Storage Algorithm
- Primary Content
- If the file is primary content for the sysobject, this approach is used.
- If a storage type is set on the sysobject that is used. Otherwise,
- If a storage type is set on the format that is used. Otherwise,
- If a default storage type is set on the object type that is used. Otherwise,
- Turbo storage is used (stored in database)
- Rendition
- If the file is a rendition of a primary content this approach is used
- If the storage arg of addrendition is specified, that is used. Otherwise,
- If a storage type is set on the format that is used. Otherwise,
- Storage are for the primary content (dmr_content.rendition=0) is used
- Primary Content
Recent Comments