Skip to end of banner
Go to start of banner

Common Client Command set and Cache ("C4")

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 68 Next »

This is the specification of the command set for Synapse clients.  The goal is to align the command sets for clients in different languages to ease users' transitions between languages.  Additionally we define the organization of the file cache so that various clients arrange local copies of file consistently.

 

Synapse File Management

To motivate the design of the client side cache and file manipulation commands, we review file management in Synapse:  Synapse tracks the shared location of the files it stores (e.g. the location in Amazon S3 or some other web-accessible location) and also the file's MD5 hash.  While Synapse records a file's name, it does not know the location of the file when downloaded by any user.  The client has a notion of a File object (defined below).  This object has a slot for the ID of the File object in Synapse and also has a slot for the local file handle.  When the client moves a file from the local machine to Synapse (via the "synStore" command, defined below), the file is uploaded from the local location to Synapse.  When the client retrieves a File (via the "synGet" command, defined below) it may specify the local file handle to which the file is downloaded, or allow the client to place in a default location.  With this understanding, we can discuss how the clients cache files.

Cache Design Principles

The analytical clients provide for client-side caching of Synapse files, to avoid unnecessarily retrieving (large or many) files that have already been downloaded.   By default, downloaded files are put in the system default download folder (e.g. on the Macintosh it's ~/Downloads/).   Alternatively, the a file may be downloaded to a folder location specified by the user.  When synStore() is called to create an entity having a file in an external cache location, the local copy of the file is not moved.  It serves as a "cached copy" in its current location, as described below.

When synGet() is called, the client first retrieves the File metadata, including the MD5 hash.   The client forms the download location based on the cached location (default or specified by the user) and the file name.  If a local copy of the file does not exist, it's downloaded again.  If the file is present, the client computes the MD5 of the local copy to determine whether it differs from the version in Synapse.  If so, the client must (based on user choice) either (1) create new, unique file name, (2) confirm overwrite or (3) keep the original file.  (If the latter, a subsequent synStore() would overwrite the Synapse version with the local copy.)

When synStore() is called to update an entity then the MD5 hash of the file is recomputed.  The file is uploaded if and only if the newly computed MD5 hash differs from that of the previously retrieved entity.

The effect of this architecture is that repeated uploads or downloads of an entity's file are avoided when the local copy is not modified.  This strategy does not avoid repeated downloads of an entity's file to a variety of local folders.  We feel that the potential efficiency gains of doing this are outweighed by the complexity of tracking multiple, mutable copies of a file.

File Usage Examples

In each example, we have a project in which the File will reside:

project<-(name="myproject")
# 'synStore' will either create the project or retrieve it if it already exists
project<-synStore(project)
pid<-propertyValue(project, "id")

Example 1: Create File entity wrapping local file, save to Synapse, retrieve, and save again

file <- File(path="~/myproject/genotypedata.csv", name="genotypedata", parentId=pid)
# 'synStore' will upload the file to Synapse
# locally we record that the uploaded file is available at ~/myproject/genotypedata.csv
file <- synStore(file)
# we can get the ID of the file in Synapse
fileId <- propertyValue(file, "id")
# ----- Now assume a new session (perhaps a different user)
# at first we have only the Synapse file ID
fileId <- "synXXXXX"
file <-synGet(fileId)
# client recognizes that local copy exists, avoiding repeated download
getFileLocation(file)
> "~/myproject/genotypedata.csv"
# now change something, e.g. add an annotation...
synAnnot(file, "data type")<-"genotype"
# ... and save.  the client determines that the file is unchanged so does not upload again
file <-synStore(file)
# we can also download to a specific location
fileCopy<-synGet(fileId, downloadLocation="~/scratch/")
getFileLocation(fileCopy)
> "~/scratch/genotypedata.csv"
# we now have two copies on the local file system

Example 2: Link to File on web, then download

# we use 'synapseStore=F' to indicate that we only wish to link
file <- File(path="ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE1nnn/GSE1000/matrix/GSExxxx_RAW.tar", synapseStore=F, name="genotypedata", parentId=pid)
# Synapse stores the metadata, but does not upload the file
file <- synStore(file)
# we can get the ID of the file in Synapse
fileId <- propertyValue(file, "id")
# synGet downloads the file to a default location
file <-synGet(fileId)
getFileLocation(file)
> "~/.synapseCache/GSExxxx_RAW.tar"
# now change the meta data and save
synAnnot(file, "data type")<-"gene expression"
# synStore does not upload the file
file<-synStore(file)

Example 3: Lose session after editing file

codeFileId <- "synXXXXX"
codeFile <-synGet(codeFileId, load=F)
getFileLocation(codeFile)
> "~/.synapseCache/rScript.R"
# the file is edited
# the session is lost
# a new session begins
codeFileId <- "synXXXXX"
codeFile <-synGet(codeFileId, load=F, if.collision="keep.local")
# The File object now refers to the edited file
# synStore detects that the file is changed and uploads it
file <-synStore(file)

Example 4: link to file on NFS

# we use 'synapseStore=F' to indicate that we only wish to link
file <- File(path="file:///corporatenfs/sharedproject/genotypedata.csv", synapseStore=F, name="genotypedata", parentId=pid)
# Synapse stores the metadata, but does not upload the file
file <- synStore(file)


# Now assume a new session, perhaps by a different user
# synGet downloads the file to a default location
fileId<-"synXXXXX"
# we use 'downloadFile=F' to indicate that we do not need a new copy on our local disk
file <-synGet(fileId, downloadFile=F)
getFileLocation(file)
> "/corporatenfs/sharedproject/genotypedata.csv"
# now change the meta data and save
synAnnot(file, "data type")<-"SNP"
# since the File was created with "synapseStore=F", synStore does not upload the file
file<-synStore(file)

 

 

 

 

 

Command Set

We conceptual divide the client commands into three levels (1) Common functions, (2) Advanced functions and (3) low-level Web API functions.  The first collection of commands captures the majority of functionality of interest to users. The second collection rounds out the functionality with less frequently used functions.  The third set comprises simple, low level wrappers around the Synapse web service interface.  By including this third set users can access web services in advance of having specialized commands in the analytic clients.

 

CommandcommentsR SyntaxPython SyntaxCommand Line Syntax
1 – Common functions
    
Create a Synapse file handle in memory, specifying the path to the file in the local file system, the name in Synapse, and the Folder in Synapse.  This step 'stages' a file to be sent to Synapse. Additional parameters (...) are interpreted as properties or annotations, in the manner of synSet(), defined below.  If 'name' is omitted, it defaults to the file's name. If 'synapseStore' is TRUE then file is uploaded to S3, else only the file location is saved.

The specified file doesn't move or get copied.

File(path, synapseStore=T, name=NULL, parentId, ...)

 

example:

File(path="/path/to/file", name="foo", parentId="syn101")

File(path="/path/to/file", synapseStore=T, name="foo", parentId="syn101", **kwargs)NA
Create a Synapse file handle in memory which will be a serialized version of an in-memory object.  Additional parameters (...) are interpreted as properties or annotations, in the manner of synSet(), defined below. If 'synapseStore' is TRUE then file is uploaded to S3, else only the file location is saved.

The object is not serialized at this time. 

(We are hoping people will like calling the object a File, even though it takes an in-memory object as a parameter.)

File(obj, synapseStore=T, name=NULL, parentId, ...)

 

example:

File(obj=dataObject, name="foo", parentId="syn101")

Will not be implemented in python.NA
Create a Synapse Record in memory, specifying the name and the Folder in Synapse.  This step 'stages' a Record to be sent to Synapse. 

Additional parameters (...) are interpreted as properties or annotations, in the manner of synSet(), defined below.

 

Files aren't moved or copied.

TODO:  How do you specify file annotations (as distinct from Strings)?  Shall we introduce in-memory wrappers around files and urls to help distinguish them?

Record(name=NULL, parentId="syn101", ...)

example:
Record(name="foo", parentId="syn101")

Record(name="foo", parentId="syn101", **kwargs) 
Create a Folder or Project in memory. Name and parentId are optional. 

Folder(name=NULL, parentId=NULL, ...)

Project(name=NULL, ...)

example:
Folder(name="foo", parentId="syn101")

Folder(name="foo", parentId="syn101", **kwargs)

Project(name="foo", **kwargs)

 
Set an entity's attribute (property or annotation) in memory.  Client first checks properties, then goes to annotations; (setting to NULL deletes it in R, using DEL operator in python deletes it)TODO:  we want to include files and (for R) in memory objectssynAnnot(entity, name)<-valueentity.parentId="syn101"synapse update id --parentId syn101
Gets an entity's attribute value (property or annotation) from the object already in memory. 

synAnnot(entity, name); returns NULL if undefined

entity.name; throws exception if value is undefined 
Create or update an entity (File, Folder, etc.) in Synapse.  May also specify (1) the list of entities 'used' to generate this one, (2) the list of entities 'executed' to generate this one, (3) the name of the generation activity, and (4) the description of the generation activity, (5) whether a name collision in an attempted 'create' should become an 'update', (6) whether to 'force' a new version to be created, and (7) whether the data is restricted (which will put a download 'lock' on the data and contact the Synapse Access and Compliance team for review.TODO:  Give some examples.

synStore(entity, used, executed, activityName=NULL, activityDescription=NULL, createOrUpdate=T, forceVersion=T, isRestricted=F)

synapse.store(entity, used, executed, activityName=None, activityDescription=None, createOrUpdate=T, forceVersion=T, isRestricted=F)

synapse create --name NAME --parentid PARENTID --description DESCRIPTION

--type TYPE

--file PATH

--update=T/F

--forceVersion=T/F

 

--annotations={foo=bar, bar=foo}

Get an entity (file, folder, etc.) from the Synapse server, with its attributes (properties, annotations) and, optionally, with its associated file(s).  if.collision is one of "keep.both", "keep.local", or "overwrite.local", telling the system what to do if a different file is found at the given local file location.'download' and 'load' are ignored for objects lacking Files.  OK for download=F and load=T, this means don't cache (a valid choice if the File lives on a network share).  If a downloadLocation is not provided a default, read-only cache location is used.  If a downloadLocation IS provided, then the client must handle collisions with existing files.  Note, 'downloadLocation' must be a folder, i.e. it cannot be used to rename files.

synGet(id, version, downloadFile=T, downloadLocation=NULL, ifcollision="keep.both", load=F)

synapse.get(id, version, downloadFile=True, downloadLocation=None, ifcollision="keep.both", load=False)synapse get ID -v NUMBER
Get the directly readable location of the file associated with a file object.For downloaded files, this is the path on the local file system.  For "linked" files (not uploaded into Synapse) that are not downloaded, this is the URL known to Synapse.  For uploaded files which have not been retrieved, returns NULL.getFileLocation(file)TODOTODO
Trash an entity, and all of its children (move all Folders and Files within a Folder to the trash can). synTrash(id) / synTrash(entity)
synapse.trash(id)synapse trash id
Open the web browser to the page for this entity. onWeb(entityId) / onWeb(entity)synapse.onweb(entityId) / synapse.onweb(entity)synapse onweb id
log-inget API key and write to user's properties filesynapseLogin(<user>,<pw>)synapse.login(<user>,<pw>, sessionToken=None)synapse login -u USER -p PASSWORD
log-outdelete API key from properties filesynapseLogout()synapse.logout()synapse logout
2 –Advanced functions
    
Execute queryTODO:  pagination, e.g. the function returns an iterator. Look at current implementation in R client.synQuery(queryString)synapse.query(queryString)synapse query
we talked about this, but is it needed? synGetEntity()  
we talked about this, but is it needed? synStoreEntity()  
Retrieve the wiki for an entityTODO: Is it a requirement that we retrieve attachments?  If not, do we retrieve file handles? Is this the id of the wiki or the wiki?synGetWiki(id, version) / synGetWiki(entity)

synapse.getWiki(id, version)

synapse.getWiki(entity)

 
  synStoreWiki()synapse.storeWiki() 
  synGetAnnotations()synapse.getAnnotations(entity/entityId) 
  synSetAnnotations()synapse.setAnntotations(entity/entityId, annotations) 
  synGetProperties()NANA
Access properties, throwing exception if property is not defined. synSetProperties()NANA
  synGetAnnotation()  
  synSetAnnotation()  
Access property, throwing exception if property is not defined. synGetProperty()NANA
Access property, throwing exception if property is not defined. Setting to NULL deletes. synSetProperty()NANA
Create an Activity (provenance object) in memory. Activity(name, description, used, executed)Activity(name, description, used, exectuted)NA
Create or update the Activity in Synapse synStoreActivity(activity)Activity.store()NA
Get the Activity which generated the given entity. synGetActivity(entity) / synGetActivity(entityId)synapse.getActivity(entity/entityId)NA
Set the Activity which generated the given entity synSetActivity(entity)<-activitysynapse.setActivity(entity/entityId, activity)NA
Empty trash can    
Restore from trash can    
Run code, capturing output, code and provenance relationship. synapseExecute(executable, args, resultParentId, codeParentId, resultEntityProperties = NULL,  resultEntityName=NULL, replChar=".")synapse.exceute(executable, args, resultParentId, codeParentId, resultEntityProperties = None,  resultEntityName=None, replChar=".")NA
Create evaluation object Evaluation(name, description, status)Evaluation(name, description, status)NA
Join evaluation addParticipant(evaluation, principalId)evaluation.addParticipant(principalId)NA
Submit for evaluation submit(evaluation, entity)evaluation.submit(entity)/ synapse.submitToEvaluation(entity, evaluation)synapse submitEvaluation
3 – Web API Level functions
    
Execute GET requestSee details below.synRestGET(endpoint, uri)NA? (already only a line) 
Execute POST requestSee details below.synRestPOST(endpoint, uri, body)NA? 
Execute PUT requestSee details below.synRestPUT(endpoint, uri, body)NA? 
Execute DELETE requestSee details below.synRestDELETE(endpoint, uri)NA? 

Endpoints

At the time of this writing, there are three endpoints for web service calls in our production system:

https://auth-prod.prod.sagebase.org/auth/v1
https://repo-prod.prod.sagebase.org/repo/v1
https://file-prod.prod.sagebase.org/file/v1

These are used to call the web APIs linked below.

Web APIs

The URIs, request bodies and request methods are defined by the Synapse Web APIs.  The URIs omit the endpoints given above, e.g. to retrieve entity metadata the endpoint would be "https://repo-prod.prod.sagebase.org/repo/v1" while the URI might be "/entity/syn123456".  The web APIs define request and response bodies in terms of JSON objects.  In the analytic clients these are expressed as named lists or nested named list, e.g. in R the JSON object {"foo":"bar", "bas":"bah"} is passed in as list(foo="bar", bas="bah").

The Web APIs are defined here:

Synapse REST APIs

 

Common Configuration File

This is a properties file in a standard place that is interpreted upon client initialization.  The location should be private for a user.

The format will be a reduced set of .properties, http://en.wikipedia.org/wiki/.properties to be compatible across languages.

Things to specify in the common config file:

 

Appendix:  Current implementation of the file cache in the R Client:

  • files are cached (meatadata used to be cached in entity.json)
  • cache is mix of read/write
  • each entity version has a location within the cache is based on its URI (e.g. .synapseCache/proddata.sagebase.org/<entityId>/<locationId>/version/<version>)
    • files.json specifies what resides within the archive
    • <fileName> file which R Client currently assumes to be a zip (this is immutable by convention until storeEntity is called)  (TODO:  What happens when it is not a zip archive)
    • <fileName>_unpacked directory within which all unzipped content lives
      • this subdirectory is writable (by convention)
      • re-stores file if not an archive (both as <fileName> and <fileName>_unpacked/<fileName>)

 

 

 

 

 

 

 

 

 

  • No labels