OpenStack CI log processing tool
Go to file
Zuul 813e2abf30 Merge "Add performance.json file" 2022-04-21 19:02:40 +00:00
ansible Merge "Add performance.json file" 2022-04-21 19:02:40 +00:00
doc Add BuildCache checkpoint to avoid missing long running build 2022-03-17 09:30:27 +01:00
loggearman Change service directory permission; change python3 to python38 2022-03-01 16:16:47 +01:00
logscraper Merge "Add performance.json file" 2022-04-21 19:02:40 +00:00
opensearch-config Configure Opensearch on AWS 2022-02-15 15:28:25 +00:00
.gitignore Initial project commit 2021-11-16 11:50:55 +01:00
.gitreview Added .gitreview 2021-10-26 15:01:01 +00:00
.stestr.conf Initial project commit 2021-11-16 11:50:55 +01:00
.yamllint Add job for validating logscraper and log gearman services 2021-12-01 11:05:11 +01:00
.zuul.yaml Add Logsender tool 2022-03-08 15:14:02 +01:00
Dockerfile Add Logsender tool 2022-03-08 15:14:02 +01:00
LICENSE Initial project commit 2021-11-16 11:50:55 +01:00
README.rst Add standalone get_timestamp implementation 2022-03-28 16:26:35 +02:00
requirements.txt Add standalone get_timestamp implementation 2022-03-28 16:26:35 +02:00
setup.cfg Add Logsender tool 2022-03-08 15:14:02 +01:00
setup.py Move log files to check to external config file 2022-03-24 13:21:14 +00:00
test-requirements.txt Add ansible role that is configuring logscraper 2021-11-23 08:26:20 +01:00
tox.ini Add ansible role that is configuring logscraper 2021-11-23 08:26:20 +01:00

README.rst

OpenStack CI log processing

The goal of this repository is to provide and check functionality of new log processing system base on zuul log scraper tool.

Zuul Log Scraper

The Zuul Log Scraper tool is responsible for periodical check by using Zuul CI API if there are new builds available and if there are some, it would push the informations to the log processing system.

Zuul Log Sender

The Zuul Log Sender tool is responsible for periodical check directory, if there are some files that should be send to the Elasticsearch service. NOTE: build directories that does not provide files buildinfo and inventory.yaml file are skipped.

Testing

The part of OpenStack CI log processing runs a complete testing and continuous-integration environment, powered by Zuul.

Any changes to logscraper script or tests will trigger jobs to thoroughly test those changes.

To run a single test: tox -epy38 <test_name>

Benchmarking

The large Zuul CI deployments requires many CI log processing resources. In that case, we can do a benchmark with two log processing deployments. All tests will do same:

  • send 100 log builds to Elasticsearch that is running on same host
  • logscraper will be using 4 workers
  • VM will have 8 vcpus, 16 GB of RAM

Testing workflows:

  • loggearman and logstash

This workflow will spawn 3 additional loggearman workers because it this service is a bottleneck in that log ci workflow.

You can do it with command:

for i in {1..3}; do \
  podman run --network host -d --name loggearman-worker-$i \
   --volume /etc/loggearman:/etc/loggearman:z \
   --volume /var/log/loggearman:/var/log/loggearman:z \
   quay.rdoproject.org/software-factory/loggearman:latest \
   log-gearman-worker -c /etc/loggearman/worker.yml --foreground  -d /var/log/loggearman/worker.log

To remove:

for i in {1..3}; do \
  podman stop loggearman-worker-$i ; podman rm loggearman-worker-$i

On the end, basic calucations:

import datetime
start = datetime.datetime.fromisoformat("2022-02-28 16:44:59")
stop = datetime.datetime.fromisoformat("2022-02-28 16:46:01")
print((stop-start).total_seconds())

Time spend to run logscraper and wait for finish all loggearman workers took: 62 seconds and it takes 680MB of RAM.

  • logsender workflow

This workflow will only use logsender tool and it will push the logs directly to the Elasticsearch service. Same as in previous test, it will be executed on 4 processes.

To download logs:

logscraper \
 --zuul-api-url https://zuul.opendev.org/api/tenant/openstack \
 --checkpoint-file /tmp/results-checkpoint \
 --worker 8 \
 --max-skipped 100 \
 --download \
 --directory /tmp/logscraper

This operation took: 30 seconds and it uses 130 MB of RAM.

logsender --username admin --password mypassword --host localhost --port 9200 --insecure --workers 4

Time spend to run logscraper and wait for finish all loggearman workers took: 35 second and it takes 520 MB of RAM.

Conclusion:

The logsender way seems to use less memory (on Opendev deployment, logstash service is on different host, but 4096 MB of RAM is not enough) and it is faster, but the logscraper and logsender process was executed one by one - on the beginning logscraper download logs, then logsender send them to Elasticsearch.

Continuous Deployment

Once changes are reviewed and committed, they will be applied automatically to the production hosts.

Contributing

Contributions are welcome!

Currently only unit tests are available. In the future, functional tests would be added.

Documentation

The latest documentation is available at http://docs.openstack.org/infra/ci-log-processing

That documentation is generated from this repository. You can generate it yourself with tox -e docs.