LightningWork¶
- class lightning.app.core.LightningWork(parallel=False, cache_calls=True, raise_exception=True, host='127.0.0.1', port=None, local_build_config=None, cloud_build_config=None, cloud_compute=None, run_once=None, start_with_flow=True)[source]¶
Bases:
object
LightningWork, or Work in short, is a building block for long-running jobs.
The LightningApp runs its
LightningFlow
component within an infinite loop and track theLightningWork
status update.Use LightningWork for third-party services or for launching heavy jobs such as downloading data, training or serving a model.
Each LightningWork is running in its own independent process. Works are self-isolated from the rest, e.g any state changes happening within the work will be reflected within the flow but not the other way around.
- Parameters
parallel¶ (
bool
) – Whether to run in parallel mode or not. When False, the flow waits for the work to finish.cache_calls¶ (
bool
) – Whether therun
method should cache its input arguments and not run again when provided with the same arguments in subsequent calls.raise_exception¶ (
bool
) – Whether to re-raise an exception in the flow when raised from within the work run method.port¶ (
Optional
[int
]) – Bind socket to this port. Be default, this is None and should be called within your run method.local_build_config¶ (
Optional
[BuildConfig
]) – The local BuildConfig isn’t used until Lightning supports DockerRuntime.cloud_build_config¶ (
Optional
[BuildConfig
]) – The cloud BuildConfig enables user to easily configure machine before running this work.run_once¶ (
Optional
[bool
]) – Deprecated in favor of cache_calls. This will be removed soon.start_with_flow¶ (
bool
) – Whether the work should be started at the same time as the root flow. Only applies to works defined in__init__
.
Learn More About Lightning Work Inner Workings
- _aggregate_status_timeout(statuses)[source]¶
Method used to return the first request and the total count of timeout after the latest succeeded status.
- Return type
WorkStatus
- static _is_state_attribute(name)[source]¶
Every public attribute is part of the state by default and all protected (prefixed by ‘_’) or private (prefixed by ‘__’) attributes are not.
Exceptions are listed in the _INTERNAL_STATE_VARS class variable.
- Return type
- apply_flow_delta(delta)[source]¶
Override to customize how the flow should update the work state.
- Return type
- configure_layout()[source]¶
Configure the UI of this LightningWork.
You can either
Return a single
Frontend
object to serve a user interface for this Work.Return a string containing a URL to act as the user interface for this Work.
Return
None
to indicate that this Work doesn’t currently have a user interface.
Example: Serve a static directory (with at least a file index.html inside).
from lightning.app.frontend import StaticWebFrontend class Work(LightningWork): def configure_layout(self): return StaticWebFrontend("path/to/folder/to/serve")
Example: Arrange the UI of my children in tabs (default UI by Lightning).
class Work(LightningWork): def configure_layout(self): return [ dict(name="First Tab", content=self.child0), dict(name="Second Tab", content=self.child1), dict(name="Lightning", content="https://lightning.ai"), ]
If you don’t implement
configure_layout
, Lightning will useself.url
.Note
This hook gets called at the time of app creation and then again as part of the loop. If desired, a returned URL can depend on the state. This is not the case if the work returns a
Frontend
. These need to be provided at the time of app creation in order for the runtime to start the server.
- delete()[source]¶
Delete LightingWork component and shuts down hardware provisioned via L.CloudCompute.
Locally, the work.delete() behaves as work.stop().
- Return type
- on_exception(exception)[source]¶
Override to customize how to handle exception in the run method.
- Return type
- on_exit()[source]¶
Override this hook to add your logic when the work is exiting.
Note: This hook is not guaranteed to be called when running in the cloud.
- Return type
- run(*args, **kwargs)[source]¶
Override to add your own logic.
- Raises
LightningPlatformException – If resource exceeds platform quotas or other constraints.
- Return type
- stop()[source]¶
Stops LightingWork component and shuts down hardware provisioned via L.CloudCompute.
This can only be called from a
LightningFlow
.- Return type
- property cache_calls: bool[source]¶
Returns whether the
run
method should cache its input arguments and not run again when provided with the same arguments in subsequent calls.- Return type
- property cloud_build_config: lightning.app.utilities.packaging.build_config.BuildConfig[source]¶
Returns the cloud build config used to prepare the selected cloud hardware.
- Return type
BuildConfig
- property display_name: str[source]¶
Returns the display name of the LightningWork in the cloud.
The display name needs to set before the run method of the work is called.
- Return type
- property internal_ip: str[source]¶
The internal ip address of this LightningWork, reachable by other Work locally and in the cloud.
By default, this attribute returns the empty string and the ip address will only be returned once the work runs. Locally, the address is 127.0.0.1 and in the cloud it will be determined by the cluster.
- Return type
- property lightningignore: Tuple[str, ...][source]¶
Programmatic equivalent of the
.lightningignore
file.
- property num_timeouts: int[source]¶
Return the number of timeout status since the lastest succeeded run.
- Return type
- property parallel: bool[source]¶
Whether to run in parallel mode or not.
When parallel is False, the flow waits for the work to finish.
- Return type
- property status: lightning.app.utilities.app_status.WorkStatus[source]¶
Return the current status of the work.
All statuses are stored in the state.
- Return type
WorkStatus