You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by "yihua (via GitHub)" <gi...@apache.org> on 2023/03/01 08:48:50 UTC

[GitHub] [hudi] yihua opened a new pull request, #8080: [HUDI-5865] Fix table service client to instantiate with timeline server

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

   ### Change Logs
   
   In 0.13.0 and latest master, the table service client `BaseHoodieTableServiceClient` is instantiated without any timeline server instance, even if the regular write client has one.  This causes the table service client to start a new embedded timeline server and overwrite the write config passed in from the constructor so that the write config points to the newly started timeline server.
   
   As the regular write client such as `SparkRDDWriteClient` directly passes in the same writeConfig instance, the regular write client's write config is also affected, causing the regular write client to use the newly started embedded timeline server always, instead of the timeline server instance passed in from the constructor or the one instantiated by the regular write client itself.
   
   This means that the Deltastreamer's long-lived timeline server is never going to be used because of this issue.
   
   This PR fixes the issue by properly initiating the table service client with the timeline server from the regular write client.
   
   ### Impact
   
   This makes sure that the timeline server instance passed to the regular write client is used by the write transaction.
   
   ### Risk level
   
   medium
   
   ### 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] hudi-bot commented on pull request #8080: [HUDI-5865] Fix table service client to instantiate with timeline server

Posted by "hudi-bot (via GitHub)" <gi...@apache.org>.
hudi-bot commented on PR #8080:
URL: https://github.com/apache/hudi/pull/8080#issuecomment-1474753012

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "7bbcd89076893ece4bfe24d9969148316c33cee2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15511",
       "triggerID" : "7bbcd89076893ece4bfe24d9969148316c33cee2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "cef6b97830348253425a254e5da6147ff755595d",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15779",
       "triggerID" : "cef6b97830348253425a254e5da6147ff755595d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "36500b7b23e97c42049e605e70b11aee9b8763ec",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "36500b7b23e97c42049e605e70b11aee9b8763ec",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * cef6b97830348253425a254e5da6147ff755595d Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15779) 
   * 36500b7b23e97c42049e605e70b11aee9b8763ec 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 #8080: [HUDI-5865] Fix table service client to instantiate with timeline server

Posted by "hudi-bot (via GitHub)" <gi...@apache.org>.
hudi-bot commented on PR #8080:
URL: https://github.com/apache/hudi/pull/8080#issuecomment-1474762343

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "7bbcd89076893ece4bfe24d9969148316c33cee2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15511",
       "triggerID" : "7bbcd89076893ece4bfe24d9969148316c33cee2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "cef6b97830348253425a254e5da6147ff755595d",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15779",
       "triggerID" : "cef6b97830348253425a254e5da6147ff755595d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "36500b7b23e97c42049e605e70b11aee9b8763ec",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15781",
       "triggerID" : "36500b7b23e97c42049e605e70b11aee9b8763ec",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * cef6b97830348253425a254e5da6147ff755595d Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15779) 
   * 36500b7b23e97c42049e605e70b11aee9b8763ec Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15781) 
   
   <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 #8080: [HUDI-5865] Fix table service client to instantiate with timeline server

Posted by "hudi-bot (via GitHub)" <gi...@apache.org>.
hudi-bot commented on PR #8080:
URL: https://github.com/apache/hudi/pull/8080#issuecomment-1450456923

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "7bbcd89076893ece4bfe24d9969148316c33cee2",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15511",
       "triggerID" : "7bbcd89076893ece4bfe24d9969148316c33cee2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 7bbcd89076893ece4bfe24d9969148316c33cee2 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15511) 
   
   <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 #8080: [HUDI-5865] Fix table service client to instantiate with timeline server

Posted by "hudi-bot (via GitHub)" <gi...@apache.org>.
hudi-bot commented on PR #8080:
URL: https://github.com/apache/hudi/pull/8080#issuecomment-1474789933

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "7bbcd89076893ece4bfe24d9969148316c33cee2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15511",
       "triggerID" : "7bbcd89076893ece4bfe24d9969148316c33cee2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "cef6b97830348253425a254e5da6147ff755595d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15779",
       "triggerID" : "cef6b97830348253425a254e5da6147ff755595d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "36500b7b23e97c42049e605e70b11aee9b8763ec",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15781",
       "triggerID" : "36500b7b23e97c42049e605e70b11aee9b8763ec",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 36500b7b23e97c42049e605e70b11aee9b8763ec Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15781) 
   
   <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 #8080: [HUDI-5865] Fix table service client to instantiate with timeline server

Posted by "nsivabalan (via GitHub)" <gi...@apache.org>.
nsivabalan merged PR #8080:
URL: https://github.com/apache/hudi/pull/8080


-- 
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] danny0405 commented on a diff in pull request #8080: [HUDI-5865] Fix table service client to instantiate with timeline server

Posted by "danny0405 (via GitHub)" <gi...@apache.org>.
danny0405 commented on code in PR #8080:
URL: https://github.com/apache/hudi/pull/8080#discussion_r1121455483


##########
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/client/BaseHoodieTableServiceClient.java:
##########
@@ -87,8 +88,10 @@
 
   protected Set<String> pendingInflightAndRequestedInstants;
 
-  protected BaseHoodieTableServiceClient(HoodieEngineContext context, HoodieWriteConfig clientConfig) {
-    super(context, clientConfig, Option.empty());
+  protected BaseHoodieTableServiceClient(HoodieEngineContext context,
+                                         HoodieWriteConfig clientConfig,
+                                         Option<EmbeddedTimelineService> timelineService) {

Review Comment:
   I don't know what to say, but I'm scared and shocked by this kind of ticky bug, let's add some tests for the table service client.
   
   Ahother bug introduced by code rafactoring.



-- 
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] yihua commented on pull request #8080: [HUDI-5865] Fix table service client to instantiate with timeline server

Posted by "yihua (via GitHub)" <gi...@apache.org>.
yihua commented on PR #8080:
URL: https://github.com/apache/hudi/pull/8080#issuecomment-1474754288

   @yuzhaojing Thanks for the suggestion.
   > 1. Add unit tests to confirm that the table service client has not made unexpected modifications to writeConfig.
   I added three tests to make sure that the write config is not modified if the timeline server instance is passed in and the timeline server used by the write client and corresponding table service client is the same.
   
   > 2. Confirm that the table service of the table service client is scheduled and executed normally.
   > 3. Call correctly after starting the managed service.
   
   These are already covered by existing table service tests, so I feel we don't have to test the table service client independently.  If new tests are really needed, you can put up a separate PR.


-- 
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 #8080: [HUDI-5865] Fix table service client to instantiate with timeline server

Posted by "hudi-bot (via GitHub)" <gi...@apache.org>.
hudi-bot commented on PR #8080:
URL: https://github.com/apache/hudi/pull/8080#issuecomment-1474518985

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "7bbcd89076893ece4bfe24d9969148316c33cee2",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15511",
       "triggerID" : "7bbcd89076893ece4bfe24d9969148316c33cee2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "cef6b97830348253425a254e5da6147ff755595d",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "cef6b97830348253425a254e5da6147ff755595d",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 7bbcd89076893ece4bfe24d9969148316c33cee2 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15511) 
   * cef6b97830348253425a254e5da6147ff755595d 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 #8080: [HUDI-5865] Fix table service client to instantiate with timeline server

Posted by "hudi-bot (via GitHub)" <gi...@apache.org>.
hudi-bot commented on PR #8080:
URL: https://github.com/apache/hudi/pull/8080#issuecomment-1449616880

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "7bbcd89076893ece4bfe24d9969148316c33cee2",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "7bbcd89076893ece4bfe24d9969148316c33cee2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 7bbcd89076893ece4bfe24d9969148316c33cee2 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] yuzhaojing commented on pull request #8080: [HUDI-5865] Fix table service client to instantiate with timeline server

Posted by "yuzhaojing (via GitHub)" <gi...@apache.org>.
yuzhaojing commented on PR #8080:
URL: https://github.com/apache/hudi/pull/8080#issuecomment-1453735396

   > @yuzhaojing @xushiyan The changes to the write client are done when introducing the new table service client. Before that, based on my understanding, the inline table services running along with the regular write client share the same timeline server. So I think with the new table service client, we should still follow the same convention. Is there anything I miss? When the table service manager is used, how's the interplay between the timeline server and the table service manager?
   > 
   > cc @nsivabalan
   > 
   > Before we fully agree on the approach here, let's not merge this PR. Also, I'd like to add some tests to guard around the expected behavior, after the discussion.
   
   @yihua @danny0405 @xushiyan I'm sorry for this serious bug. I think the table service client should share the same timeline server as the regular write client. Here I think the following tests can be added to the table service client: 
   
   1. Add unit tests to confirm that the table service client has not made unexpected modifications to writeConfig.
   2. Confirm that the table service of the table service client is scheduled and executed normally.
   3. Call correctly after starting the managed service.
   
   Want to hear your thoughts and apologize 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] yihua commented on pull request #8080: [HUDI-5865] Fix table service client to instantiate with timeline server

Posted by "yihua (via GitHub)" <gi...@apache.org>.
yihua commented on PR #8080:
URL: https://github.com/apache/hudi/pull/8080#issuecomment-1449604758

   @yuzhaojing @xushiyan The changes to the write client are done when introducing the new table service client.  Before that, based on my understanding, the inline table services running along with the regular write client share the same timeline server.  So I think with the new table service client, we should still follow the same convention.  Is there anything I miss?  When the table service manager is used, how's the interplay between the timeline server and the table service manager?
   
   cc @nsivabalan 
   
   Before we fully agree on the approach here, let's not merge this PR.  Also, I'd like to add some tests to guard around the expected behavior, after the discussion.


-- 
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 #8080: [HUDI-5865] Fix table service client to instantiate with timeline server

Posted by "hudi-bot (via GitHub)" <gi...@apache.org>.
hudi-bot commented on PR #8080:
URL: https://github.com/apache/hudi/pull/8080#issuecomment-1474525511

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "7bbcd89076893ece4bfe24d9969148316c33cee2",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15511",
       "triggerID" : "7bbcd89076893ece4bfe24d9969148316c33cee2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "cef6b97830348253425a254e5da6147ff755595d",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15779",
       "triggerID" : "cef6b97830348253425a254e5da6147ff755595d",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 7bbcd89076893ece4bfe24d9969148316c33cee2 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15511) 
   * cef6b97830348253425a254e5da6147ff755595d Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15779) 
   
   <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 #8080: [HUDI-5865] Fix table service client to instantiate with timeline server

Posted by "hudi-bot (via GitHub)" <gi...@apache.org>.
hudi-bot commented on PR #8080:
URL: https://github.com/apache/hudi/pull/8080#issuecomment-1449692306

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "7bbcd89076893ece4bfe24d9969148316c33cee2",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15511",
       "triggerID" : "7bbcd89076893ece4bfe24d9969148316c33cee2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 7bbcd89076893ece4bfe24d9969148316c33cee2 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15511) 
   
   <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] danny0405 commented on pull request #8080: [HUDI-5865] Fix table service client to instantiate with timeline server

Posted by "danny0405 (via GitHub)" <gi...@apache.org>.
danny0405 commented on PR #8080:
URL: https://github.com/apache/hudi/pull/8080#issuecomment-1454358368

   > > @yuzhaojing @xushiyan The changes to the write client are done when introducing the new table service client. Before that, based on my understanding, the inline table services running along with the regular write client share the same timeline server. So I think with the new table service client, we should still follow the same convention. Is there anything I miss? When the table service manager is used, how's the interplay between the timeline server and the table service manager?
   > > cc @nsivabalan
   > > Before we fully agree on the approach here, let's not merge this PR. Also, I'd like to add some tests to guard around the expected behavior, after the discussion.
   > 
   > @yihua @danny0405 @xushiyan I'm sorry for this serious bug. I think the table service client should share the same timeline server as the regular write client. Here I think the following tests can be added to the table service client:
   > 
   > 1. Add unit tests to confirm that the table service client has not made unexpected modifications to writeConfig.
   > 2. Confirm that the table service of the table service client is scheduled and executed normally.
   > 3. Call correctly after starting the managed service.
   > 
   > Want to hear your thoughts and apologize again!
   
   Yeah, we need some basic UT for the service client.


-- 
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 #8080: [HUDI-5865] Fix table service client to instantiate with timeline server

Posted by "hudi-bot (via GitHub)" <gi...@apache.org>.
hudi-bot commented on PR #8080:
URL: https://github.com/apache/hudi/pull/8080#issuecomment-1474698588

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "7bbcd89076893ece4bfe24d9969148316c33cee2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15511",
       "triggerID" : "7bbcd89076893ece4bfe24d9969148316c33cee2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "cef6b97830348253425a254e5da6147ff755595d",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15779",
       "triggerID" : "cef6b97830348253425a254e5da6147ff755595d",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * cef6b97830348253425a254e5da6147ff755595d Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=15779) 
   
   <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