You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a real issue causing false-positive test failures:
Caused by: org.apache.hadoop.fs.FileAlreadyExistsException: File already exists: file:/tmp/ns1/my_table/metadata/v1.metadata.json
at org.apache.hadoop.fs.RawLocalFileSystem.create(RawLocalFileSystem.java:559)
at org.apache.hadoop.fs.RawLocalFileSystem.create(RawLocalFileSystem.java:597)
at org.apache.hadoop.fs.ChecksumFileSystem$ChecksumFSOutputSummer.<init>(ChecksumFileSystem.java:633)
at org.apache.hadoop.fs.ChecksumFileSystem.create(ChecksumFileSystem.java:721)
at org.apache.hadoop.fs.ChecksumFileSystem.create(ChecksumFileSystem.java:700)
at org.apache.hadoop.fs.FileSystem.create(FileSystem.java:1233)
at org.apache.hadoop.fs.FileSystem.create(FileSystem.java:1210)
at org.apache.hadoop.fs.FileSystem.create(FileSystem.java:1091)
Describe the bug
Some tests write test data to the system global
/tmp
:This is bad practice and should be replaced with JUnit's
@TempDir
. It can also easily cause issues when tests are run repeatedly.The text was updated successfully, but these errors were encountered: