I am working to encode a file using base64 encoding. However I have to do it in cloud workflows. I am new to workflows, can someone guide me on how to do.
Is there a way we can call a java class and execute using google cloud workflows?
192 views Asked by David Sam At
1
While Workflows can encode small amounts of data such as the arguments to an API, larger processing operations like encoding a full file should be done in a service called from a workflow step. Place your Java code in a Cloud Function or Cloud Run service and call it in a workflow step.