Hadoop - Modern Data Architecture with Hadoop
Given the following Python snippet using Google Cloud Dataproc API to submit a Hadoop job, what will be the output if the job completes successfully?
from google.cloud import dataproc_v1
client = dataproc_v1.JobControllerClient()
job = {
"placement": {"cluster_name": "my-cluster"},
"hadoop_job": {"main_jar_file_uri": "gs://my-bucket/my-job.jar"}
}
response = client.submit_job(project_id="my-project", region="us-central1", job=job)
print(response.status.state)