Git Product home page Git Product logo

graphql-subscriptions-benchmark's Introduction

subscription-benchmark

This is a load generator for GraphQL subscriptions.

Build:

  • Run npm install to install deps
  • Run npm run compile to compile tsc which will output the files in dist directory.

Configuration:

# query to be subscribed
query: |
  subscription ($id: Int!) {
    test(where: {id: {_eq: $id}}) {
      id
      name
    }
  }
# no of connections per seccond
timePeriod: 2
# variables that needs to set while subscribing
variables:
  id: '1'
# headers that needs to be set while creating the connection
headers: []
template:
  range:
    # start vaule of the variables or headers
    start: 1
    # end value of the variables or headers
    end: 10
  # headers that needs to be templated using the range start and end
  headers: []
  # variables that needs to be templated using the range start and end
  variables:
    - id

Setup:

  • Create the events table using knex migrate. Run knex migrate:latest

  • Run the benchmark tool

    PG_CONNECTION_STRING=<posgtres_connection_url> ENDPOINT=<graphql_endpoint> LABEL=<unique_label> CONFIG_FILE_PATH=<path_to_config_file> node index.js
  • Create events by making changes in the subscribed table

  • To stop the subscription, execute NOTIFY benchmark in benchmark postgres instance which will trigger a notification to stop the benchmark script

Benchmark Table:

exports.up = function(knex, Promise) {
    return knex.schema.createTable('events', (table) => {

        table.string('label').notNullable(); // unqiue label to identify benchmark
        table.integer('connection_id').notNullable(); // connection_id represents the nth connection
        table.integer('operation_id').notNullable();
        table.integer('event_number').notNullable(); // event_number represents the nth event that was receieved by the client
        table.jsonb('event_data').notNullable(); // event_data stores the data that was received this can be used to validate
        table.timestamp('event_time', { useTz: true }).notNullable(); // event_time stores the time at which the event was receieved by the client.
        table.boolean('is_error').notNullable(); // is_error represents whether the event was error or not.
        table.integer('latency'); // latency is not populated by the benchmark tool, but this can be populated by calculating `event_time-event_triggerd_time`

        table.unique(['label','connection_id', 'operation_id', 'event_number'])
    });
}

graphql-subscriptions-benchmark's People

Contributors

arvi3411301 avatar coco98 avatar

Stargazers

sina avatar Matthew Bader avatar Justin Woodward avatar JRib avatar  avatar Alexander Salas Bastidas avatar Eric Otto avatar Dipak Saraf avatar Monica Gangwar avatar Andrew Paulicek avatar Иван Вольнов avatar M avatar Rhys Bartels-Waller avatar Praveen Durairaju avatar

Watchers

Brandon Martin avatar  avatar  avatar Rikin Kachhia avatar Stefano Magni avatar Chris Parks avatar Anon Ray avatar James Cloos avatar Jesse avatar Rajoshi Ghosh avatar Dipak Saraf avatar Vishnu Bharathi avatar Sameer Kolhar avatar Jigyasu Arya avatar Matheus Schettino avatar Tirumarai Selvan avatar John Kiragu avatar Vijay Prasanna avatar Rakesh Emmadi avatar Chris Sam avatar Praveen Durairaju avatar Sheila Babadi avatar Sandeep Raj Kumar avatar Andrew avatar Naveen Naidu avatar IMRAN KHAN avatar  avatar

graphql-subscriptions-benchmark's Issues

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.