-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
48993ea
commit 8e262b0
Showing
4 changed files
with
109 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
89 changes: 89 additions & 0 deletions
89
tensorflow_recommenders_addons/dynamic_embedding/core/utils/hadoop_file_system.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
/* Copyright 2016 The TensorFlow Authors. All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
==============================================================================*/ | ||
|
||
#ifndef TENSORFLOW_CORE_PLATFORM_HADOOP_HADOOP_FILE_SYSTEM_H_ | ||
#define TENSORFLOW_CORE_PLATFORM_HADOOP_HADOOP_FILE_SYSTEM_H_ | ||
|
||
#include <map> | ||
|
||
#include "hdfs/hdfs.h" | ||
#include "tensorflow/core/platform/env.h" | ||
|
||
extern "C" { | ||
struct hdfs_internal; | ||
typedef hdfs_internal* hdfsFS; | ||
} | ||
|
||
namespace tensorflow { | ||
|
||
class LibHDFS; | ||
|
||
class HadoopFileSystem : public FileSystem { | ||
public: | ||
HadoopFileSystem(); | ||
~HadoopFileSystem(); | ||
|
||
TF_USE_FILESYSTEM_METHODS_WITH_NO_TRANSACTION_SUPPORT; | ||
|
||
Status NewRandomAccessFile( | ||
const string& fname, TransactionToken* token, | ||
std::unique_ptr<RandomAccessFile>* result) override; | ||
|
||
Status NewWritableFile(const string& fname, TransactionToken* token, | ||
std::unique_ptr<WritableFile>* result) override; | ||
|
||
Status NewAppendableFile(const string& fname, TransactionToken* token, | ||
std::unique_ptr<WritableFile>* result) override; | ||
|
||
Status NewReadOnlyMemoryRegionFromFile( | ||
const string& fname, TransactionToken* token, | ||
std::unique_ptr<ReadOnlyMemoryRegion>* result) override; | ||
|
||
Status FileExists(const string& fname, TransactionToken* token) override; | ||
|
||
Status GetChildren(const string& dir, TransactionToken* token, | ||
std::vector<string>* result) override; | ||
|
||
Status GetMatchingPaths(const string& pattern, TransactionToken* token, | ||
std::vector<string>* results) override; | ||
|
||
Status DeleteFile(const string& fname, TransactionToken* token) override; | ||
|
||
Status CreateDir(const string& dir, TransactionToken* token) override; | ||
|
||
Status DeleteDir(const string& dir, TransactionToken* token) override; | ||
|
||
Status GetFileSize(const string& fname, TransactionToken* token, | ||
uint64* size) override; | ||
|
||
Status RenameFile(const string& src, const string& target, | ||
TransactionToken* token) override; | ||
|
||
Status Stat(const string& fname, TransactionToken* token, | ||
FileStatistics* stat) override; | ||
|
||
string TranslateName(const string& name) const override; | ||
|
||
private: | ||
mutex mu_; | ||
std::map<std::string, hdfsFS> connectionCache_ TF_GUARDED_BY(mu_); | ||
Status Connect(StringPiece fname, hdfsFS* fs); | ||
}; | ||
|
||
Status SplitArchiveNameAndPath(StringPiece& path, string& nn); | ||
|
||
} // namespace tensorflow | ||
|
||
#endif // TENSORFLOW_CORE_PLATFORM_HADOOP_HADOOP_FILE_SYSTEM_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package(default_visibility = ["//visibility:public"]) | ||
|
||
cc_library( | ||
name = "hadoop", | ||
hdrs = ["hadoop-hdfs-project/hadoop-hdfs-native-client/src/main/native/libhdfs/include/hdfs/hdfs.h"], | ||
copts = [], | ||
includes = ["hadoop-hdfs-project/hadoop-hdfs-native-client/src/main/native/libhdfs/include"], | ||
visibility = ["//visibility:public"], | ||
) |