Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GEODE-8856: Persist gateway-sender startup-action #7859

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from

Commits on Sep 19, 2022

  1. GEODE-8856: Persist gateway-sender startup-action

    New startup-action parameter with values "stop", "pause" and "start" is now persisted
    during the runtime when following commands are issued:
    
        pause gateway-sender  --> startup-action="pause"
        stop gateway-sender   --> startup-action="stop"
        start gateway-sender  --> startup-action="start"
        resume gateway-sender --> startup-action="start"
    
    Parameter is not updated and persisted when commands are executed per member as
    cluster configuration is not updated in that case.
    
    New startup-action parameter will now inter-work with manual-start in a following way:
    
      - If manual-start="true" and startup-action parameter is missing, then gateway sender
        will require manual start (same as before).
      - If manual-start is not set (or "false") and startup-action parameter is missing, then
        gateway sender will be started automatically (same as before).
      - If parameter startup-action is available in cluster configuration at startup,
        then gateway-sender will try to reach that state regardless of manual-start
        parameter value.
    jvarenina committed Sep 19, 2022
    Configuration menu
    Copy the full SHA
    85de201 View commit details
    Browse the repository at this point in the history
  2. Fix for the timeout

    jvarenina committed Sep 19, 2022
    Configuration menu
    Copy the full SHA
    b858edc View commit details
    Browse the repository at this point in the history