summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/zookeeper-benchmark/package.py
blob: ec9decccaf5e49585c0744f8b8f9bdf929e6721e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2021 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)


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"

    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')