---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-37-bdc2969400dd> in <module>()
----> 1 svdu.saveAsBinarySeries('svdu')
/root/thunder/python/thunder/rdds/series.pyc in saveAsBinarySeries(self, outputDirPath, overwrite)
867
868 if not overwrite:
--> 869 self._checkOverwrite(outputDirPath)
870 overwrite = True # prevent additional downstream checks for this path
871
/root/thunder/python/thunder/rdds/data.pyc in _checkOverwrite(self, outputDirPath)
115 from thunder.utils.common import AWSCredentials, raiseErrorIfPathExists
116 awsCredentialOverride = AWSCredentials.fromContext(self.rdd.ctx)
--> 117 raiseErrorIfPathExists(outputDirPath, awsCredentialsOverride=awsCredentialOverride)
118
119 def first(self):
/root/thunder/python/thunder/utils/common.pyc in raiseErrorIfPathExists(path, awsCredentialsOverride)
221 if existing:
222 raise ValueError("Path %s appears to already exist. Specify a new directory, or call " % path +
--> 223 "with overwrite=True to overwrite.")
224
225
ValueError: Path svdu appears to already exist. Specify a new directory, or call with overwrite=True to overwrite.