The page you navigated to does not exist, so we brought you to the closest page to it.
flyte.connectors
flyte.connectors
Class
Description
AsyncConnector
This is the base class for all async connectors, and it defines the interface that all connectors must implement.
ConnectorRegistry
This is the registry for all connectors.
Resource
This is the output resource of the job.
ResourceMeta
This is the metadata for the job.
This is the base class for all async connectors, and it defines the interface that all connectors must implement.
The connector service is responsible for invoking connectors.
The executor will communicate with the connector service to create tasks, get the status of tasks, and delete tasks.
All the connectors should be registered in the ConnectorRegistry.
Connector Service will look up the connector based on the task type and version.
Method
Description
create()
Return a resource meta that can be used to get the status of the task.
delete()
Delete the task.
get()
Return the status of the task, and return the outputs in some cases.
get_logs()
Return the metrics for the task.
get_metrics()
Return the metrics for the task.
def create (
task_template: flyteidl2. core. tasks_pb2. TaskTemplate,
output_prefix: str,
inputs: typing. Optional[typing. Dict[str, typing. Any]],
task_execution_metadata: typing. Optional[flyteidl2. plugins. connector_pb2. TaskExecutionMetadata],
kwargs,
) -> flyte. connectors. _connector. ResourceMeta
Return a resource meta that can be used to get the status of the task.
Parameter
Type
task_template
flyteidl2.core.tasks_pb2.TaskTemplate
output_prefix
str
inputs
typing.Optional[typing.Dict[str, typing.Any]]
task_execution_metadata
typing.Optional[flyteidl2.plugins.connector_pb2.TaskExecutionMetadata]
kwargs
**kwargs
def delete (
resource_meta: flyte. connectors. _connector. ResourceMeta,
kwargs,
)
Delete the task. This call should be idempotent. It should raise an error if fails to delete the task.
Parameter
Type
resource_meta
flyte.connectors._connector.ResourceMeta
kwargs
**kwargs
def get (
resource_meta: flyte. connectors. _connector. ResourceMeta,
kwargs,
) -> flyte. connectors. _connector. Resource
Return the status of the task, and return the outputs in some cases. For example, bigquery job
can’t write the structured dataset to the output location, so it returns the output literals to the propeller,
and the propeller will write the structured dataset to the blob store.
Parameter
Type
resource_meta
flyte.connectors._connector.ResourceMeta
kwargs
**kwargs
def get_logs (
resource_meta: flyte. connectors. _connector. ResourceMeta,
kwargs,
) -> flyteidl2. plugins. connector_pb2. GetTaskLogsResponse
Return the metrics for the task.
Parameter
Type
resource_meta
flyte.connectors._connector.ResourceMeta
kwargs
**kwargs
def get_metrics (
resource_meta: flyte. connectors. _connector. ResourceMeta,
kwargs,
) -> flyteidl2. plugins. connector_pb2. GetTaskMetricsResponse
Return the metrics for the task.
Parameter
Type
resource_meta
flyte.connectors._connector.ResourceMeta
kwargs
**kwargs
This is the registry for all connectors.
The connector service will look up the connector registry based on the task type and version.
def get_connector (
task_type_name: str,
task_type_version: int,
) -> flyte. connectors. _connector. AsyncConnector
Parameter
Type
task_type_name
str
task_type_version
int
def get_connector_metadata (
name: str,
) -> flyteidl2. plugins. connector_pb2. Connector
def register (
connector: flyte. connectors. _connector. AsyncConnector,
override: bool,
)
Parameter
Type
connector
flyte.connectors._connector.AsyncConnector
override
bool
This is the output resource of the job.
phase : TaskExecution.Phase
The phase of the job.
message : Optional[str]
The return message from the job.
log_links : Optional[List[TaskLog]]
The log links of the job. For example, the link to the BigQuery Console.
outputs : Optional[Union[LiteralMap, typing.Dict[str, Any]]]
The outputs of the job. If return python native types, the agent will convert them to flyte literals.
custom_info : Optional[typing.Dict[str, Any]]
The custom info of the job. For example, the job config.
class Resource (
phase: < google. protobuf. internal. enum_type_wrapper. EnumTypeWrapper object at 0x10ca18950 > ,
message: typing. Optional[str],
log_links: typing. Optional[typing. List[flyteidl2. core. execution_pb2. TaskLog]],
outputs: typing. Optional[typing. Dict[str, typing. Any]],
custom_info: typing. Optional[typing. Dict[str, typing. Any]],
)
Parameter
Type
phase
<google.protobuf.internal.enum_type_wrapper.EnumTypeWrapper object at 0x10ca18950>
message
typing.Optional[str]
log_links
typing.Optional[typing.List[flyteidl2.core.execution_pb2.TaskLog]]
outputs
typing.Optional[typing.Dict[str, typing.Any]]
custom_info
typing.Optional[typing.Dict[str, typing.Any]]
This is the metadata for the job. For example, the id of the job.
Method
Description
decode()
Decode the resource meta from bytes.
encode()
Encode the resource meta to bytes.
def decode (
data: bytes,
) -> ResourceMeta
Decode the resource meta from bytes.
Parameter
Type
data
bytes
Encode the resource meta to bytes.