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

Implement memlog store operations #19533

Merged
merged 3 commits into from
Jul 2, 2020
Merged

Commits on Jul 1, 2020

  1. Implement memlog store operations

    Implement store operation that get/set key value pairs from
    the in-memory store, and log update operations.
    
    This change also include unit tests and store compliance tests.
    
    The addition of the statestore package is split up into multiple
    changeset to ease review. The final version of the package can be found
    [here](https://github.com/urso/beats/tree/fb-input-v2-combined/libbeat/statestore).
    
    Once finalized, the libbeat/statestore package contains:
    - The statestore frontend and interface for use within Beats
    - Interfaces for the store backend
    - A common set of tests store backends need to support
    - a storetest package for testing new features that require a store. The
      testing helpers use map[string]interface{} that can be initialized or
      queried after the test run for validation purposes.
    - The default memlog backend + tests
    urso committed Jul 1, 2020
    Configuration menu
    Copy the full SHA
    95b15c4 View commit details
    Browse the repository at this point in the history
  2. fix import order

    urso committed Jul 1, 2020
    Configuration menu
    Copy the full SHA
    bca0ef6 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2020

  1. review

    urso committed Jul 2, 2020
    Configuration menu
    Copy the full SHA
    02a97ee View commit details
    Browse the repository at this point in the history