dice-group / IGUANA

IGUANA is a benchmark execution framework for RDF triple stores and quad stores
http://iguana-benchmark.eu
GNU Affero General Public License v3.0
24 stars 15 forks source link

Workers from the same worker-configuration should only have one QuerySet #194

Closed nck-mlcnv closed 7 months ago

nck-mlcnv commented 1 year ago

Right now with #184, each worker has its own QueryHandler, which unnecessarily takes up ressources, because each QueryHandler also owns a QuerySet and initializes everything concerning the queries. This leads to redundant data and instructions.

A fix could be a worker manager, that manages workers of the same configuration.