-
Notifications
You must be signed in to change notification settings - Fork 9.2k
HDFS-16130. Implement CREATE File with FGL #3205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
xinglin
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
new to HDFS but I tried my best to write some comments. Please bear with me, if some of the comments look naive to you.
...oject/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirWriteFileOp.java
Outdated
Show resolved
Hide resolved
...oject/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirWriteFileOp.java
Outdated
Show resolved
Hide resolved
...oject/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirWriteFileOp.java
Outdated
Show resolved
Hide resolved
...oject/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirWriteFileOp.java
Show resolved
Hide resolved
...oject/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirWriteFileOp.java
Show resolved
Hide resolved
shvachko
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
General suggestion here.
- Seems there is a fair amount of refactoring going on in the patch, like adding
createMissingDirs(). We can do such refactoring on trunk, and then this change will be smaller, which will make fgl branch maintenance simpler. - It would be good to have a test one can run to verify the change works. Not necessarily a new test. Could be an existing one.
...s-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirMkdirOp.java
Outdated
Show resolved
Hide resolved
...s-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirMkdirOp.java
Outdated
Show resolved
Hide resolved
...oject/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirWriteFileOp.java
Outdated
Show resolved
Hide resolved
|
💔 -1 overall
This message was automatically generated. |
|
Thanks @shvachko for review and feedback.
|
…tory. Contributed by Renukaprasad C. (#3205)
|
We're closing this stale PR because it has been open for 100 days with no activity. This isn't a judgement on the merit of the PR in any way. It's just a way of keeping the PR queue manageable. |
HDFS-16130. Implement CREATE File with FGL