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/26 17:52:33 UTC

[GitHub] [hudi] jonvex opened a new pull request, #7070: [HUDI-5099] Update stock data to be more useful for testing

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

   ### Change Logs
   
   The record key is  "{stock name}_{date} {hour}". We have the data from 9:30-10:29 in batch_1 and batch_2 contains data from 10:30-10:59. This means that no new records are introduced, and therefore, only updates occur when ingesting batch_2. This makes validation of the data take too long for our testing. 
   
   Solution is to move the data from 10:00-10:29 into batch_2 so that we will have updates and inserts in both files
   
   ### Impact
   
   Better for testing. No impact anywhere else.
   
   ### Risk level (write none, low medium or high below)
   none
   
   ### Documentation Update
   
   No update required
   
   ### 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] jonvex closed pull request #7070: [HUDI-5099] Update stock data to be more useful for testing

Posted by GitBox <gi...@apache.org>.
jonvex closed pull request #7070: [HUDI-5099] Update stock data to be more useful for testing
URL: https://github.com/apache/hudi/pull/7070


-- 
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 #7070: [HUDI-5099] Update stock data to be more useful for testing

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "884f40a07323c18df77fe7461ed71a909a632811",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12604",
       "triggerID" : "884f40a07323c18df77fe7461ed71a909a632811",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 884f40a07323c18df77fe7461ed71a909a632811 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12604) 
   
   <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 #7070: [HUDI-5099] Update stock data to be more useful for testing

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "884f40a07323c18df77fe7461ed71a909a632811",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12604",
       "triggerID" : "884f40a07323c18df77fe7461ed71a909a632811",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 884f40a07323c18df77fe7461ed71a909a632811 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=12604) 
   
   <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] jonvex commented on pull request #7070: [HUDI-5099] Update stock data to be more useful for testing

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

   I don't think it breaks the demo, but maybe it would be better to do something like
   ```
   cat -n <nlines> batch_1 > new_location/batch_1
   tail  -n +<nlines> batch_1 > new_location/batch_2
   cat batch_2 >> new_location/batch_2
   ```
   instead


-- 
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] jonvex commented on pull request #7070: [HUDI-5099] Update stock data to be more useful for testing

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

   Good catch. I remember looking at docker demo when I made this and decided it wouldn't change anything. Looking again, I'm not sure why I thought that. I'm going to run through the demo and see if it will still work ok, but I don't think it will
   


-- 
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 #7070: [HUDI-5099] Update stock data to be more useful for testing

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "884f40a07323c18df77fe7461ed71a909a632811",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "884f40a07323c18df77fe7461ed71a909a632811",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 884f40a07323c18df77fe7461ed71a909a632811 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