Hi, I'm writing the output of a python bolt to a file by:
f = open('/tmp/clusters.txt', 'a')
f.write(json.dumps(self.clusters) + 'l\n')
f.close()
It is working fine while testing locally, however, there is no file formed
after it is submitted to the cluster.
Any ideas on how to save the output from python bolt to a file?
Thanks.
Regards,
Dilpreet
