Hi all,I have use case where I need to push the table data to GCS bucket,query = "${QUERY}"
df = spark.sql(query)
gcs_path = "${GCS_PATH}"
df.write.option("maxRecordsPerFile", int("${MAX_RECORDS_PER_FILE}")).mode("${MODE}").json(gcs_path)This can ...