View api-gateway-benchmark_test01_resp_time.csv
gateway | 10% | 25% | 50% | 75% | 90% | 95% | 99% | min | max | avg | |
---|---|---|---|---|---|---|---|---|---|---|---|
KrakenD | 21.3 | 23.1 | 24.5 | 29.5 | 43.2 | 46.9 | 77.1 | 0.9 | 278.1 | 28.7 | |
Vulcand | 29.0 | 37.8 | 49.0 | 57.1 | 66.5 | 73.3 | 205.7 | 1.0 | 342.6 | 50.5 | |
Kong | 40.7 | 43.5 | 46.1 | 49.7 | 81.6 | 107.6 | 235.5 | 7.6 | 1597.8 | 56.9 | |
Tyk | 35.5 | 52.1 | 82.3 | 178.5 | 526.3 | 923.1 | 2105.4 | 1.2 | 5648.2 | 221.5 |
View deployment-couchdb.yaml
# Start a 3 node cluster and join it together automatically. Uses | |
# local ephemeral disk for database storage. | |
apiVersion: extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
name: couchdb | |
spec: | |
replicas: 3 | |
template: |
View google_prediction.py
#!/usr/bin/env python | |
""" | |
This module provides an interface to the Google Prediction API. | |
""" | |
import json | |
import numbers | |
import urllib | |
import urllib2 |