kv

package module
v0.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 3, 2022 License: Apache-2.0 Imports: 6 Imported by: 0

README

xk6-kv

This is a k6 extension using the xk6 system.

❗ This is a proof of concept, isn't supported by the k6 team, and may break in the future. USE AT YOUR OWN RISK!

Build

To build a k6 binary with this extension, first ensure you have the prerequisites:

Then:

  1. Install xk6:
$ go install go.k6.io/xk6/cmd/xk6@latest
  1. Build the binary:
$ xk6 build --with github.com/dgzlopes/xk6-kv@latest

Example

// script.js
import kv from 'k6/x/kv';

export const options = {
  scenarios: {
    generator: {
      exec: 'generator',
      executor: 'per-vu-iterations',
      vus: 5,
    },
    results: {
      exec: 'results',
      executor: 'per-vu-iterations',
      startTime: '1s',
      maxDuration: '2s',
      vus: 1,
    },
    ttl: {
      exec: 'ttl',
      executor: 'constant-vus',
      startTime: '3s',
      vus: 1,
      duration: '2s',
    },
  },
};

const client = new kv.Client();

export function generator() {
  client.set(`hello_${__VU}`, 'world');
  client.setWithTTLInSecond(`ttl_${__VU}`, `ttl_${__VU}`, 5);
}

export function results() {
  console.log(client.get("hello_1"));
  client.delete("hello_1");
  try {
    var keyDeleteValue = client.get("hello_1");
    console.log(typeof (keyDeleteValue));
  }
  catch (err) {
    console.log("empty value", err);
  }
  var r = client.viewPrefix("hello");
  for (var key in r) {
    console.log(key, r[key])
  }
}

export function ttl() {
  try {
    console.log(client.get('ttl_1'));
  }
  catch (err) {
    console.log("empty value", err);
  }
}

Result output:

$ ./k6 run script.js

          /\      |‾‾| /‾‾/   /‾‾/   
     /\  /  \     |  |/  /   /  /    
    /  \/    \    |     (   /   ‾‾\  
   /          \   |  |\  \ |  (‾)  | 
  / __________ \  |__| \__\ \_____/ .io

  execution: local
     script: example.js
     output: -

  scenarios: (100.00%) 3 scenarios, 7 max VUs, 10m30s max duration (incl. graceful stop):
           * generator: 1 iterations for each of 5 VUs (maxDuration: 10m0s, exec: generator, gracefulStop: 30s)
           * results: 1 iterations for each of 1 VUs (maxDuration: 2s, exec: results, startTime: 1s, gracefulStop: 30s)
           * ttl: 1 looping VUs for 2s (exec: ttl, startTime: 3s, gracefulStop: 30s)

INFO[0001] world                                         source=console
INFO[0001] empty value error in get value with key hello_1  source=console
INFO[0001] hello_12 world                                source=console
INFO[0001] hello_2 world                                 source=console
INFO[0001] hello_7 world                                 source=console
INFO[0001] hello_9 world                                 source=console
INFO[0001] hello_5 world                                 source=console
INFO[0001] hello_8 world                                 source=console
INFO[0001] hello_4 world                                 source=console
INFO[0001] hello_6 world                                 source=console
INFO[0001] hello_10 world                                source=console
INFO[0001] hello_11 world                                source=console
INFO[0001] hello_13 world                                source=console
INFO[0001] hello_14 world                                source=console
INFO[0001] hello_15 world                                source=console
INFO[0001] hello_3 world                                 source=console
INFO[0003] ttl_1                                         source=console
INFO[0005] empty value error in get value with key ttl_1  source=console
INFO[0005] empty value error in get value with key ttl_1  source=console
INFO[0005] empty value error in get value with key ttl_1  source=console
INFO[0005] empty value error in get value with key ttl_1  source=console

running (00m05.0s), 0/7 VUs, 47297 complete and 0 interrupted iterations
generator ✓ [======================================] 5 VUs  00m00.0s/10m0s  5/5 iters, 1 per VU
results   ✓ [======================================] 1 VUs  0.0s/2s         1/1 iters, 1 per VU
ttl       ✓ [======================================] 1 VUs  2s             

     data_received........: 0 B   0 B/s
     data_sent............: 0 B   0 B/s
     iteration_duration...: avg=36.8µs min=15.66µs med=22.64µs max=53.39ms p(90)=79.34µs p(95)=95.68µs
     iterations...........: 47297 9457.107597/s
     vus..................: 1     min=0         max=1
     vus_max..............: 7     min=7         max=7

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

type Client struct {
	// contains filtered or unexported fields
}

func (*Client) Delete

func (c *Client) Delete(key string) error

Delete the given key

func (*Client) Get

func (c *Client) Get(key string) (string, error)

Get returns the value for the given key.

func (*Client) Set

func (c *Client) Set(key string, value string) error

Set the given key with the given value.

func (*Client) SetWithTTLInSecond

func (c *Client) SetWithTTLInSecond(key string, value string, ttl int) error

Set the given key with the given value with TTL in second

func (*Client) ViewPrefix

func (c *Client) ViewPrefix(prefix string) map[string]string

ViewPrefix return all the key value pairs where the key starts with some prefix.

type KV

type KV struct{}

KV is the k6 key-value extension.

func (*KV) XClient

func (r *KV) XClient(ctxPtr *context.Context, name string, memory bool) interface{}

XClient represents the Client constructor (i.e. `new kv.Client()`) and returns a new Key Value client object.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL