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

Reduce raft_availability ducktape execution time #4598

Merged
merged 2 commits into from
May 18, 2022

Commits on May 18, 2022

  1. tests: add ping-pong client

    PingPong client abstracts the core Redpanda functionality and checks its
    basic invariant: the client writes a random key/value pair, gets an offset
    and then reads the log until it sees the written record or times out when
    it isn't found
    rystsov committed May 18, 2022
    Configuration menu
    Copy the full SHA
    9c8fb41 View commit details
    Browse the repository at this point in the history
  2. ducky: make raft_availability run faster

    Replaces ad hoc ping-pong check with ping-pong client. The client
    maintains a connection so when we invoke ping-pong 128 times it
    initializes a producer (init_producer_id) only once.
    
    The change reduces test_follower_isolation execution time from 6
    minutes to 30 seconds.
    rystsov committed May 18, 2022
    Configuration menu
    Copy the full SHA
    c287927 View commit details
    Browse the repository at this point in the history