remove some more TXSRCs that slipped in

This commit is contained in:
Travis 2021-02-12 21:44:20 -06:00
parent b7db27b7a7
commit d3ffdafdd8
No known key found for this signature in database
GPG key ID: 37080CC2042BA34E
4 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
name: "GitHub Issues Import Load Testing (1 month, keyed)"
main: "pilosa server --data-dir ${TMPDIR} --txsrc ${TXSRC}"
main: "pilosa server --data-dir ${TMPDIR} --storage.backend ${STORAGE_BACKEND}"
load: "molecula-consumer-github -i issues -r url --record-type issue --batch-size=100000 --start-time 2020-01-01T00:00:00Z --end-time 2020-01-13T23:00:00Z --cache-dir ~/.githubarchive"
health_url: "http://localhost:10101/status"

View file

@ -1,6 +1,6 @@
name: "GitHub Issues Import Load Testing (1 month, unkeyed)"
main: "pilosa server --data-dir ${TMPDIR} --txsrc ${TXSRC}"
main: "pilosa server --data-dir ${TMPDIR} --storage.backend ${STORAGE_BACKEND}"
load: "molecula-consumer-github -i issues -d id --record-type issue --batch-size=100000 --start-time 2020-01-01T00:00:00Z --end-time 2020-01-13T23:00:00Z --cache-dir ~/.githubarchive"
health_url: "http://localhost:10101/status"

View file

@ -1,6 +1,6 @@
name: "Count() Load Testing w/ Keys"
main: "pilosa server --data-dir ~/pilosa.query.keyed.${TXSRC} --txsrc ${TXSRC}"
main: "pilosa server --data-dir ~/pilosa.query.keyed.${STORAGE_BACKEND} --storage.backend ${STORAGE_BACKEND}"
load: "pilosa-bench -type count -rate 100 -n 3000"
health_url: "http://localhost:10101/status"

View file

@ -4,15 +4,15 @@ set -e
# This script generates data query load testing to be run against.
#
# Environment variables:
# - TXSRC: Transaction store type ("roaring", "rbf")
# - STORAGE_BACKEND: Transaction store type ("roaring", "rbf")
# - CACHEDIR: Path to local GitHub Archive data, if available.
# Require environment variables.
: "${TXSRC:?Must set TXSRC environment variable}"
: "${STORAGE_BACKEND:?Must set STORAGE_BACKEND environment variable}"
: "${GHCACHEDIR:''}"
echo "Starting pilosa"
pilosa server --data-dir ~/pilosa.query.keyed.${TXSRC} --txsrc ${TXSRC} & pid_pilosa=$!
pilosa server --data-dir ~/pilosa.query.keyed.${STORAGE_BACKEND} --storage.backend ${STORAGE_BACKEND} & pid_pilosa=$!
sleep 5
echo ""