You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by GitBox <gi...@apache.org> on 2022/10/11 04:38:46 UTC

[GitHub] [hudi] wulei0302 opened a new pull request, #6916: [HUDI-5003] Fix the type of InLineFileSystem`startOffset to long

wulei0302 opened a new pull request, #6916:
URL: https://github.com/apache/hudi/pull/6916

   ### Change Logs
   
   InLineFileSystem will throw NumberFormatException, cause the type of startOffset is int and out of bounds
   
   ### Impact
   
   N/A
   
   **Risk level: none | low | medium | high**
   
   low
   
   ### Documentation Update
   
   N/A
   
   ### Contributor's checklist
   
   - [ ] Read through [contributor's guide](https://hudi.apache.org/contribute/how-to-contribute)
   - [ ] Change Logs and Impact were stated clearly
   - [ ] Adequate tests were added if applicable
   - [ ] CI passed
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] wulei0302 commented on a diff in pull request #6916: [HUDI-5003] Fix the type of InLineFileSystem`startOffset to long

Posted by GitBox <gi...@apache.org>.
wulei0302 commented on code in PR #6916:
URL: https://github.com/apache/hudi/pull/6916#discussion_r992194945


##########
hudi-common/src/main/java/org/apache/hudi/common/fs/inline/InLineFsDataInputStream.java:
##########
@@ -33,11 +33,11 @@
  */
 public class InLineFsDataInputStream extends FSDataInputStream {
 
-  private final int startOffset;
+  private final long startOffset;
   private final FSDataInputStream outerStream;
   private final int length;
 
-  public InLineFsDataInputStream(int startOffset, FSDataInputStream outerStream, int length) throws IOException {
+  public InLineFsDataInputStream(long startOffset, FSDataInputStream outerStream, int length) throws IOException {

Review Comment:
   As above



-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6916: [HUDI-5003] Fix the type of InLineFileSystem`startOffset to long

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6916:
URL: https://github.com/apache/hudi/pull/6916#issuecomment-1274095324

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a1b895fece1cd4eb9853a8a41a99897cf1d46425",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "a1b895fece1cd4eb9853a8a41a99897cf1d46425",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a1b895fece1cd4eb9853a8a41a99897cf1d46425 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] wulei0302 commented on pull request #6916: [HUDI-5003] Fix the type of InLineFileSystem`startOffset to long

Posted by GitBox <gi...@apache.org>.
wulei0302 commented on PR #6916:
URL: https://github.com/apache/hudi/pull/6916#issuecomment-1275520656

   @hudi-bot run azure


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] wulei0302 commented on a diff in pull request #6916: [HUDI-5003] Fix the type of InLineFileSystem`startOffset to long

Posted by GitBox <gi...@apache.org>.
wulei0302 commented on code in PR #6916:
URL: https://github.com/apache/hudi/pull/6916#discussion_r992192606


##########
hudi-common/src/main/java/org/apache/hudi/common/fs/inline/InLineFsDataInputStream.java:
##########
@@ -33,11 +33,11 @@
  */
 public class InLineFsDataInputStream extends FSDataInputStream {
 
-  private final int startOffset;
+  private final long startOffset;
   private final FSDataInputStream outerStream;
   private final int length;

Review Comment:
   **length** be **int** type is ok,  which in the FSDataInputStream(Hadoop) is also **int**.   **length** as maximum number of bytes to read be **int** type may by enough.



-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] wulei0302 commented on pull request #6916: [HUDI-5003] Fix the type of InLineFileSystem`startOffset to long

Posted by GitBox <gi...@apache.org>.
wulei0302 commented on PR #6916:
URL: https://github.com/apache/hudi/pull/6916#issuecomment-1278499894

   > can we add a unit test too? cc @nsivabalan
   
   @xushiyan I only added a simple ut for InLineFSUtils. If you have better suggestions, I will adjust it again. 


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6916: [HUDI-5003] Fix the type of InLineFileSystem`startOffset to long

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6916:
URL: https://github.com/apache/hudi/pull/6916#issuecomment-1278509518

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a1b895fece1cd4eb9853a8a41a99897cf1d46425",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12121",
       "triggerID" : "a1b895fece1cd4eb9853a8a41a99897cf1d46425",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f12dc84171cb27468a2343f8ee39fe40e270a6fd",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12133",
       "triggerID" : "f12dc84171cb27468a2343f8ee39fe40e270a6fd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f12dc84171cb27468a2343f8ee39fe40e270a6fd",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12148",
       "triggerID" : "1275520656",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "ee346e29e600ee2bccaaf83b0c28344bfdce606b",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "ee346e29e600ee2bccaaf83b0c28344bfdce606b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f12dc84171cb27468a2343f8ee39fe40e270a6fd Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12133) Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12148) 
   * ee346e29e600ee2bccaaf83b0c28344bfdce606b UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6916: [HUDI-5003] Fix the type of InLineFileSystem`startOffset to long

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6916:
URL: https://github.com/apache/hudi/pull/6916#issuecomment-1275551515

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a1b895fece1cd4eb9853a8a41a99897cf1d46425",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12121",
       "triggerID" : "a1b895fece1cd4eb9853a8a41a99897cf1d46425",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f12dc84171cb27468a2343f8ee39fe40e270a6fd",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12133",
       "triggerID" : "f12dc84171cb27468a2343f8ee39fe40e270a6fd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f12dc84171cb27468a2343f8ee39fe40e270a6fd",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12148",
       "triggerID" : "1275520656",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f12dc84171cb27468a2343f8ee39fe40e270a6fd Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12133) Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12148) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6916: [HUDI-5003] Fix the type of InLineFileSystem`startOffset to long

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6916:
URL: https://github.com/apache/hudi/pull/6916#issuecomment-1274344125

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a1b895fece1cd4eb9853a8a41a99897cf1d46425",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12121",
       "triggerID" : "a1b895fece1cd4eb9853a8a41a99897cf1d46425",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a1b895fece1cd4eb9853a8a41a99897cf1d46425 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12121) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] wulei0302 commented on a diff in pull request #6916: [HUDI-5003] Fix the type of InLineFileSystem`startOffset to long

Posted by GitBox <gi...@apache.org>.
wulei0302 commented on code in PR #6916:
URL: https://github.com/apache/hudi/pull/6916#discussion_r992296767


##########
hudi-common/src/main/java/org/apache/hudi/common/fs/inline/InLineFsDataInputStream.java:
##########
@@ -33,11 +33,11 @@
  */
 public class InLineFsDataInputStream extends FSDataInputStream {
 
-  private final int startOffset;
+  private final long startOffset;
   private final FSDataInputStream outerStream;
   private final int length;

Review Comment:
   > in `InLineFSUtils.getInlineFilePath`, the inLineLength is `long`, so I think it's better to be consistent.
   
   it make sense. thx.



-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] KnightChess commented on a diff in pull request #6916: [HUDI-5003] Fix the type of InLineFileSystem`startOffset to long

Posted by GitBox <gi...@apache.org>.
KnightChess commented on code in PR #6916:
URL: https://github.com/apache/hudi/pull/6916#discussion_r992245936


##########
hudi-common/src/main/java/org/apache/hudi/common/fs/inline/InLineFsDataInputStream.java:
##########
@@ -33,11 +33,11 @@
  */
 public class InLineFsDataInputStream extends FSDataInputStream {
 
-  private final int startOffset;
+  private final long startOffset;
   private final FSDataInputStream outerStream;
   private final int length;

Review Comment:
   in `InLineFSUtils.getInlineFilePath`, the inLineLength is `long`, so I think it's better to be consistent.



-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] KnightChess commented on a diff in pull request #6916: [HUDI-5003] Fix the type of InLineFileSystem`startOffset to long

Posted by GitBox <gi...@apache.org>.
KnightChess commented on code in PR #6916:
URL: https://github.com/apache/hudi/pull/6916#discussion_r992103084


##########
hudi-common/src/main/java/org/apache/hudi/common/fs/inline/InLineFsDataInputStream.java:
##########
@@ -33,11 +33,11 @@
  */
 public class InLineFsDataInputStream extends FSDataInputStream {
 
-  private final int startOffset;
+  private final long startOffset;
   private final FSDataInputStream outerStream;
   private final int length;
 
-  public InLineFsDataInputStream(int startOffset, FSDataInputStream outerStream, int length) throws IOException {
+  public InLineFsDataInputStream(long startOffset, FSDataInputStream outerStream, int length) throws IOException {

Review Comment:
   length too.



##########
hudi-common/src/main/java/org/apache/hudi/common/fs/inline/InLineFsDataInputStream.java:
##########
@@ -33,11 +33,11 @@
  */
 public class InLineFsDataInputStream extends FSDataInputStream {
 
-  private final int startOffset;
+  private final long startOffset;
   private final FSDataInputStream outerStream;
   private final int length;

Review Comment:
   length need be `long` too



-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6916: [HUDI-5003] Fix the type of InLineFileSystem`startOffset to long

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6916:
URL: https://github.com/apache/hudi/pull/6916#issuecomment-1278834308

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a1b895fece1cd4eb9853a8a41a99897cf1d46425",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12121",
       "triggerID" : "a1b895fece1cd4eb9853a8a41a99897cf1d46425",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f12dc84171cb27468a2343f8ee39fe40e270a6fd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12133",
       "triggerID" : "f12dc84171cb27468a2343f8ee39fe40e270a6fd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f12dc84171cb27468a2343f8ee39fe40e270a6fd",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12148",
       "triggerID" : "1275520656",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "ee346e29e600ee2bccaaf83b0c28344bfdce606b",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12201",
       "triggerID" : "ee346e29e600ee2bccaaf83b0c28344bfdce606b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * ee346e29e600ee2bccaaf83b0c28344bfdce606b Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12201) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6916: [HUDI-5003] Fix the type of InLineFileSystem`startOffset to long

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6916:
URL: https://github.com/apache/hudi/pull/6916#issuecomment-1275145314

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a1b895fece1cd4eb9853a8a41a99897cf1d46425",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12121",
       "triggerID" : "a1b895fece1cd4eb9853a8a41a99897cf1d46425",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f12dc84171cb27468a2343f8ee39fe40e270a6fd",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12133",
       "triggerID" : "f12dc84171cb27468a2343f8ee39fe40e270a6fd",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f12dc84171cb27468a2343f8ee39fe40e270a6fd Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12133) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6916: [HUDI-5003] Fix the type of InLineFileSystem`startOffset to long

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6916:
URL: https://github.com/apache/hudi/pull/6916#issuecomment-1274732037

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a1b895fece1cd4eb9853a8a41a99897cf1d46425",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12121",
       "triggerID" : "a1b895fece1cd4eb9853a8a41a99897cf1d46425",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f12dc84171cb27468a2343f8ee39fe40e270a6fd",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f12dc84171cb27468a2343f8ee39fe40e270a6fd",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a1b895fece1cd4eb9853a8a41a99897cf1d46425 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12121) 
   * f12dc84171cb27468a2343f8ee39fe40e270a6fd UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] xushiyan merged pull request #6916: [HUDI-5003] Fix the type of InLineFileSystem`startOffset to long

Posted by GitBox <gi...@apache.org>.
xushiyan merged PR #6916:
URL: https://github.com/apache/hudi/pull/6916


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6916: [HUDI-5003] Fix the type of InLineFileSystem`startOffset to long

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6916:
URL: https://github.com/apache/hudi/pull/6916#issuecomment-1278512954

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a1b895fece1cd4eb9853a8a41a99897cf1d46425",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12121",
       "triggerID" : "a1b895fece1cd4eb9853a8a41a99897cf1d46425",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f12dc84171cb27468a2343f8ee39fe40e270a6fd",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12133",
       "triggerID" : "f12dc84171cb27468a2343f8ee39fe40e270a6fd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f12dc84171cb27468a2343f8ee39fe40e270a6fd",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12148",
       "triggerID" : "1275520656",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "ee346e29e600ee2bccaaf83b0c28344bfdce606b",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12201",
       "triggerID" : "ee346e29e600ee2bccaaf83b0c28344bfdce606b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f12dc84171cb27468a2343f8ee39fe40e270a6fd Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12133) Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12148) 
   * ee346e29e600ee2bccaaf83b0c28344bfdce606b Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12201) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6916: [HUDI-5003] Fix the type of InLineFileSystem`startOffset to long

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6916:
URL: https://github.com/apache/hudi/pull/6916#issuecomment-1274743187

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a1b895fece1cd4eb9853a8a41a99897cf1d46425",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12121",
       "triggerID" : "a1b895fece1cd4eb9853a8a41a99897cf1d46425",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f12dc84171cb27468a2343f8ee39fe40e270a6fd",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12133",
       "triggerID" : "f12dc84171cb27468a2343f8ee39fe40e270a6fd",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a1b895fece1cd4eb9853a8a41a99897cf1d46425 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12121) 
   * f12dc84171cb27468a2343f8ee39fe40e270a6fd Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12133) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6916: [HUDI-5003] Fix the type of InLineFileSystem`startOffset to long

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6916:
URL: https://github.com/apache/hudi/pull/6916#issuecomment-1274098365

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a1b895fece1cd4eb9853a8a41a99897cf1d46425",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12121",
       "triggerID" : "a1b895fece1cd4eb9853a8a41a99897cf1d46425",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a1b895fece1cd4eb9853a8a41a99897cf1d46425 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12121) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6916: [HUDI-5003] Fix the type of InLineFileSystem`startOffset to long

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6916:
URL: https://github.com/apache/hudi/pull/6916#issuecomment-1275657471

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "a1b895fece1cd4eb9853a8a41a99897cf1d46425",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12121",
       "triggerID" : "a1b895fece1cd4eb9853a8a41a99897cf1d46425",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f12dc84171cb27468a2343f8ee39fe40e270a6fd",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12133",
       "triggerID" : "f12dc84171cb27468a2343f8ee39fe40e270a6fd",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f12dc84171cb27468a2343f8ee39fe40e270a6fd",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12148",
       "triggerID" : "1275520656",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f12dc84171cb27468a2343f8ee39fe40e270a6fd Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12133) Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12148) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org