2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
|
|
// (found in the LICENSE.Apache file in the root directory).
|
2013-10-16 23:59:46 +02:00
|
|
|
//
|
2011-10-06 01:30:28 +02:00
|
|
|
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
2011-07-21 04:40:18 +02:00
|
|
|
//
|
|
|
|
// Logger implementation that can be shared by all environments
|
|
|
|
// where enough posix functionality is available.
|
|
|
|
|
2013-10-05 07:32:05 +02:00
|
|
|
#pragma once
|
2011-07-21 04:40:18 +02:00
|
|
|
#include <algorithm>
|
|
|
|
#include <stdio.h>
|
2015-07-08 01:58:20 +02:00
|
|
|
#include "port/sys_time.h"
|
2011-07-21 04:40:18 +02:00
|
|
|
#include <time.h>
|
2013-01-15 23:05:42 +01:00
|
|
|
#include <fcntl.h>
|
2016-01-15 07:47:15 +01:00
|
|
|
|
2013-01-28 20:18:50 +01:00
|
|
|
#ifdef OS_LINUX
|
2016-01-15 07:47:15 +01:00
|
|
|
#ifndef FALLOC_FL_KEEP_SIZE
|
2013-01-15 23:05:42 +01:00
|
|
|
#include <linux/falloc.h>
|
2013-01-28 20:18:50 +01:00
|
|
|
#endif
|
2016-01-15 07:47:15 +01:00
|
|
|
#endif
|
|
|
|
|
2017-04-06 04:02:00 +02:00
|
|
|
#include <atomic>
|
|
|
|
#include "monitoring/iostats_context_imp.h"
|
2013-08-23 17:38:13 +02:00
|
|
|
#include "rocksdb/env.h"
|
2016-02-17 21:06:45 +01:00
|
|
|
#include "util/sync_point.h"
|
2011-07-21 04:40:18 +02:00
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
namespace rocksdb {
|
2011-07-21 04:40:18 +02:00
|
|
|
|
|
|
|
class PosixLogger : public Logger {
|
|
|
|
private:
|
|
|
|
FILE* file_;
|
|
|
|
uint64_t (*gettid_)(); // Return the thread id for the current thread
|
2013-03-25 18:56:48 +01:00
|
|
|
std::atomic_size_t log_size_;
|
2013-01-15 23:05:42 +01:00
|
|
|
int fd_;
|
2013-11-07 20:31:56 +01:00
|
|
|
const static uint64_t flush_every_seconds_ = 5;
|
|
|
|
std::atomic_uint_fast64_t last_flush_micros_;
|
2013-10-31 23:36:40 +01:00
|
|
|
Env* env_;
|
2017-04-29 02:00:24 +02:00
|
|
|
std::atomic<bool> flush_pending_;
|
2011-07-21 04:40:18 +02:00
|
|
|
public:
|
2014-02-26 23:41:28 +01:00
|
|
|
PosixLogger(FILE* f, uint64_t (*gettid)(), Env* env,
|
2014-04-11 00:27:42 +02:00
|
|
|
const InfoLogLevel log_level = InfoLogLevel::ERROR_LEVEL)
|
2014-02-26 23:41:28 +01:00
|
|
|
: Logger(log_level),
|
|
|
|
file_(f),
|
|
|
|
gettid_(gettid),
|
|
|
|
log_size_(0),
|
|
|
|
fd_(fileno(f)),
|
|
|
|
last_flush_micros_(0),
|
|
|
|
env_(env),
|
|
|
|
flush_pending_(false) {}
|
2011-07-21 04:40:18 +02:00
|
|
|
virtual ~PosixLogger() {
|
|
|
|
fclose(file_);
|
|
|
|
}
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual void Flush() override {
|
2016-07-07 20:35:40 +02:00
|
|
|
TEST_SYNC_POINT("PosixLogger::Flush:Begin1");
|
|
|
|
TEST_SYNC_POINT("PosixLogger::Flush:Begin2");
|
2013-12-10 19:57:46 +01:00
|
|
|
if (flush_pending_) {
|
|
|
|
flush_pending_ = false;
|
|
|
|
fflush(file_);
|
|
|
|
}
|
2013-11-07 20:31:56 +01:00
|
|
|
last_flush_micros_ = env_->NowMicros();
|
|
|
|
}
|
2015-02-01 20:08:19 +01:00
|
|
|
|
|
|
|
using Logger::Logv;
|
2015-02-26 20:28:41 +01:00
|
|
|
virtual void Logv(const char* format, va_list ap) override {
|
2015-07-03 02:23:41 +02:00
|
|
|
IOSTATS_TIMER_GUARD(logger_nanos);
|
|
|
|
|
2011-07-21 04:40:18 +02:00
|
|
|
const uint64_t thread_id = (*gettid_)();
|
|
|
|
|
|
|
|
// We try twice: the first time with a fixed-size stack allocated buffer,
|
|
|
|
// and the second time with a much larger dynamically allocated buffer.
|
|
|
|
char buffer[500];
|
|
|
|
for (int iter = 0; iter < 2; iter++) {
|
|
|
|
char* base;
|
|
|
|
int bufsize;
|
|
|
|
if (iter == 0) {
|
|
|
|
bufsize = sizeof(buffer);
|
|
|
|
base = buffer;
|
|
|
|
} else {
|
2016-10-30 01:01:30 +02:00
|
|
|
bufsize = 65536;
|
2011-07-21 04:40:18 +02:00
|
|
|
base = new char[bufsize];
|
|
|
|
}
|
|
|
|
char* p = base;
|
|
|
|
char* limit = base + bufsize;
|
|
|
|
|
|
|
|
struct timeval now_tv;
|
2013-03-01 03:04:58 +01:00
|
|
|
gettimeofday(&now_tv, nullptr);
|
2011-07-21 04:40:18 +02:00
|
|
|
const time_t seconds = now_tv.tv_sec;
|
|
|
|
struct tm t;
|
|
|
|
localtime_r(&seconds, &t);
|
|
|
|
p += snprintf(p, limit - p,
|
|
|
|
"%04d/%02d/%02d-%02d:%02d:%02d.%06d %llx ",
|
|
|
|
t.tm_year + 1900,
|
|
|
|
t.tm_mon + 1,
|
|
|
|
t.tm_mday,
|
|
|
|
t.tm_hour,
|
|
|
|
t.tm_min,
|
|
|
|
t.tm_sec,
|
|
|
|
static_cast<int>(now_tv.tv_usec),
|
|
|
|
static_cast<long long unsigned int>(thread_id));
|
|
|
|
|
|
|
|
// Print the message
|
|
|
|
if (p < limit) {
|
|
|
|
va_list backup_ap;
|
|
|
|
va_copy(backup_ap, ap);
|
|
|
|
p += vsnprintf(p, limit - p, format, backup_ap);
|
|
|
|
va_end(backup_ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Truncate to available space if necessary
|
|
|
|
if (p >= limit) {
|
|
|
|
if (iter == 0) {
|
|
|
|
continue; // Try again with larger buffer
|
|
|
|
} else {
|
|
|
|
p = limit - 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add newline if necessary
|
|
|
|
if (p == base || p[-1] != '\n') {
|
|
|
|
*p++ = '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(p <= limit);
|
2013-04-16 02:30:43 +02:00
|
|
|
const size_t write_size = p - base;
|
2013-01-15 23:05:42 +01:00
|
|
|
|
2013-12-11 07:34:19 +01:00
|
|
|
#ifdef ROCKSDB_FALLOCATE_PRESENT
|
Fixed compile warnings in posix_logger.h and coding.h
Summary:
Fixed the following compile warnings:
/Users/yhchiang/rocksdb/util/posix_logger.h:32:11: error: unused variable 'kDebugLogChunkSize' [-Werror,-Wunused-const-variable]
const int kDebugLogChunkSize = 128 * 1024;
^
/Users/yhchiang/rocksdb/util/coding.h:24:20: error: unused variable 'kMaxVarint32Length' [-Werror,-Wunused-const-variable]
const unsigned int kMaxVarint32Length = 5;
^
2 errors generated.
Test Plan: make clean rocksdb
Reviewers: igor, sdong, anthony, IslamAbdelRahman, rven, kradhakrishnan, adamretter
Reviewed By: adamretter
Subscribers: andrewkr, dhruba, leveldb
Differential Revision: https://reviews.facebook.net/D56223
2016-04-01 01:01:47 +02:00
|
|
|
const int kDebugLogChunkSize = 128 * 1024;
|
|
|
|
|
2013-01-15 23:05:42 +01:00
|
|
|
// If this write would cross a boundary of kDebugLogChunkSize
|
|
|
|
// space, pre-allocate more space to avoid overly large
|
|
|
|
// allocations from filesystem allocsize options.
|
2013-03-25 18:56:48 +01:00
|
|
|
const size_t log_size = log_size_;
|
2014-11-11 23:09:10 +01:00
|
|
|
const size_t last_allocation_chunk =
|
2013-03-25 18:56:48 +01:00
|
|
|
((kDebugLogChunkSize - 1 + log_size) / kDebugLogChunkSize);
|
2014-11-11 23:09:10 +01:00
|
|
|
const size_t desired_allocation_chunk =
|
2013-03-25 18:56:48 +01:00
|
|
|
((kDebugLogChunkSize - 1 + log_size + write_size) /
|
2013-01-15 23:05:42 +01:00
|
|
|
kDebugLogChunkSize);
|
|
|
|
if (last_allocation_chunk != desired_allocation_chunk) {
|
2014-11-11 23:09:10 +01:00
|
|
|
fallocate(
|
|
|
|
fd_, FALLOC_FL_KEEP_SIZE, 0,
|
|
|
|
static_cast<off_t>(desired_allocation_chunk * kDebugLogChunkSize));
|
2013-01-15 23:05:42 +01:00
|
|
|
}
|
2013-01-28 20:18:50 +01:00
|
|
|
#endif
|
2013-01-15 23:05:42 +01:00
|
|
|
|
2013-03-15 02:12:22 +01:00
|
|
|
size_t sz = fwrite(base, 1, write_size, file_);
|
2013-12-10 19:57:46 +01:00
|
|
|
flush_pending_ = true;
|
2013-03-15 02:12:22 +01:00
|
|
|
assert(sz == write_size);
|
|
|
|
if (sz > 0) {
|
|
|
|
log_size_ += write_size;
|
|
|
|
}
|
2013-11-07 20:31:56 +01:00
|
|
|
uint64_t now_micros = static_cast<uint64_t>(now_tv.tv_sec) * 1000000 +
|
|
|
|
now_tv.tv_usec;
|
|
|
|
if (now_micros - last_flush_micros_ >= flush_every_seconds_ * 1000000) {
|
2015-05-18 22:44:52 +02:00
|
|
|
Flush();
|
2013-11-07 20:31:56 +01:00
|
|
|
}
|
2011-07-21 04:40:18 +02:00
|
|
|
if (base != buffer) {
|
|
|
|
delete[] base;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-02-26 20:28:41 +01:00
|
|
|
size_t GetLogFileSize() const override { return log_size_; }
|
2011-07-21 04:40:18 +02:00
|
|
|
};
|
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
} // namespace rocksdb
|