Kejian-Li commented on a change in pull request #3945: URL: https://github.com/apache/carbondata/pull/3945#discussion_r495732821 ########## File path: core/src/main/java/org/apache/carbondata/core/datastore/filesystem/LocalCarbonFile.java ########## @@ -421,6 +421,12 @@ public boolean createNewFile(final FsPermission permission) throws IOException { return file.createNewFile(); } + @Override + public boolean createNewFile(Boolean overwrite, final FsPermission permission) Review comment: It is good to change Boolean to boolean ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA1 commented on pull request #3945: URL: https://github.com/apache/carbondata/pull/3945#issuecomment-699935155 Build Failed with Spark 2.4.5, Please check CI http://121.244.95.60:12545/job/ApacheCarbon_PR_Builder_2.4.5/2508/ ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA1 commented on pull request #3945: URL: https://github.com/apache/carbondata/pull/3945#issuecomment-699938521 Build Failed with Spark 2.3.4, Please check CI http://121.244.95.60:12545/job/ApacheCarbonPRBuilder2.3/4253/ ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
Klaus-xjp commented on a change in pull request #3945: URL: https://github.com/apache/carbondata/pull/3945#discussion_r495774296 ########## File path: core/src/main/java/org/apache/carbondata/core/datastore/filesystem/AbstractDFSCarbonFile.java ########## @@ -419,6 +419,24 @@ public boolean createNewFile(FsPermission permission) throws IOException { } } + @Override + public boolean createNewFile(Boolean overwrite, FsPermission permission) throws IOException { Review comment: done ########## File path: core/src/main/java/org/apache/carbondata/core/datastore/filesystem/LocalCarbonFile.java ########## @@ -421,6 +421,12 @@ public boolean createNewFile(final FsPermission permission) throws IOException { return file.createNewFile(); } + @Override + public boolean createNewFile(Boolean overwrite, final FsPermission permission) Review comment: done ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
Klaus-xjp commented on pull request #3945: URL: https://github.com/apache/carbondata/pull/3945#issuecomment-699980681 retest this please ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA1 commented on pull request #3945: URL: https://github.com/apache/carbondata/pull/3945#issuecomment-700050277 Build Failed with Spark 2.4.5, Please check CI http://121.244.95.60:12545/job/ApacheCarbon_PR_Builder_2.4.5/2510/ ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA1 commented on pull request #3945: URL: https://github.com/apache/carbondata/pull/3945#issuecomment-700054701 Build Success with Spark 2.3.4, Please check CI http://121.244.95.60:12545/job/ApacheCarbonPRBuilder2.3/4255/ ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
Klaus-xjp commented on pull request #3945: URL: https://github.com/apache/carbondata/pull/3945#issuecomment-700055644 retest this please ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA1 commented on pull request #3945: URL: https://github.com/apache/carbondata/pull/3945#issuecomment-700157254 Build Success with Spark 2.4.5, Please check CI http://121.244.95.60:12545/job/ApacheCarbon_PR_Builder_2.4.5/2513/ ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA1 commented on pull request #3945: URL: https://github.com/apache/carbondata/pull/3945#issuecomment-700160169 Build Success with Spark 2.3.4, Please check CI http://121.244.95.60:12545/job/ApacheCarbonPRBuilder2.3/4258/ ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
marchpure commented on a change in pull request #3945: URL: https://github.com/apache/carbondata/pull/3945#discussion_r495646765 ########## File path: core/src/main/java/org/apache/carbondata/core/datastore/filesystem/LocalCarbonFile.java ########## @@ -421,6 +421,12 @@ public boolean createNewFile(final FsPermission permission) throws IOException { return file.createNewFile(); } + @Override + public boolean createNewFile(Boolean overwrite, final FsPermission permission) + throws IOException { + return file.createNewFile(); Review comment: we can't discard parameters like this ########## File path: core/src/main/java/org/apache/carbondata/core/datastore/impl/FileFactory.java ########## @@ -293,6 +293,32 @@ public static boolean createNewFile( return getCarbonFile(filePath).createNewFile(permission); } + public static boolean createNewFile(String filePath, Boolean overwrite, + final FsPermission permission) throws IOException { + return getCarbonFile(filePath).createNewFile(overwrite, permission); + } + + public static long setCurrentTimetoLastModifiedTime(String filePath) throws IOException { Review comment: setLastModifiedTimetoCurrentTimeto ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
marchpure commented on a change in pull request #3945: URL: https://github.com/apache/carbondata/pull/3945#discussion_r496708385 ########## File path: integration/spark/src/main/scala/org/apache/spark/sql/execution/command/management/CarbonInsertFromStageCommand.scala ########## @@ -507,17 +507,17 @@ case class CarbonInsertFromStageCommand( override def call(): (CarbonFile, CarbonFile, Boolean) = { try { // Get the loading files path - val stageLoadingFile = - FileFactory.getCarbonFile(stagePath + - File.separator + files._1.getName + CarbonTablePath.LOADING_FILE_SUFFIX); + val stageLoadingFilePath = stagePath + File.separator + files._1.getName + + CarbonTablePath.LOADING_FILE_SUFFIX Review comment: take care about format ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
Klaus-xjp commented on a change in pull request #3945: URL: https://github.com/apache/carbondata/pull/3945#discussion_r496844035 ########## File path: core/src/main/java/org/apache/carbondata/core/datastore/impl/FileFactory.java ########## @@ -293,6 +293,32 @@ public static boolean createNewFile( return getCarbonFile(filePath).createNewFile(permission); } + public static boolean createNewFile(String filePath, Boolean overwrite, + final FsPermission permission) throws IOException { + return getCarbonFile(filePath).createNewFile(overwrite, permission); + } + + public static long setCurrentTimetoLastModifiedTime(String filePath) throws IOException { Review comment: i have renamed this function ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
Klaus-xjp commented on a change in pull request #3945: URL: https://github.com/apache/carbondata/pull/3945#discussion_r496853936 ########## File path: integration/spark/src/main/scala/org/apache/spark/sql/execution/command/management/CarbonInsertFromStageCommand.scala ########## @@ -507,17 +507,17 @@ case class CarbonInsertFromStageCommand( override def call(): (CarbonFile, CarbonFile, Boolean) = { try { // Get the loading files path - val stageLoadingFile = - FileFactory.getCarbonFile(stagePath + - File.separator + files._1.getName + CarbonTablePath.LOADING_FILE_SUFFIX); + val stageLoadingFilePath = stagePath + File.separator + files._1.getName + + CarbonTablePath.LOADING_FILE_SUFFIX Review comment: i have reformat this line ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
Klaus-xjp commented on a change in pull request #3945: URL: https://github.com/apache/carbondata/pull/3945#discussion_r496864594 ########## File path: core/src/main/java/org/apache/carbondata/core/datastore/filesystem/LocalCarbonFile.java ########## @@ -421,6 +421,12 @@ public boolean createNewFile(final FsPermission permission) throws IOException { return file.createNewFile(); } + @Override + public boolean createNewFile(Boolean overwrite, final FsPermission permission) + throws IOException { + return file.createNewFile(); Review comment: i have changed this function ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA1 commented on pull request #3945: URL: https://github.com/apache/carbondata/pull/3945#issuecomment-700894338 Build Success with Spark 2.3.4, Please check CI http://121.244.95.60:12545/job/ApacheCarbonPRBuilder2.3/4275/ ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA1 commented on pull request #3945: URL: https://github.com/apache/carbondata/pull/3945#issuecomment-700900738 Build Failed with Spark 2.4.5, Please check CI http://121.244.95.60:12545/job/ApacheCarbon_PR_Builder_2.4.5/2530/ ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
Klaus-xjp commented on pull request #3945: URL: https://github.com/apache/carbondata/pull/3945#issuecomment-701097047 retest this please ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA1 commented on pull request #3945: URL: https://github.com/apache/carbondata/pull/3945#issuecomment-701127913 Build Success with Spark 2.4.5, Please check CI http://121.244.95.60:12545/job/ApacheCarbon_PR_Builder_2.4.5/2532/ ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA1 commented on pull request #3945: URL: https://github.com/apache/carbondata/pull/3945#issuecomment-701128054 Build Success with Spark 2.3.4, Please check CI http://121.244.95.60:12545/job/ApacheCarbonPRBuilder2.3/4277/ ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
Free forum by Nabble | Edit this page |