summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/zookeeper-benchmark/package.py
blob: e2f53e7437f50f97b71788b07b80ea474eec50b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)


from spack.package import *


class ZookeeperBenchmark(MavenPackage):
    """It is designed to measure the per-request latency of a ZooKeeper
    ensemble for a predetermined length of time"""

    homepage = "https://zookeeper.apache.org"
    git = "https://github.com/brownsys/zookeeper-benchmark.git"

    license("BSD-3-Clause")

    version("master", branch="master")

    depends_on("zookeeper", type=("build", "run"))

    def build(self, spec, prefix):
        zookeeper_version = self.spec["zookeeper"].version.string
        mvn = which("mvn")
        mvn("-DZooKeeperVersion=" + zookeeper_version, "package")