We're migrating our EMR cluster to Dataproc, and we're relying on Oozie to run our workflows. The first challenges is how to load the workflow.xml
from Cloud Storage bucket. We used to do it using S3:
oozie.coord.application.path=s3://my_workflow/workflows/daily
Trying to use same approach on GCS does not work at all
oozie.coord.application.path=gs://my_workflow/workflows/daily
When I try to run the Oozie job, I got this error:
gs URI scheme not supported
Do I have to manually configure the scheme on Oozie? I'm using Dataproc initialization action to deploy Oozie.