ClickHouse/dbms/IO/createWriteBufferFromFileBase.cpp

49 lines
1.5 KiB
C++
Raw Normal View History

#include <IO/createWriteBufferFromFileBase.h>
#include <IO/WriteBufferFromFile.h>
2019-02-07 15:08:45 +00:00
#if defined(__linux__) || defined(__FreeBSD__)
#include <IO/WriteBufferAIO.h>
#endif
#include <Common/ProfileEvents.h>
namespace ProfileEvents
{
extern const Event CreatedWriteBufferOrdinary;
extern const Event CreatedWriteBufferAIO;
2019-08-29 15:48:00 +00:00
extern const Event CreatedWriteBufferAIOFailed;
}
namespace DB
{
2018-09-04 19:34:34 +00:00
std::unique_ptr<WriteBufferFromFileBase> createWriteBufferFromFileBase(const std::string & filename_, size_t estimated_size,
size_t aio_threshold, size_t buffer_size_, int flags_, mode_t mode, char * existing_memory_,
size_t alignment)
{
2019-08-29 15:48:00 +00:00
#if defined(__linux__) || defined(__FreeBSD__)
if (aio_threshold && estimated_size >= aio_threshold)
{
2019-08-29 15:48:00 +00:00
/// Attempt to open a file with O_DIRECT
try
{
auto res = std::make_unique<WriteBufferAIO>(filename_, buffer_size_, flags_, mode, existing_memory_);
ProfileEvents::increment(ProfileEvents::CreatedWriteBufferAIO);
return res;
}
catch (const ErrnoException &)
{
/// Fallback to cached IO if O_DIRECT is not supported.
ProfileEvents::increment(ProfileEvents::CreatedWriteBufferAIOFailed);
}
}
#else
2019-08-29 15:48:00 +00:00
(void)aio_threshold;
(void)estimated_size;
#endif
2019-08-29 15:48:00 +00:00
ProfileEvents::increment(ProfileEvents::CreatedWriteBufferOrdinary);
return std::make_unique<WriteBufferFromFile>(filename_, buffer_size_, flags_, mode, existing_memory_, alignment);
}
}