class %DeepSee.REST.v3.CommandServer
extends %DeepSee.REST.REST
This class is responsible for exposing the functionality of %DeepSee.CubeManager.Utils via REST APIs
Parameters
|
Properties
|
Methods
|
Queries
|
Indices
|
ForeignKeys
|
Triggers
|
|
|
19
|
|
|
|
|
classmethod %SetAnswerStatus(ByRef answer, errorExists As %Integer, tSC As %Status, statusVarName As %String, listOfStatusVarWithError="")
as %Status
This method is very specific to the APIs currently written in %DeepSee.REST.vx.CommandServer and is designed to be a utility function only for that class
answer is a dynamic abstract object, errorExists is a 0 or 1 indicating if an error has occured or not. If errorExists is 1,
tSC is the status variable to be returned from the method that is invoking this method
listOfStatusVarWithError is a list of integers used for methods like /Command/RepairBuild and /Command/BuildAllRegisteredGroups where the variable containing the
status (such as buildStats for these 2 APIs) has 2 indices and the answer needs to indicate which buildstat contains the error
classmethod %ValidateRequest(pUrl As %String, pMethod As %String)
as %Status
Perform specific validation for the service that will handle the request. This is used
as a callback in each service that extends %DeepSee.REST
classmethod %lookup2JSON(ByRef array)
A special case of %DeepSee.REST.REST.%Array2JSON used to modify the lookup
variable returned by %DeepSee.REST.vx.CommandServer.%BuildRegistryMap
classmethod BuildAllRegisteredGroups(namespace As %String)
as %Status
This is a utility method which executes a complete build of all currently registered cubes in the current cube registry.
Required Properties: None
Optional Properties: map, buildStats
classmethod BuildCube(namespace As %String)
as %Status
A wrapper for %DeepSee.Utils.%BuildCube which records
cube event information when building the cube.
Required Properties: cubeName
Optional Properties: async, indexOnly, maxFacts, tracking, mapCube, buildStats, factList
classmethod BuildOneRegisteredGroup(namespace As %String)
as %Status
This is a utility method which executes a complete build of one registered cube group in the current cube registry.
Required Properties: None
Optional Properties: groupName, map, buildStats
classmethod BuildRegistryMap(namespace As %String)
as %Status
Retrieve the map that describes the current state of the Cube Registry and all other unregistered cubes on the system.
Required Properties: None
Optional Properties: className, registeredOnly
For the lookup variable in the output JSON, for each array in the "cubes" object, the first value corresponds to that
the GroupIdx value and the second the CubeIdx value for that cube. The Cube can then be retrieved as follows:
Set Cube = Map.Groups.GetAt(GroupIdx).Cubes.GetAt(CubeIdx)
classmethod ExecuteAction(namespace As %String, pUrl As %String)
as %Status
Execute a KPI action defined in a cube's actionClass. The and must be supplied through either a GET or POST
request in order to invoke the action, and additional information may optionally be provided via a CONTEXT object and/or a DataSource.
classmethod GetActiveRegistry(namespace As %String)
as %Status
Retrieve the name of the Cube Registry currently marked Active
Required Properties: None
Optional Properties: None
classmethod GetCubeSize(namespace As %String)
as %Status
Given the logical name, pCubeName of a DeepSee cube,
return the number of rows within its fact table.
Required Properties: None
Optional Properties: cubeKey
classmethod GetLastUpdate(namespace As %String)
as %Status
Retrieves the timestamp of the the last registered data update for the cube. Updates
performed outside of the Cube Manager will not be recognized in this check.
Required Properties: cubeKey
Optional Properties: updateType
classmethod GetSynchScheduleParameters(namespace As %String)
as %Status
Convenience method -- takes the number of seconds between synchs
and sets the parameters for the call to %SYS.Task.DeepSeeSynchronize:Schedule()
Required Properties: None
Optional Properties: scheduleSynchInterval, dailyFrequency, dailyFrequencyTime, dailyIncrement, dailyStartTime
classmethod IsValidCubeSchedule(namespace As %String)
as %Status
Validation for the current cube settings.
Required Properties: cube
Optional Properties: None
classmethod IsValidGroup(namespace As %String)
as %Status
Boolean test which returns 1 if the group supplied as the argument is no
less than the union of the natural groups of each of its members.
Required Properties: group
Optional Properties: groups, cubes, buildOrders
classmethod RepairBuild(namespace As %String)
as %Status
This method provides a means of doing an unscheduled repair build of a registered cube.
Required Properties: cubeName
Optional Properties: map, async, indexOnly, maxFacts, tracking, buildStats, factList
classmethod ScheduleUpdaterTasks(namespace As %String)
as %Status
Schedule the build and synch tasks according to the settings in a CubeManager.RegistryMap object.
Required properties: None
Optional properties: cubeMap
classmethod SetActiveRegistry(namespace As %String)
as %Status
Change which Cube Registry is currently active. The Active Registry is the
only one that is visible to the updater tasks.
Required Properties: None
Optional Properties: className, mustExist
classmethod SynchronizeCube(namespace As %String)
as %Status
A wrapper for %DeepSee.Utils.%SynchronizeCube which records
cube event information when building the cube.
Required Properties: None
Optional Properties: cubeName, readCommitted, checkReferences, async, mapCube, synchronizeStats
classmethod WriteToRegistry(namespace As %String)
Walk through a CubeManager.RegistryMap object and register the cubes.
Required Properties: cubeMap
Optional Properties: None