Code Monkey home page Code Monkey logo

artillery-engine-rediscluster's Introduction

Artillery.io Redis Plugin

Load test Redis with Artillery.io

Based on the TCP Engine by limiter121.

Usage

Important: The plugin requires Artillery 1.5.8-3 or higher.

Install the plugin

# If Artillery is installed globally:
npm install -g artillery-engine-rediscluster

Use the plugin

  1. Set config.redis.targets to the list of servers with ports in the cluster
  2. Set the engine property of the scenario to rediscluster.
  3. Use send in your scenario to send arbitrary data to the server
  4. Specify additional invocation parameters:
    • command - String Redis Command to use (Get, Set, HSet, HGet, GetAsync, SetAsync, LPush, LPop)
    • key - String key to get or set
    • value - String used to set values, push, or publish

Note: Currently the engine does not handle failures gracefully and the test will shutdown with timeouts.

Example Script

config:
  redis:
    targets: "10.100.1.100:6379,10.100.1.100:6380"
  phases:
    - arrivalCount: 10
      duration: 1
  engines:
    rediscluster: {}
scenarios:
  - name: "Test Set & Get"
    engine: rediscluster
    flow:
      - count: 10
        loop:
        - send:
            command: "set"
            key: "Id_{{ id }}"
            value: "Hello"
        -think: 1        
        - send:
            command: "get"
            key: "Id_{{ id }}"
        - think: 1  

Run Your Script

artillery run my_script.yml

License

MPL 2.0

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.