Github user interma commented on a diff in the pull request:

    https://github.com/apache/incubator-hawq/pull/1241#discussion_r116677858
  
    --- Diff: src/backend/libpq/rangerrest.c ---
    @@ -464,6 +466,11 @@ static int call_ranger_rest(CURL_HANDLE curl_handle, 
const char* request)
                }
                else
                {
    +                   if (switchToMaster)
    +                   {
    +                           /* master's RPS has recovered, switch from 
standby's RPS to master's RPS */
    +                           elog(NOTICE, "switch from standby's RPS to 
master's RPS");
    --- End diff --
    
    When this message logged, hawq maybe still talking to standby RPS, right?
    example:
    ```
    talk to standby before;
    time up, set switchToMaster = true;
    talk to master but failed.
    retry talk to standby rps successfully
    if (switchToMaster) elog(...)
    ```
    
    may be a bit confusing to user: 
    saw log "switch back to master", but still talking to standby now.
    looks like elog this is better?
    ```
    "tried to switch back, but %s", talkingWithStandby? "failed":"success";
    ```
    
    And keep it as it's now is also well.  🙂


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to