blob: 88a910318035f1cc3b6a1afecd4d6a6633d94336 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
#ifndef KUDU_TABLET_TRANSACTION_TRACKER_H_
#define KUDU_TABLET_TRANSACTION_TRACKER_H_
#include <memory>
#include <string>
#include <unordered_map>
#include <vector>
#include "kudu/gutil/gscoped_ptr.h"
#include "kudu/gutil/ref_counted.h"
#include "kudu/tablet/transactions/transaction.h"
#include "kudu/util/locks.h"
namespace kudu {
template<class T>
class AtomicGauge;
class Counter;
class MemTracker;
class MetricEntity;
namespace tablet {
class TransactionDriver;
// Each TabletPeer has a TransactionTracker which keeps track of pending transactions.
// Each "LeaderTransaction" will register itself by calling Add().
// It will remove itself by calling Release().
class TransactionTracker {
public:
TransactionTracker();
~TransactionTracker();
// Adds a transaction to the set of tracked transactions.
//
// In the event that the tracker's memory limit is exceeded, returns a
// ServiceUnavailable status.
Status Add(TransactionDriver* driver);
// Removes the txn from the pending list.
// Also triggers the deletion of the Transaction object, if its refcount == 0.
void Release(TransactionDriver* driver);
// Populates list of currently-running transactions into 'pending_out' vector.
void GetPendingTransactions(std::vector<scoped_refptr<TransactionDriver> >* pending_out) const;
// Returns number of pending transactions.
int GetNumPendingForTests() const;
void WaitForAllToFinish() const;
Status WaitForAllToFinish(const MonoDelta& timeout) const;
void StartInstrumentation(const scoped_refptr<MetricEntity>& metric_entity);
void StartMemoryTracking(const std::shared_ptr<MemTracker>& parent_mem_tracker);
private:
struct Metrics {
explicit Metrics(const scoped_refptr<MetricEntity>& entity);
scoped_refptr<AtomicGauge<uint64_t> > all_transactions_inflight;
scoped_refptr<AtomicGauge<uint64_t> > write_transactions_inflight;
scoped_refptr<AtomicGauge<uint64_t> > alter_schema_transactions_inflight;
scoped_refptr<Counter> transaction_memory_pressure_rejections;
};
// Increments relevant metric counters.
void IncrementCounters(const TransactionDriver& driver) const;
// Decrements relevant metric counters.
void DecrementCounters(const TransactionDriver& driver) const;
mutable simple_spinlock lock_;
// Per-transaction state that is tracked along with the transaction itself.
struct State {
State();
// Approximate memory footprint of the transaction.
int64_t memory_footprint;
};
// Protected by 'lock_'.
typedef std::unordered_map<scoped_refptr<TransactionDriver>,
State,
ScopedRefPtrHashFunctor<TransactionDriver>,
ScopedRefPtrEqualToFunctor<TransactionDriver> > TxnMap;
TxnMap pending_txns_;
gscoped_ptr<Metrics> metrics_;
std::shared_ptr<MemTracker> mem_tracker_;
DISALLOW_COPY_AND_ASSIGN(TransactionTracker);
};
} // namespace tablet
} // namespace kudu
#endif // KUDU_TABLET_TRANSACTION_TRACKER_H_