SchedulerCSC

class lsst.ts.scheduler.scheduler_csc.SchedulerCSC(index, config_dir=None, initial_state=State.STANDBY, simulation_mode=0)

Bases: ConfigurableCsc

This class is a reactive component which is SAL aware and delegates work.

The SchedulerCSC is the only layer that is exposed to SAL communication. All commands recieved are by the SchedulerCSC then delegated to the responsible objects. Along with this the SchedulerCSC maintains a statemachine which is taken care of by the inherited class base_csc.BaseCsc.

Parameters:

index (int) –

Scheduler SAL component index. This also defines the index of the ScriptQueue the Scheduler will communicate with.

  • 1 for the Main telescope.

  • 2 for AuxTel.

  • Any allowed value (see Raises) for unit tests.

log

Logging mechanism for the SchedulerCSC.

Type:

logging.Log

summary_state

Enume type, OFFLINE = 4 STANDBY = 5 DISABLED = 1 ENABLED = 2 FAULT = 3.

Type:

salobj.base_csc.State

parameters

Object to contain parameter values to configure the SchedulerCSC.

Type:

lsst.ts.scheduler.scheduler_csc.SchedulerCscParameters

configuration_path

Absolute path to the configuration location for the validSettings event.

Type:

str

configuration_repo

String of comma delimated Git repos that exist at configuration_path. ex; “origin/master,origin/develop”

Type:

str

valid_settings

Shortened and listed names of configuration_repo. ex; [master, develop].

Type:

list of str

models

Dictionary of the models necessary for the SchedulerCSC to fulfill SAL commands. - location : lsst.ts.datelo.ObservatoryLocation - observatory_model : lsst.ts.observatory.model.ObservatoryModel - observatory_state : lsst.ts.observatory.model.ObservatoryState - sky : lsst.ts.astrosky.model.AstronomicalSkyModel - seeing : rubin_scheduler.site_models.SeeingModel - downtime : rubin_scheduler.site_models.DowntimeModel

Type:

dict

raw_telemetry

Raw, as in unparsed data that is recieved over SAL. The SchedulerCSC parses self.raw_telemtry and formats the data into self.models.

Type:

{str: :object:}

driver

A worker class that does much of the lower level computation called by the SchedulerCSC.

Type:

lsst.ts.scheduler.driver.Driver

Notes

Simulation Modes

Supported simulation modes:

  • SchedulerModes.NORMAL: Regular operation

  • SchedulerModes.MOCKS3: Semi-operation mode. Normal operation but mock

    s3 bucket for large file object.

  • SchedulerModes.SIMULATION: Simulation mode. Do not initialize driver

    and other operational components.

Error Codes

  • 300: Could not connect to the queue. This error code is published

    if the Scheduler CSC can not connect to the queue.

  • 301: Failed to put target on the queue.

  • 400: Unspecified error on the simple target generation loop. This error

    code is published if there is an unspecified error while running the simple target generation loop. For instance, if a user defined scheduling algorithm throws an exception after a call to Driver.select_next_target this error code will, most likely, be issued (along with the traceback message).

  • 401: Unspecified error on advanced target generation loop.

  • 500: Error updating observatory state.

Attributes Summary

config_dir

Get or set the configuration directory.

default_initial_state

disabled_or_enabled

Return True if the summary state is State.DISABLED or State.ENABLED.

domain

enable_cmdline_state

need_to_generate_target_queue

Check if we need to generate target queue.

simulation_help

simulation_mode

Get the current simulation mode.

summary_state

Get the summary state as a State enum.

valid_simulation_modes

version

Methods Summary

add_arguments(parser)

Add arguments to the parser created by make_from_cmd_line.

add_kwargs_from_args(args, kwargs)

Add constructor keyword arguments based on parsed arguments.

advance_target_production_loop()

Advance target production loop.

amain(index, **kwargs)

Make a CSC from command-line arguments and run it.

assert_enabled([action])

Assert that an action that requires ENABLED state can be run.

assert_idle()

Assert detailed state is idle.

assert_running()

Assert detailed state is running.

begin_disable(data)

Transition from State.ENABLED to State.DISABLED.

begin_enable(data)

Begin do_enable.

begin_exitControl(data)

Begin do_exitControl; called before state changes.

begin_standby(data)

Begin do_standby; called before the state changes.

begin_start(data)

Begin do_start; configure the CSC before changing state.

check_for_duplicate_heartbeat([num_messages])

Monitor heartbeat events and return True if any have a different private_origin.

check_scheduled_targets()

Loop through the scheduled targets list, check status and tell driver of completed observations.

check_script_info(data)

A callback method to check script info.

check_targets_queue_condition()

Check targets queue condition.

close([exception, cancel_start])

Shut down, clean up resources and set done_task done.

close_tasks()

Shut down pending tasks.

compute_predicted_schedule(*args, **kwargs)

configure(config)

This method is responsible for configuring the scheduler models and the scheduler algorithm, given the input setting.

current_scheduler_state(publish_lfoa)

A context manager to handle storing the current scheduler state, performing some operations on it and then resetting it to the previous state.

detailed_state(detailed_state)

Context manager to set the detailed state for an operation then return it to the initial value after it executes.

do_addBlock(data)

Implement add block command.

do_computePredictedSchedule(data)

Compute and publish the predicted schedule.

do_disable(data)

Transition from State.ENABLED to State.DISABLED.

do_enable(data)

Transition from State.DISABLED to State.ENABLED.

do_exitControl(data)

Transition from State.STANDBY to State.OFFLINE and quit.

do_getBlockStatus(data)

Implement get block status command.

do_load(data)

Load user-defined schedule definition from URI.

do_removeBlock(data)

Implement remove block command.

do_resume(data)

Resume target production loop.

do_setLogLevel(data)

Set logging level.

do_standby(data)

Transition from State.DISABLED or State.FAULT to State.STANDBY.

do_start(data)

Transition from State.STANDBY to State.DISABLED.

do_stop(data)

Stop target production loop.

do_validateBlock(data)

Implement validate block command.

end_disable(data)

End do_disable; called after state changes but before command acknowledged.

end_enable(data)

End do_enable; called after state changes but before command acknowledged.

end_exitControl(data)

End do_exitControl; called after state changes but before command acknowledged.

end_standby(data)

End do_standby; called after state changes but before command acknowledged.

end_start(data)

End do_start; called after state changes but before command acknowledged.

estimate_next_target()

Estimate how long until the next target become available.

execute_block()

Execute an individual block when the Scheduler is not running.

fault(code, report[, traceback])

Override default fault state method.

generate_target_queue(*args, **kwargs)

get_config_pkg()

Get the name of the configuration package, e.g. "ts_config_ocs".

get_observing_scripts_config_validator()

Get observing scripts configuration validator.

get_queue([request])

Utility method to get the queue.

handle_no_targets_on_queue()

Handle condition when there are no more targets on the queue.

handle_observatory_state()

Handle observatory state.

handle_summary_state()

Handle summary state.

idle_to_running()

Context manager to handle transitioning from idle to running then back to idle.

implement_simulation_mode(simulation_mode)

Implement going into or out of simulation mode.

lock_target_loop_and_check_targets()

make_from_cmd_line(index[, check_if_duplicate])

Construct a CSC from command line arguments.

put_log_level()

Output the logLevel event.

put_on_queue(targets)

Given a list of targets, append them on the queue to be observed.

queue_targets(*args, **kwargs)

read_config_dir()

Read the config dir and put configurationsAvailable if changed.

read_config_dir_loop()

read_config_files(config_validator, ...[, ...])

Read a set of configuration files and return the validated config.

register_observation(target)

Register observation.

remove_from_queue(targets)

Given a list of targets, remove them from the queue.

reset_handle_no_targets_on_queue()

Reset conditions that no targets on queue were handled.

save_scheduler_state(publish_lfoa)

Save scheduler state to S3 bucket and publish event.

set_simulation_mode(simulation_mode)

Set the simulation mode.

simple_target_production_loop()

This coroutine implements the simple target production loop.

start()

Finish constructing the CSC.

start_phase2()

Handle the initial state.

stop_next_target_timer_task()

stop_target_loop_execution()

Stop target production loop execution.

telemetry_loop()

Scheduler telemetry loop.

validate_observing_blocks()

Validate observing blocks.

Attributes Documentation

config_dir

Get or set the configuration directory.

Parameters:

config_dir (str, pathlib.Path) – New configuration directory.

Returns:

config_dir – Absolute path to the configuration directory.

Return type:

pathlib.Path

Raises:

ValueError – If the new configuration dir is not a directory.

default_initial_state: State = 5
disabled_or_enabled

Return True if the summary state is State.DISABLED or State.ENABLED.

This is useful in handle_summary_state to determine if you should start or stop a telemetry loop, and connect to or disconnect from an external controller

domain
enable_cmdline_state = False
need_to_generate_target_queue

Check if we need to generate target queue.

The condition in which we have to generate a target queue is when the targets_queue_condition future is done and its result is None. If the future is not done, the task that checks the queue is still ongoing. If the results is different than None it means the queue is ok and it does not need to be generated.

Note that this is also the initial condition, so the target list is generated the first time the loop runs.

Returns:

True if we need to call generate target queue, False otherwise.

Return type:

bool

simulation_help: str | None = None
simulation_mode

Get the current simulation mode.

0 means normal operation (no simulation).

Raises:

ExpectedError – If the new simulation mode is not a supported value.

summary_state

Get the summary state as a State enum.

valid_simulation_modes: Sequence[int] = (0, 1, 2)
version = '?'

Methods Documentation

classmethod add_arguments(parser)

Add arguments to the parser created by make_from_cmd_line.

Parameters:

parser (argparse.ArgumentParser) – The argument parser.

Return type:

None

Notes

If you override this method then you should almost certainly override add_kwargs_from_args as well.

classmethod add_kwargs_from_args(args, kwargs)

Add constructor keyword arguments based on parsed arguments.

Parameters:
  • args (argparse.Namespace) – Parsed command.

  • kwargs (dict) – Keyword argument dict for the constructor. Update this based on args. The index argument will already be present if relevant.

Return type:

None

Notes

If you override this method then you should almost certainly override add_arguments as well.

async advance_target_production_loop()

Advance target production loop.

This method will schedule targets ahead of time and send them to the ScriptQueue according to the configuration parameters. This initial implementation is simply blindly scheduling targets ahead of time and not checking for post conditions. Further improvements will involve dealing with different post conditions, generating the predicted queue and further verifying that the schedule is keeping up.

async classmethod amain(index, **kwargs)

Make a CSC from command-line arguments and run it.

Parameters:
  • index (int, enum.IntEnum, True, or None) –

    If the CSC is indexed, do one of the following:

    • Specify True to make index a required command-line argument that accepts any nonzero index.

    • Specify an enum.IntEnum class to make index a required command-line argument that only accepts the enum values.

    • Specify a non-zero integer to use that index. This is rare; if the CSC is indexed then the user should usually be allowed to specify the index.

    If the CSC is not indexed, specify None or 0.

  • **kwargs (dict, optional) – Additional keyword arguments for your CSC’s constructor.

Return type:

None

assert_enabled(action='')

Assert that an action that requires ENABLED state can be run.

Parameters:

action (str, optional) – Action attempted. Not needed if this is called at the beginning of a do_... method, since the user will know what command was called.

Return type:

None

assert_idle()

Assert detailed state is idle.

assert_running()

Assert detailed state is running.

async begin_disable(data)

Transition from State.ENABLED to State.DISABLED. This transition will be made in a gentle way, meaning that it will wait for the target production loop to finalize before making the transition. If a more drastic approach is need, the scheduler must be sent to State.FAULT with an abort command.

Parameters:

data (DataType) – Command data

async begin_enable(data)

Begin do_enable.

Called before state transition from State.DISABLED to State.ENABLED. This method will start the selected target production loop (SIMPLE, ADVANCED or DRY) or raise an exception if the mode is unrecognized.

Parameters:

data (DataType) – Command data

async begin_exitControl(data)

Begin do_exitControl; called before state changes.

Parameters:

data (DataType) – Command data

Return type:

None

async begin_standby(data)

Begin do_standby; called before the state changes.

Parameters:

data (DataType) – Command data

Return type:

None

async begin_start(data)

Begin do_start; configure the CSC before changing state.

Parameters:

data (cmd_start.DataType) – Command data

Notes

The override field must be one of:

  • The name of a config label or config file

  • The name and version of a config file, formatted as <file_name>:<version>, where the version is a git reference, such as a git tag or commit hash. This form does not support labels.

async check_for_duplicate_heartbeat(num_messages=5)

Monitor heartbeat events and return True if any have a different private_origin.

Intended for use by check_if_duplicate.

The heartbeat loop should be running before this is called. This avoids the issue that if 2 CSCs are started at the same time then neither will see the other one’s heartbeat. This code also assumes that will be true; it will likely raise asyncio.TimeoutError if not.

Parameters:

num_messages (float) – The number of heartbeat messages to read.

Returns:

origin – private_origin field of duplicate heartbeat, or 0 if none detected.

Return type:

int

Raises:

asyncio.TimeoutError – If no heartbeat seen within the specified time.

async check_scheduled_targets()

Loop through the scheduled targets list, check status and tell driver of completed observations.

Returns:

True if all checked scripts where Done or in non-final state. False if no scheduled targets to check or if one or more scripts ended up a failed or unrecognized state.

Return type:

bool

async check_script_info(data)

A callback method to check script info.

This method will first update the model with the incoming script info then check the scheduled targets. This should allow the Scheduler to cleanup remaining scripts from the ScriptQueue when one Script of a block fails.

Parameters:

data (BaseDdsDataType) – Script info topic data.

Return type:

None

async check_targets_queue_condition()

Check targets queue condition.

For now the check is only verifying if more targets need to be added to the internal queue. In the future this method will be responsible for verifying that the predicted schedule is still fine and requesting a re-scheduling if needed.

async close(exception=None, cancel_start=True)

Shut down, clean up resources and set done_task done.

May be called multiple times. The first call closes the Controller; subsequent calls wait until the Controller is closed.

Subclasses should override close_tasks instead of close, unless you have a good reason to do otherwise.

Parameters:
  • exception (Exception, optional) – The exception that caused stopping, if any, in which case the self.done_task exception is set to this value. Specify None for a normal exit, in which case the self.done_task result is set to None.

  • cancel_start (bool, optional) – Cancel the start task? Leave this true unless calling this from the start task.

Return type:

None

Notes

Removes the SAL log handler, calls close_tasks to stop all background tasks, pauses briefly to allow final SAL messages to be sent, then closes the domain.

async close_tasks()

Shut down pending tasks. Called by close.

Return type:

None

async compute_predicted_schedule(*args, **kwargs)
async configure(config)

This method is responsible for configuring the scheduler models and the scheduler algorithm, given the input setting. It will raise an exception if the input setting is not valid.

Parameters:

config (types.SimpleNamespace) – Configuration, as described by schema/Scheduler.yaml

Return type:

None

current_scheduler_state(publish_lfoa)

A context manager to handle storing the current scheduler state, performing some operations on it and then resetting it to the previous state.

Parameters:

publish_lfoa (bool) – Publish current state to large file annex?

detailed_state(detailed_state)

Context manager to set the detailed state for an operation then return it to the initial value after it executes.

This method will acquire a lock to prevent executing a detailed state operation inside another.

Parameters:

detailed_state (DetailedState) – Detailed state value.

async do_addBlock(data)

Implement add block command.

Parameters:

data (DataType) – Command data.

Raises:

NotImplementedError – Command not implemented yet.

async do_computePredictedSchedule(data)

Compute and publish the predicted schedule.

This command can only be executed if the Scheduler is idle. It is currently running, the command will be rejected.

Parameters:

data (DataType) – Command data.

async do_disable(data)

Transition from State.ENABLED to State.DISABLED.

Parameters:

data (cmd_disable.DataType) – Command data

Return type:

None

async do_enable(data)

Transition from State.DISABLED to State.ENABLED.

Parameters:

data (cmd_enable.DataType) – Command data

Return type:

None

async do_exitControl(data)

Transition from State.STANDBY to State.OFFLINE and quit.

Parameters:

data (cmd_exitControl.DataType) – Command data

Return type:

None

async do_getBlockStatus(data)

Implement get block status command.

Parameters:

data (DataType) – Command data.

Raises:

NotImplementedError – Command not implemented yet.

async do_load(data)

Load user-defined schedule definition from URI.

The file is passed on to the driver to load. It must be compatible with the currently configured scheduling algorithm or the load will fail, and the command will be rejected.

Parameters:

data (DataType) – Command data

async do_removeBlock(data)

Implement remove block command.

Parameters:

data (DataType) – Command data.

Raises:

NotImplementedError – Command not implemented yet.

async do_resume(data)

Resume target production loop.

Parameters:

data (DataType) – Command data

Raises:

RuntimeError – If target production loop is already running.

async do_setLogLevel(data)

Set logging level.

Parameters:

data (cmd_setLogLevel.DataType) – Logging level.

Return type:

None

async do_standby(data)

Transition from State.DISABLED or State.FAULT to State.STANDBY.

Parameters:

data (cmd_standby.DataType) – Command data

Return type:

None

async do_start(data)

Transition from State.STANDBY to State.DISABLED.

Parameters:

data (cmd_start.DataType) – Command data

Return type:

None

async do_stop(data)

Stop target production loop.

Parameters:

data (DataType) – Command data

async do_validateBlock(data)

Implement validate block command.

Parameters:

data (DataType) – Command data.

Raises:

NotImplementedError – Command not implemented yet.

async end_disable(data)

End do_disable; called after state changes but before command acknowledged.

Parameters:

data (DataType) – Command data

Return type:

None

async end_enable(data)

End do_enable; called after state changes but before command acknowledged.

Parameters:

data (DataType) – Command data

Return type:

None

async end_exitControl(data)

End do_exitControl; called after state changes but before command acknowledged.

Parameters:

data (DataType) – Command data

Return type:

None

async end_standby(data)

End do_standby; called after state changes but before command acknowledged.

Parameters:

data (DataType) – Command data

Return type:

None

async end_start(data)

End do_start; called after state changes but before command acknowledged.

Parameters:

data (DataType) – Command data

async estimate_next_target()

Estimate how long until the next target become available.

async execute_block()

Execute an individual block when the Scheduler is not running.

This method will transition the Scheduler from idle to running, queue a single target and go back to idle.

async fault(code, report, traceback='')

Override default fault state method.

Before transitioning to FAULT, try to cleanup the queue.

Parameters:
  • code (int) – Error code for the errorCode event. If None then errorCode is not output and you should output it yourself. Specifying None is deprecated; please always specify an integer error code.

  • report (str) – Description of the error.

  • traceback (str, optional) – Description of the traceback, if any.

Return type:

None

async generate_target_queue(*args, **kwargs)
static get_config_pkg()

Get the name of the configuration package, e.g. “ts_config_ocs”.

async get_observing_scripts_config_validator()

Get observing scripts configuration validator.

Returns:

observing_scripts_config_validator – Dictionary with the script name and a boolean indicating if the script is standard or external as key and a configuration validator as value.

Return type:

ValidationRules

async get_queue(request=True)

Utility method to get the queue.

Parameters:

request (bool) – Issue request for queue state?

Returns:

queue – SAL Topic with information about the queue.

Return type:

ScriptQueue_logevent_queueC

async handle_no_targets_on_queue()

Handle condition when there are no more targets on the queue.

async handle_observatory_state()

Handle observatory state.

async handle_summary_state()

Handle summary state.

If the component is DISABLED or ENABLED, it will make sure the telemetry loop is running. Shutdown the telemetry loop if in STANDBY.

idle_to_running()

Context manager to handle transitioning from idle to running then back to idle.

async implement_simulation_mode(simulation_mode)

Implement going into or out of simulation mode.

Deprecated. See simulation mode for details.

Parameters:

simulation_mode (int) – Requested simulation mode; 0 for normal operation.

Raises:

ExpectedError – If simulation_mode is not a supported value.

Return type:

None

async lock_target_loop_and_check_targets()
classmethod make_from_cmd_line(index, check_if_duplicate=False, **kwargs)

Construct a CSC from command line arguments.

Parameters:
  • index (int, enum.IntEnum, True, or None) –

    If the CSC is indexed, do one of the following:

    • Specify True to make index a required command-line argument that accepts any nonzero index.

    • Specify an enum.IntEnum class to make index a required command-line argument that only accepts the enum values.

    • Specify a non-zero integer to use that index. This is rare; if the CSC is indexed then the user should usually be allowed to specify the index.

    If the CSC is not indexed, specify None or 0.

  • check_if_duplicate (bool, optional) – Check for heartbeat events from the same SAL name and index at startup (before starting the heartbeat loop)? The default is False, to match the BaseCsc default. Note: handled by setting the attribute directly instead of as a constructor argument, because CSCs may not all support the constructor argument.

  • **kwargs (dict, optional) – Additional keyword arguments for your CSC’s constructor.

Returns:

csc – The CSC.

Return type:

cls

Notes

To add additional command-line arguments, override add_arguments and add_kwargs_from_args.

async put_log_level()

Output the logLevel event.

Return type:

None

async put_on_queue(targets)

Given a list of targets, append them on the queue to be observed. Each target sal_index attribute is updated with the unique identifier value (salIndex) returned by the queue.

Parameters:

targets (list [DriverTarget]) – A list of targets to put on the queue.

Return type:

None

async queue_targets(*args, **kwargs)
async read_config_dir()

Read the config dir and put configurationsAvailable if changed.

Output the configurationsAvailable event (if changed), after updating the overrides and version fields. Also update the version field of evt_configurationApplied, in preparation for the next time the event is output.

Return type:

None

async read_config_dir_loop()
Return type:

None

classmethod read_config_files(config_validator, config_dir, files_to_read, git_hash='')

Read a set of configuration files and return the validated config.

Parameters:
  • config_validator (jsonschema validator) – Schema validator for configuration.

  • config_dir (pathlib.Path) – Path to config files.

  • files_to_read (List [str]) – Names of files to read, with .yaml suffix. Empty names are ignored (a useful feature for BaseConfigTestCase). The files are read in order, with each later file overriding values that have been accumulated so far.

  • git_hash (str, optional) – Git hash to use for the files. “” if current.

Returns:

The validated config as a simple namespace.

Return type:

types.SimpleNamespace

Raises:

ExpectedError – If the specified configuration files cannot be found, cannot be parsed as yaml dicts, or produce an invalid configuration (one that does not match the schema).

async register_observation(target)

Register observation.

Parameters:
  • observation (Observation) – Observation to be registered.

  • target (DriverTarget)

Return type:

None

async remove_from_queue(targets)

Given a list of targets, remove them from the queue.

Parameters:

targets (list) – A list of targets to put on the queue.

Return type:

None

async reset_handle_no_targets_on_queue()

Reset conditions that no targets on queue were handled.

async save_scheduler_state(publish_lfoa)

Save scheduler state to S3 bucket and publish event.

Parameters:

publish_lfoa (bool) – Publish current state to large file annex?

Returns:

Path to the current scheduler state snapshot.

Return type:

str

async set_simulation_mode(simulation_mode)

Set the simulation mode.

Await implement_simulation_mode, update the simulation mode property and report the new value.

Parameters:

simulation_mode (int) – Requested simulation mode; 0 for normal operation.

Return type:

None

async simple_target_production_loop()

This coroutine implements the simple target production loop. It will query the status of the queue and, if there is nothing running, it will add an observation to the back of the queue. Once Scheduler is enabled with simple mode, this coroutine will be added to the event loop as a future. While running it will checking the queue and put targets to it. If the queue is paused or there is a running script, it will not add any target to it. If the Scheduler is disabled this method will be cancelled.

Also, note that the target production loop does not care about if it is day or night. It is up to the scheduling algorithm to decide whether there is something to observe or not given the input telemetry. A target produced by the scheduler can have a start time. In this case, the task will be sent to the queue and it is up to the queue or the running script to wait for the specified time. If the scheduling algorithm does not produce any target, then the Scheduler will keep updating telemetry and requesting targets until something is returned to be executed.

NOTE: This method may either run in the main event loop or in an event loop of a thread. If it is the first case, we need to make sure long running tasks are sent to a thread or a process. If the latter, then it should be ok to simple execute long running tasks and block the thread event loop.

async start()

Finish constructing the CSC. :rtype: None

async start_phase2()

Handle the initial state.

Called after start.

Return type:

None

async stop_next_target_timer_task()
async stop_target_loop_execution()

Stop target production loop execution.

Return type:

None

async telemetry_loop()

Scheduler telemetry loop.

This method will monitor and process the observatory state and publish the information to SAL.

async validate_observing_blocks()

Validate observing blocks.

Return type:

None

Notes

This method will walk through the observing blocks defined in the model and validate their configuration. This includes validating the script configuration.