aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/distributor/clusterinformation.cpp
blob: 4c4e1771f6e3f8e56c5063af1760fb1f61526f0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "clusterinformation.h"
#include <vespa/vdslib/distribution/distribution.h>
#include <vespa/vdslib/state/cluster_state_bundle.h>
#include <vespa/vdslib/state/clusterstate.h>

namespace storage::distributor {

uint16_t
ClusterInformation::getStorageNodeCount() const
{
    return getClusterStateBundle().getBaselineClusterState()->getNodeCount(lib::NodeType::STORAGE);
}

}