Java Code Examples for org.apache.flink.core.fs.FileSystem#delete()
The following examples show how to use
org.apache.flink.core.fs.FileSystem#delete() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: HadoopSwiftFileSystemITCase.java From flink with Apache License 2.0 | 6 votes |
@AfterClass public static void cleanUp() throws IOException { if (!skipTest) { // initialize configuration with valid credentials final Configuration conf = createConfiguration(); FileSystem.initialize(conf); final Path directory = new Path("swift://" + CONTAINER + '.' + SERVICENAME + '/' + TEST_DATA_DIR); final FileSystem fs = directory.getFileSystem(); // clean up fs.delete(directory, true); // now directory must be gone assertFalse(fs.exists(directory)); // reset configuration FileSystem.initialize(new Configuration()); } }
Example 2
Source File: AvroOutputFormatTest.java From flink with Apache License 2.0 | 6 votes |
@Test public void testCompression() throws Exception { // given final Path outputPath = new Path(File.createTempFile("avro-output-file", "avro").getAbsolutePath()); final AvroOutputFormat<User> outputFormat = new AvroOutputFormat<>(outputPath, User.class); outputFormat.setWriteMode(FileSystem.WriteMode.OVERWRITE); final Path compressedOutputPath = new Path(File.createTempFile("avro-output-file", "compressed.avro").getAbsolutePath()); final AvroOutputFormat<User> compressedOutputFormat = new AvroOutputFormat<>(compressedOutputPath, User.class); compressedOutputFormat.setWriteMode(FileSystem.WriteMode.OVERWRITE); compressedOutputFormat.setCodec(AvroOutputFormat.Codec.SNAPPY); // when output(outputFormat); output(compressedOutputFormat); // then assertTrue(fileSize(outputPath) > fileSize(compressedOutputPath)); // cleanup FileSystem fs = FileSystem.getLocalFileSystem(); fs.delete(outputPath, false); fs.delete(compressedOutputPath, false); }
Example 3
Source File: HadoopSwiftFileSystemITCase.java From flink with Apache License 2.0 | 6 votes |
@AfterClass public static void cleanUp() throws IOException { if (!skipTest) { // initialize configuration with valid credentials final Configuration conf = createConfiguration(); FileSystem.initialize(conf); final Path directory = new Path("swift://" + CONTAINER + '.' + SERVICENAME + '/' + TEST_DATA_DIR); final FileSystem fs = directory.getFileSystem(); // clean up fs.delete(directory, true); // now directory must be gone assertFalse(fs.exists(directory)); // reset configuration FileSystem.initialize(new Configuration()); } }
Example 4
Source File: AvroOutputFormatTest.java From Flink-CEPplus with Apache License 2.0 | 6 votes |
@Test public void testCompression() throws Exception { // given final Path outputPath = new Path(File.createTempFile("avro-output-file", "avro").getAbsolutePath()); final AvroOutputFormat<User> outputFormat = new AvroOutputFormat<>(outputPath, User.class); outputFormat.setWriteMode(FileSystem.WriteMode.OVERWRITE); final Path compressedOutputPath = new Path(File.createTempFile("avro-output-file", "compressed.avro").getAbsolutePath()); final AvroOutputFormat<User> compressedOutputFormat = new AvroOutputFormat<>(compressedOutputPath, User.class); compressedOutputFormat.setWriteMode(FileSystem.WriteMode.OVERWRITE); compressedOutputFormat.setCodec(AvroOutputFormat.Codec.SNAPPY); // when output(outputFormat); output(compressedOutputFormat); // then assertTrue(fileSize(outputPath) > fileSize(compressedOutputPath)); // cleanup FileSystem fs = FileSystem.getLocalFileSystem(); fs.delete(outputPath, false); fs.delete(compressedOutputPath, false); }
Example 5
Source File: FsNegativeRunningJobsRegistry.java From Flink-CEPplus with Apache License 2.0 | 6 votes |
/** * Creates a new registry that writes its files to the given FileSystem at * the given working directory path. * * <p>The initialization will attempt to write to the given working directory, in * order to catch setup/configuration errors early. * * @param fileSystem The FileSystem to use for the marker files. * @param workingDirectory The working directory for files to track the job status. * * @throws IOException Thrown, if the specified directory cannot be accessed. */ public FsNegativeRunningJobsRegistry(FileSystem fileSystem, Path workingDirectory) throws IOException { this.fileSystem = checkNotNull(fileSystem, "fileSystem"); this.basePath = checkNotNull(workingDirectory, "workingDirectory"); // to be safe, attempt to write to the working directory, to // catch problems early final Path testFile = new Path(workingDirectory, ".registry_test"); try { createFile(testFile, false); } catch (IOException e) { throw new IOException("Unable to write to working directory: " + workingDirectory, e); } finally { fileSystem.delete(testFile, false); } }
Example 6
Source File: AvroOutputFormatTest.java From flink with Apache License 2.0 | 6 votes |
@Test public void testCompression() throws Exception { // given final Path outputPath = new Path(File.createTempFile("avro-output-file", "avro").getAbsolutePath()); final AvroOutputFormat<User> outputFormat = new AvroOutputFormat<>(outputPath, User.class); outputFormat.setWriteMode(FileSystem.WriteMode.OVERWRITE); final Path compressedOutputPath = new Path(File.createTempFile("avro-output-file", "compressed.avro").getAbsolutePath()); final AvroOutputFormat<User> compressedOutputFormat = new AvroOutputFormat<>(compressedOutputPath, User.class); compressedOutputFormat.setWriteMode(FileSystem.WriteMode.OVERWRITE); compressedOutputFormat.setCodec(AvroOutputFormat.Codec.SNAPPY); // when output(outputFormat); output(compressedOutputFormat); // then assertTrue(fileSize(outputPath) > fileSize(compressedOutputPath)); // cleanup FileSystem fs = FileSystem.getLocalFileSystem(); fs.delete(outputPath, false); fs.delete(compressedOutputPath, false); }
Example 7
Source File: AvroOutputFormatTest.java From flink with Apache License 2.0 | 6 votes |
@Test public void testGenericRecord() throws IOException { final Path outputPath = new Path(File.createTempFile("avro-output-file", "generic.avro").getAbsolutePath()); final AvroOutputFormat<GenericRecord> outputFormat = new AvroOutputFormat<>(outputPath, GenericRecord.class); Schema schema = new Schema.Parser().parse("{\"type\":\"record\", \"name\":\"user\", \"fields\": [{\"name\":\"user_name\", \"type\":\"string\"}, {\"name\":\"favorite_number\", \"type\":\"int\"}, {\"name\":\"favorite_color\", \"type\":\"string\"}]}"); outputFormat.setWriteMode(FileSystem.WriteMode.OVERWRITE); outputFormat.setSchema(schema); output(outputFormat, schema); GenericDatumReader<GenericRecord> reader = new GenericDatumReader<>(schema); DataFileReader<GenericRecord> dataFileReader = new DataFileReader<>(new File(outputPath.getPath()), reader); while (dataFileReader.hasNext()) { GenericRecord record = dataFileReader.next(); assertEquals(record.get("user_name").toString(), "testUser"); assertEquals(record.get("favorite_number"), 1); assertEquals(record.get("favorite_color").toString(), "blue"); } //cleanup FileSystem fs = FileSystem.getLocalFileSystem(); fs.delete(outputPath, false); }
Example 8
Source File: AvroOutputFormatTest.java From flink with Apache License 2.0 | 6 votes |
@Test public void testGenericRecord() throws IOException { final Path outputPath = new Path(File.createTempFile("avro-output-file", "generic.avro").getAbsolutePath()); final AvroOutputFormat<GenericRecord> outputFormat = new AvroOutputFormat<>(outputPath, GenericRecord.class); Schema schema = new Schema.Parser().parse("{\"type\":\"record\", \"name\":\"user\", \"fields\": [{\"name\":\"user_name\", \"type\":\"string\"}, {\"name\":\"favorite_number\", \"type\":\"int\"}, {\"name\":\"favorite_color\", \"type\":\"string\"}]}"); outputFormat.setWriteMode(FileSystem.WriteMode.OVERWRITE); outputFormat.setSchema(schema); output(outputFormat, schema); GenericDatumReader<GenericRecord> reader = new GenericDatumReader<>(schema); DataFileReader<GenericRecord> dataFileReader = new DataFileReader<>(new File(outputPath.getPath()), reader); while (dataFileReader.hasNext()) { GenericRecord record = dataFileReader.next(); assertEquals(record.get("user_name").toString(), "testUser"); assertEquals(record.get("favorite_number"), 1); assertEquals(record.get("favorite_color").toString(), "blue"); } //cleanup FileSystem fs = FileSystem.getLocalFileSystem(); fs.delete(outputPath, false); }
Example 9
Source File: TaskLocalStateStoreImpl.java From flink with Apache License 2.0 | 5 votes |
/** * Helper method to delete a directory. */ private void deleteDirectory(File directory) throws IOException { Path path = new Path(directory.toURI()); FileSystem fileSystem = path.getFileSystem(); if (fileSystem.exists(path)) { fileSystem.delete(path, true); } }
Example 10
Source File: HadoopSwiftFileSystemITCase.java From flink with Apache License 2.0 | 5 votes |
@Test public void testSimpleFileWriteAndRead() throws Exception { final Configuration conf = createConfiguration(); final String testLine = "Hello Upload!"; FileSystem.initialize(conf); final Path path = new Path("swift://" + CONTAINER + '.' + SERVICENAME + '/' + TEST_DATA_DIR + "/test.txt"); final FileSystem fs = path.getFileSystem(); try { try (FSDataOutputStream out = fs.create(path, WriteMode.OVERWRITE); OutputStreamWriter writer = new OutputStreamWriter(out, StandardCharsets.UTF_8)) { writer.write(testLine); } try (FSDataInputStream in = fs.open(path); InputStreamReader ir = new InputStreamReader(in, StandardCharsets.UTF_8); BufferedReader reader = new BufferedReader(ir)) { String line = reader.readLine(); assertEquals(testLine, line); } } finally { fs.delete(path, false); } }
Example 11
Source File: AbstractHadoopFileSystemITTest.java From flink with Apache License 2.0 | 5 votes |
public static void cleanupDirectoryWithRetry(FileSystem fs, Path path, long consistencyToleranceNS) throws IOException, InterruptedException { fs.delete(path, true); long deadline = System.nanoTime() + consistencyToleranceNS; while (fs.exists(path) && System.nanoTime() - deadline < 0) { fs.delete(path, true); Thread.sleep(50L); } Assert.assertFalse(fs.exists(path)); }
Example 12
Source File: RocksDBIncrementalRestoreOperation.java From flink with Apache License 2.0 | 5 votes |
private void cleanUpPathQuietly(@Nonnull Path path) { try { FileSystem fileSystem = path.getFileSystem(); if (fileSystem.exists(path)) { fileSystem.delete(path, true); } } catch (IOException ex) { LOG.warn("Failed to clean up path " + path, ex); } }
Example 13
Source File: TaskLocalStateStoreImpl.java From Flink-CEPplus with Apache License 2.0 | 5 votes |
/** * Helper method to delete a directory. */ private void deleteDirectory(File directory) throws IOException { Path path = new Path(directory.toURI()); FileSystem fileSystem = path.getFileSystem(); if (fileSystem.exists(path)) { fileSystem.delete(path, true); } }
Example 14
Source File: DirectoryStateHandle.java From Flink-CEPplus with Apache License 2.0 | 4 votes |
@Override public void discardState() throws IOException { FileSystem fileSystem = directory.getFileSystem(); fileSystem.delete(directory, true); }
Example 15
Source File: HadoopSwiftFileSystemITCase.java From flink with Apache License 2.0 | 4 votes |
@Test public void testDirectoryListing() throws Exception { final Configuration conf = createConfiguration(); FileSystem.initialize(conf); final Path directory = new Path("swift://" + CONTAINER + '.' + SERVICENAME + '/' + TEST_DATA_DIR + "/testdir/"); final FileSystem fs = directory.getFileSystem(); // directory must not yet exist assertFalse(fs.exists(directory)); try { // create directory assertTrue(fs.mkdirs(directory)); // seems the file system does not assume existence of empty directories assertTrue(fs.exists(directory)); // directory empty assertEquals(0, fs.listStatus(directory).length); // create some files final int numFiles = 3; for (int i = 0; i < numFiles; i++) { Path file = new Path(directory, "/file-" + i); try (FSDataOutputStream out = fs.create(file, FileSystem.WriteMode.NO_OVERWRITE); OutputStreamWriter writer = new OutputStreamWriter(out, StandardCharsets.UTF_8)) { writer.write("hello-" + i + "\n"); } } FileStatus[] files = fs.listStatus(directory); assertNotNull(files); assertEquals(3, files.length); for (FileStatus status : files) { assertFalse(status.isDir()); } // now that there are files, the directory must exist assertTrue(fs.exists(directory)); } finally { // clean up fs.delete(directory, true); } // now directory must be gone assertFalse(fs.exists(directory)); }
Example 16
Source File: HadoopSwiftFileSystemITCase.java From Flink-CEPplus with Apache License 2.0 | 4 votes |
@Test public void testDirectoryListing() throws Exception { final Configuration conf = createConfiguration(); FileSystem.initialize(conf); final Path directory = new Path("swift://" + CONTAINER + '.' + SERVICENAME + '/' + TEST_DATA_DIR + "/testdir/"); final FileSystem fs = directory.getFileSystem(); // directory must not yet exist assertFalse(fs.exists(directory)); try { // create directory assertTrue(fs.mkdirs(directory)); // seems the file system does not assume existence of empty directories assertTrue(fs.exists(directory)); // directory empty assertEquals(0, fs.listStatus(directory).length); // create some files final int numFiles = 3; for (int i = 0; i < numFiles; i++) { Path file = new Path(directory, "/file-" + i); try (FSDataOutputStream out = fs.create(file, FileSystem.WriteMode.NO_OVERWRITE); OutputStreamWriter writer = new OutputStreamWriter(out, StandardCharsets.UTF_8)) { writer.write("hello-" + i + "\n"); } } FileStatus[] files = fs.listStatus(directory); assertNotNull(files); assertEquals(3, files.length); for (FileStatus status : files) { assertFalse(status.isDir()); } // now that there are files, the directory must exist assertTrue(fs.exists(directory)); } finally { // clean up fs.delete(directory, true); } // now directory must be gone assertFalse(fs.exists(directory)); }
Example 17
Source File: DirectoryStateHandle.java From flink with Apache License 2.0 | 4 votes |
@Override public void discardState() throws IOException { FileSystem fileSystem = directory.getFileSystem(); fileSystem.delete(directory, true); }
Example 18
Source File: PythonStreamBinder.java From Flink-CEPplus with Apache License 2.0 | 4 votes |
private static void deleteIfExists(Path path) throws IOException { FileSystem fs = path.getFileSystem(); if (fs.exists(path)) { fs.delete(path, true); } }
Example 19
Source File: FileStateHandle.java From Flink-CEPplus with Apache License 2.0 | 2 votes |
/** * Discard the state by deleting the file that stores the state. If the parent directory * of the state is empty after deleting the state file, it is also deleted. * * @throws Exception Thrown, if the file deletion (not the directory deletion) fails. */ @Override public void discardState() throws Exception { FileSystem fs = getFileSystem(); fs.delete(filePath, false); }
Example 20
Source File: FileStateHandle.java From flink with Apache License 2.0 | 2 votes |
/** * Discard the state by deleting the file that stores the state. If the parent directory * of the state is empty after deleting the state file, it is also deleted. * * @throws Exception Thrown, if the file deletion (not the directory deletion) fails. */ @Override public void discardState() throws Exception { FileSystem fs = getFileSystem(); fs.delete(filePath, false); }