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/03/25 02:57:36 UTC

[GitHub] [hudi] alexeykudinkin opened a new pull request #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

alexeykudinkin opened a new pull request #5129:
URL: https://github.com/apache/hudi/pull/5129


   ## *Tips*
   - *Thank you very much for contributing to Apache Hudi.*
   - *Please review https://hudi.apache.org/contribute/how-to-contribute before opening a pull request.*
   
   ## What is the purpose of the pull request
   
   Currently writing t/h Spark DataSource connector, does not respect "hoodie.parquet.max.file.size" setting: in the snippet pasted below i'm trying to limit the file-size to 16Mb, while on disk i'm getting ~80Mb files.
   
   The reason for that is that we rely on `ParquetWriter` to control the file size (`canWrite` method), that relies in turn on FileSystem to trace how much was actually written to FS.
   
   The problem with this approach is that `ParquetWriter` is writing lazily: It creates instances of `ParquetWriter` which in turn cache the whole record group when `write` methods are invoked and only flushes the data to FS only when closing the Writer (ie when `close`) is invoked.
   
   This PR instead rebases `canWrite` to rely on `ParquetWriter::getDataSize` which holistically reflects the size of the records both already written to FS as well as the ones kept in memory.
   
   ## Brief change log
   
   *(for example:)*
     - *Modify AnnotationLocation checkstyle rule in checkstyle.xml*
   
   ## Verify this pull request
   
   *(Please pick either of the following options)*
   
   This pull request is already covered by existing tests, such as *(please describe tests)*.
   
   ## Committer checklist
   
    - [ ] Has a corresponding JIRA in PR title & commit
    
    - [ ] Commit message is descriptive of the change
    
    - [ ] CI is green
   
    - [ ] Necessary doc changes done or have another open PR
          
    - [ ] For large changes, please consider breaking it into sub-tasks under an umbrella JIRA.
   


-- 
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 removed a comment on pull request #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

Posted by GitBox <gi...@apache.org>.
hudi-bot removed a comment on pull request #5129:
URL: https://github.com/apache/hudi/pull/5129#issuecomment-1078675715


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337",
       "triggerID" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * d303b2e439b6ce0929e8387d78a3ad105410f41a Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337) 
   * f39251d5065a8c1b3510aa86ff75407e209f3992 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 #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337",
       "triggerID" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7349",
       "triggerID" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dd1c5ba905eb898ae3fe65b900bdafec751e4e9f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7378",
       "triggerID" : "dd1c5ba905eb898ae3fe65b900bdafec751e4e9f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f39251d5065a8c1b3510aa86ff75407e209f3992 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7349) 
   * dd1c5ba905eb898ae3fe65b900bdafec751e4e9f Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7378) 
   
   <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 #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337",
       "triggerID" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7349",
       "triggerID" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f39251d5065a8c1b3510aa86ff75407e209f3992 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7349) 
   
   <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 #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337",
       "triggerID" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * d303b2e439b6ce0929e8387d78a3ad105410f41a Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337) 
   * f39251d5065a8c1b3510aa86ff75407e209f3992 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] alexeykudinkin commented on a change in pull request #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

Posted by GitBox <gi...@apache.org>.
alexeykudinkin commented on a change in pull request #5129:
URL: https://github.com/apache/hudi/pull/5129#discussion_r835695328



##########
File path: hudi-client/hudi-spark-client/src/test/java/org/apache/hudi/table/action/commit/TestCopyOnWriteActionExecutor.java
##########
@@ -437,7 +437,7 @@ public void testFileSizeUpsertRecords() throws Exception {
         counts++;
       }
     }
-    assertEquals(3, counts, "If the number of records are more than 1150, then there should be a new file");
+    assertEquals(5, counts, "If the number of records are more than 1150, then there should be a new file");

Review comment:
       B/c after the fix it now produces more files than we were before (it was not respecting the cap properly before)




-- 
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 #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * d303b2e439b6ce0929e8387d78a3ad105410f41a 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 removed a comment on pull request #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

Posted by GitBox <gi...@apache.org>.
hudi-bot removed a comment on pull request #5129:
URL: https://github.com/apache/hudi/pull/5129#issuecomment-1078605701


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * d303b2e439b6ce0929e8387d78a3ad105410f41a 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 #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337",
       "triggerID" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * d303b2e439b6ce0929e8387d78a3ad105410f41a Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337) 
   
   <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] nsivabalan commented on a change in pull request #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

Posted by GitBox <gi...@apache.org>.
nsivabalan commented on a change in pull request #5129:
URL: https://github.com/apache/hudi/pull/5129#discussion_r835666707



##########
File path: hudi-client/hudi-spark-client/src/test/java/org/apache/hudi/table/action/commit/TestCopyOnWriteActionExecutor.java
##########
@@ -437,7 +437,7 @@ public void testFileSizeUpsertRecords() throws Exception {
         counts++;
       }
     }
-    assertEquals(3, counts, "If the number of records are more than 1150, then there should be a new file");
+    assertEquals(5, counts, "If the number of records are more than 1150, then there should be a new file");

Review comment:
       may I know why we had to change this ?




-- 
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] alexeykudinkin commented on a change in pull request #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

Posted by GitBox <gi...@apache.org>.
alexeykudinkin commented on a change in pull request #5129:
URL: https://github.com/apache/hudi/pull/5129#discussion_r835695328



##########
File path: hudi-client/hudi-spark-client/src/test/java/org/apache/hudi/table/action/commit/TestCopyOnWriteActionExecutor.java
##########
@@ -437,7 +437,7 @@ public void testFileSizeUpsertRecords() throws Exception {
         counts++;
       }
     }
-    assertEquals(3, counts, "If the number of records are more than 1150, then there should be a new file");
+    assertEquals(5, counts, "If the number of records are more than 1150, then there should be a new file");

Review comment:
       B/c now we produce more files than we were before




-- 
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 removed a comment on pull request #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

Posted by GitBox <gi...@apache.org>.
hudi-bot removed a comment on pull request #5129:
URL: https://github.com/apache/hudi/pull/5129#issuecomment-1079562670


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337",
       "triggerID" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7349",
       "triggerID" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dd1c5ba905eb898ae3fe65b900bdafec751e4e9f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7378",
       "triggerID" : "dd1c5ba905eb898ae3fe65b900bdafec751e4e9f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dd1c5ba905eb898ae3fe65b900bdafec751e4e9f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7385",
       "triggerID" : "1079561708",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * dd1c5ba905eb898ae3fe65b900bdafec751e4e9f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7378) Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7385) 
   
   <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 #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337",
       "triggerID" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7349",
       "triggerID" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dd1c5ba905eb898ae3fe65b900bdafec751e4e9f",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "dd1c5ba905eb898ae3fe65b900bdafec751e4e9f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f39251d5065a8c1b3510aa86ff75407e209f3992 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7349) 
   * dd1c5ba905eb898ae3fe65b900bdafec751e4e9f 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 removed a comment on pull request #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

Posted by GitBox <gi...@apache.org>.
hudi-bot removed a comment on pull request #5129:
URL: https://github.com/apache/hudi/pull/5129#issuecomment-1079042659


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337",
       "triggerID" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7349",
       "triggerID" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f39251d5065a8c1b3510aa86ff75407e209f3992 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7349) 
   
   <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 #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337",
       "triggerID" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7349",
       "triggerID" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * d303b2e439b6ce0929e8387d78a3ad105410f41a Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337) 
   * f39251d5065a8c1b3510aa86ff75407e209f3992 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7349) 
   
   <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 removed a comment on pull request #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

Posted by GitBox <gi...@apache.org>.
hudi-bot removed a comment on pull request #5129:
URL: https://github.com/apache/hudi/pull/5129#issuecomment-1078607262


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337",
       "triggerID" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * d303b2e439b6ce0929e8387d78a3ad105410f41a Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337) 
   
   <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] nsivabalan merged pull request #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

Posted by GitBox <gi...@apache.org>.
nsivabalan merged pull request #5129:
URL: https://github.com/apache/hudi/pull/5129


   


-- 
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 #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337",
       "triggerID" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7349",
       "triggerID" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dd1c5ba905eb898ae3fe65b900bdafec751e4e9f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7378",
       "triggerID" : "dd1c5ba905eb898ae3fe65b900bdafec751e4e9f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dd1c5ba905eb898ae3fe65b900bdafec751e4e9f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7378) 
   
   <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 #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337",
       "triggerID" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7349",
       "triggerID" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dd1c5ba905eb898ae3fe65b900bdafec751e4e9f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7378",
       "triggerID" : "dd1c5ba905eb898ae3fe65b900bdafec751e4e9f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dd1c5ba905eb898ae3fe65b900bdafec751e4e9f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7385",
       "triggerID" : "1079561708",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * dd1c5ba905eb898ae3fe65b900bdafec751e4e9f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7378) Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7385) 
   
   <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 #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337",
       "triggerID" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7349",
       "triggerID" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dd1c5ba905eb898ae3fe65b900bdafec751e4e9f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7378",
       "triggerID" : "dd1c5ba905eb898ae3fe65b900bdafec751e4e9f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dd1c5ba905eb898ae3fe65b900bdafec751e4e9f",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7385",
       "triggerID" : "1079561708",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * dd1c5ba905eb898ae3fe65b900bdafec751e4e9f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7378) Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7385) 
   
   <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 removed a comment on pull request #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

Posted by GitBox <gi...@apache.org>.
hudi-bot removed a comment on pull request #5129:
URL: https://github.com/apache/hudi/pull/5129#issuecomment-1078676999


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337",
       "triggerID" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7349",
       "triggerID" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * d303b2e439b6ce0929e8387d78a3ad105410f41a Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337) 
   * f39251d5065a8c1b3510aa86ff75407e209f3992 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7349) 
   
   <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 removed a comment on pull request #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

Posted by GitBox <gi...@apache.org>.
hudi-bot removed a comment on pull request #5129:
URL: https://github.com/apache/hudi/pull/5129#issuecomment-1079498537


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337",
       "triggerID" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7349",
       "triggerID" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dd1c5ba905eb898ae3fe65b900bdafec751e4e9f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7378",
       "triggerID" : "dd1c5ba905eb898ae3fe65b900bdafec751e4e9f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dd1c5ba905eb898ae3fe65b900bdafec751e4e9f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7378) 
   
   <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 removed a comment on pull request #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

Posted by GitBox <gi...@apache.org>.
hudi-bot removed a comment on pull request #5129:
URL: https://github.com/apache/hudi/pull/5129#issuecomment-1079445841


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337",
       "triggerID" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7349",
       "triggerID" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dd1c5ba905eb898ae3fe65b900bdafec751e4e9f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7378",
       "triggerID" : "dd1c5ba905eb898ae3fe65b900bdafec751e4e9f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f39251d5065a8c1b3510aa86ff75407e209f3992 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7349) 
   * dd1c5ba905eb898ae3fe65b900bdafec751e4e9f Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7378) 
   
   <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 removed a comment on pull request #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

Posted by GitBox <gi...@apache.org>.
hudi-bot removed a comment on pull request #5129:
URL: https://github.com/apache/hudi/pull/5129#issuecomment-1079443873


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7337",
       "triggerID" : "d303b2e439b6ce0929e8387d78a3ad105410f41a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7349",
       "triggerID" : "f39251d5065a8c1b3510aa86ff75407e209f3992",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dd1c5ba905eb898ae3fe65b900bdafec751e4e9f",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "dd1c5ba905eb898ae3fe65b900bdafec751e4e9f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f39251d5065a8c1b3510aa86ff75407e209f3992 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7349) 
   * dd1c5ba905eb898ae3fe65b900bdafec751e4e9f 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] alexeykudinkin commented on pull request #5129: [HUDI-3709] Fixing `ParquetWriter` impls not respecting Parquet Max File Size limit

Posted by GitBox <gi...@apache.org>.
alexeykudinkin commented on pull request #5129:
URL: https://github.com/apache/hudi/pull/5129#issuecomment-1079561708


   @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