airflow.providers.google.cloud.hooks.mlengine

This module contains a Google ML Engine Hook.

Module Contents

Classes

MLEngineHook

Hook for Google ML Engine APIs.

Attributes

log

airflow.providers.google.cloud.hooks.mlengine.log[source]
class airflow.providers.google.cloud.hooks.mlengine.MLEngineHook(gcp_conn_id='google_cloud_default', delegate_to=None, impersonation_chain=None)[source]

Bases: airflow.providers.google.common.hooks.base_google.GoogleBaseHook

Hook for Google ML Engine APIs.

All the methods in the hook where project_id is used must be called with keyword arguments rather than positional.

get_conn(self)[source]

Retrieves the connection to MLEngine.

Returns

Google MLEngine services object.

Return type

googleapiclient.discovery.Resource

create_job(self, job, project_id, use_existing_job_fn=None)[source]

Launches a MLEngine job and wait for it to reach a terminal state.

Parameters
  • project_id (str) -- The Google Cloud project id within which MLEngine job will be launched. If set to None or missing, the default project_id from the Google Cloud connection is used.

  • job (dict) --

    MLEngine Job object that should be provided to the MLEngine API, such as:

    {
      'jobId': 'my_job_id',
      'trainingInput': {
        'scaleTier': 'STANDARD_1',
        ...
      }
    }
    

  • use_existing_job_fn (Optional[Callable]) -- In case that a MLEngine job with the same job_id already exist, this method (if provided) will decide whether we should use this existing job, continue waiting for it to finish and returning the job object. It should accepts a MLEngine job object, and returns a boolean value indicating whether it is OK to reuse the existing job. If 'use_existing_job_fn' is not provided, we by default reuse the existing MLEngine job.

Returns

The MLEngine job object if the job successfully reach a terminal state (which might be FAILED or CANCELLED state).

Return type

dict

cancel_job(self, job_id, project_id)[source]

Cancels a MLEngine job.

Parameters
  • project_id (str) -- The Google Cloud project id within which MLEngine job will be cancelled. If set to None or missing, the default project_id from the Google Cloud connection is used.

  • job_id (str) -- A unique id for the want-to-be cancelled Google MLEngine training job.

Returns

Empty dict if cancelled successfully

Return type

dict

Raises

googleapiclient.errors.HttpError

create_version(self, model_name, version_spec, project_id)[source]

Creates the Version on Google Cloud ML Engine.

Parameters
  • version_spec (Dict) -- A dictionary containing the information about the version. (templated)

  • model_name (str) -- The name of the Google Cloud ML Engine model that the version belongs to. (templated)

  • project_id (str) -- The Google Cloud project name to which MLEngine model belongs. If set to None or missing, the default project_id from the Google Cloud connection is used. (templated)

Returns

If the version was created successfully, returns the operation. Otherwise raises an error .

Return type

dict

set_default_version(self, model_name, version_name, project_id)[source]

Sets a version to be the default. Blocks until finished.

Parameters
  • model_name (str) -- The name of the Google Cloud ML Engine model that the version belongs to. (templated)

  • version_name (str) -- A name to use for the version being operated upon. (templated)

  • project_id (str) -- The Google Cloud project name to which MLEngine model belongs. If set to None or missing, the default project_id from the Google Cloud connection is used. (templated)

Returns

If successful, return an instance of Version. Otherwise raises an error.

Return type

dict

Raises

googleapiclient.errors.HttpError

list_versions(self, model_name, project_id)[source]

Lists all available versions of a model. Blocks until finished.

Parameters
  • model_name (str) -- The name of the Google Cloud ML Engine model that the version belongs to. (templated)

  • project_id (str) -- The Google Cloud project name to which MLEngine model belongs. If set to None or missing, the default project_id from the Google Cloud connection is used. (templated)

Returns

return an list of instance of Version.

Return type

List[Dict]

Raises

googleapiclient.errors.HttpError

delete_version(self, model_name, version_name, project_id)[source]

Deletes the given version of a model. Blocks until finished.

Parameters
  • model_name (str) -- The name of the Google Cloud ML Engine model that the version belongs to. (templated)

  • project_id (str) -- The Google Cloud project name to which MLEngine model belongs.

Returns

If the version was deleted successfully, returns the operation. Otherwise raises an error.

Return type

Dict

create_model(self, model, project_id)[source]

Create a Model. Blocks until finished.

Parameters
  • model (dict) -- A dictionary containing the information about the model.

  • project_id (str) -- The Google Cloud project name to which MLEngine model belongs. If set to None or missing, the default project_id from the Google Cloud connection is used. (templated)

Returns

If the version was created successfully, returns the instance of Model. Otherwise raises an error.

Return type

Dict

Raises

googleapiclient.errors.HttpError

get_model(self, model_name, project_id)[source]

Gets a Model. Blocks until finished.

Parameters
  • model_name (str) -- The name of the model.

  • project_id (str) -- The Google Cloud project name to which MLEngine model belongs. If set to None or missing, the default project_id from the Google Cloud connection is used. (templated)

Returns

If the model exists, returns the instance of Model. Otherwise return None.

Return type

Dict

Raises

googleapiclient.errors.HttpError

delete_model(self, model_name, project_id, delete_contents=False)[source]

Delete a Model. Blocks until finished.

Parameters
  • model_name (str) -- The name of the model.

  • delete_contents (bool) -- Whether to force the deletion even if the models is not empty. Will delete all version (if any) in the dataset if set to True. The default value is False.

  • project_id (str) -- The Google Cloud project name to which MLEngine model belongs. If set to None or missing, the default project_id from the Google Cloud connection is used. (templated)

Raises

googleapiclient.errors.HttpError

Was this entry helpful?