Google Dataflow - How to specify the TextIO if writing to an On-prem server from Dataflow? (Provided that the On-prem server is connected to GCP with Cloud VPN)
pipeline.apply("Writer",TextIO.write().to("XXX.XXX.XXX.XXX://tmp/somedirectory/somefilename");
Does providing the On-prem IP and directory like in above work, when running the Dataflow job? I tried, and the job completed successfully with elements added in the step summary, but i don't see any files written in the on-prem server. [Not sure if it has anything to do with the authentication with the on-prem server]