WorkerSettingsResponse

data class WorkerSettingsResponse(val baseUrl: String, val reportingEnabled: Boolean, val servicePath: String, val shuffleServicePath: String, val tempStoragePrefix: String, val workerId: String)

Provides data to pass through to the worker harness.

Constructors

Link copied to clipboard
fun WorkerSettingsResponse(baseUrl: String, reportingEnabled: Boolean, servicePath: String, shuffleServicePath: String, tempStoragePrefix: String, workerId: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The base URL for accessing Google Cloud APIs. When workers access Google Cloud APIs, they logically do so via relative URLs. If this field is specified, it supplies the base URL to use for resolving these relative URLs. The normative algorithm used is defined by RFC 1808, "Relative Uniform Resource Locators". If not specified, the default value is "http://www.googleapis.com/"

Link copied to clipboard

Whether to send work progress updates to the service.

Link copied to clipboard

The Cloud Dataflow service path relative to the root URL, for example, "dataflow/v1b3/projects".

Link copied to clipboard

The Shuffle service path relative to the root URL, for example, "shuffle/v1beta1".

Link copied to clipboard

The prefix of the resources the system should use for temporary storage. The supported resource type is: Google Cloud Storage: storage.googleapis.com/{bucket}/{object} bucket.storage.googleapis.com/{object}

Link copied to clipboard

The ID of the worker running this pipeline.