Containers for Execution
The Platform supports three types of containers related to job execution:
Temporary workspace: created whenever an app, applet is run
Project cache container: container in which data can be cached for future execution by the same version of an app. It is always associated with a particular project
Resources container: created during app creation, containing any resources the app requires for execution
The table below summarizes the permissions that a job running the associated applet or app receives, as well as the maximum permissions a member of the project context can receive (they must have equal or greater permissions in the project).
Temporary workspace
CONTRIBUTE
VIEW
Project cache
CONTRIBUTE
CONTRIBUTE
Resources container
VIEW
VIEW if app developer, NONE otherwise
Jobs running other applets or apps can access the resources container of an app with VIEW permissions only if they have been granted access to act on behalf of the user as a developer.
Containers for Analyses
Analyses also have temporary workspace containers that are created on their behalf. These containers are used primarily by the system for storing intermediate results for the analysis, and are not meant to be accessed directly by users or jobs. These containers are cleaned up after the associated analysis has transitioned to a terminal state.
Container API Method Specifications
API method: /container-xxxx/describe
/container-xxxx/describeSpecification
Describes the specified container.
Inputs
fieldsmapping (optional) Restrict the output of this method to have only the provided keys in this fieldkey Desired output field. See the "Outputs" section below for valid values here
value boolean The value true
Outputs
idstring ID of the container in the format "container-xxxx"
The following fields are included by default (but can be disabled using fields):
classstring The value "container"namestring The name of the containerregionstring The region this container resides in. For more information about regions, see Regions.billTostring ID of the account to which any costs associated with this container are billedtypestring The type of container: one of "temporary" (for applet/app execution), "cache" (for apps), or "resources" (for apps)createdtimestamp Time at which this container was createdmodifiedtimestamp Time at which this container was last updatedlevelstring The highest permissions level that the requesting user has. This field is only returned when called directly, that is it does not show up in thedescribevalues returned in /system/findProjectsdataUsagenumber Data usage in GB (not including sponsored data). A short amount of time may elapse between changes to the container and when this number is updated.sponsoredDataUsagenumber Sum of DNAnexus-sponsored and third-party sponsored data usage in GB. A short amount of time may elapse between changes to the container and when this number is updated.
The following fields (included by default) are available if type is "temporary" or "cache":
projectstring The associated project context
The following fields (included by default) are available if type is "cache" or "resources":
appstring ID of the associated appappNamestring Name of the associated app
The following fields (included by default) are available if type is "temporary", the associated job was run with delayWorkspaceDestruction set to true, and the job has finished (successfully or not):
destroyAttimestamp Time after which this container is automatically destroyed
The following fields are only returned if the corresponding field in the fields input is set to true:
foldersarray of strings List of all folders in the containeregressBillTostring. The value of theegressBillToproperty, inherited from the project that the container is associated with at the time of container's creation.fileUploadParametersmapping Information about what part sizes and numbers should be used to /file-xxxx/upload files in this container. See the section Limits on Parts of the Files API for more information about interpreting this. Mapping with the key/values:minimumPartSizeint minimum part size, in bytes, that applies to all parts except the part with the highest index (Clients may assume that ifemptyLastPartAllowedis false, thenminimumPartSizeis at least 1, that is, the constraint on the last part is no stronger than the constraint on previous parts.)maximumPartSizeint maximum part size, in bytesemptyLastPartAllowedboolean If true, then the minimum number of parts is 1 and the part with the highest index may contain 0 bytes. If false, then the minimum number of parts is 0 and the part with the highest index must contain at least 1 byte. All parts other than the part with the highest index must still have a minimum size given byminimumPartSize. (If true, then the client can upload a 0-byte file by invoking /file-xxxx/upload once with a part of size 0. If false, then the client can upload a 0-byte file by not invoking /file-xxxx/upload at all.)maximumNumPartsint the maximum number of parts that may be uploaded (also equal to the largest permissible part index)maximumFileSizeint the maximum size of the file, in bytes
Errors
ResourceNotFound (the specified container does not exist)
InvalidInput (the input is not a hash,
folders(if provided) is not a boolean)PermissionDenied (VIEW access required)
Last updated
Was this helpful?