| 12345678910111213141516171819202122232425262728 |
- //
- // Copyright (c) 2017-2026, Manticore Software LTD (https://manticoresearch.com)
- // Copyright (c) 2001-2016, Andrew Aksyonoff
- // Copyright (c) 2008-2016, Sphinx Technologies Inc
- // All rights reserved
- //
- // This program is free software; you can redistribute it and/or modify
- // it under the terms of the GNU General Public License. You should have
- // received a copy of the GPL license along with this program; if you
- // did not, you can find it at http://www.gnu.org/
- //
- /// @file taskflushmutable.h
- /// Task to check and flush mutable indexes (rt, precloate) when necessary or by timeout
- #pragma once
- #include "sphinxstd.h"
- constexpr int64_t DEFAULT_FLUSH_PERIOD = 10*3600*1000*1000ll; // reschedule in 10h in case planned flush failed
- // set from param `rt_flush_period`, see conf_options_reference/searchd_program_configuration_options.html
- void SetRtFlushPeriod ( int64_t iPeriod = DEFAULT_FLUSH_PERIOD );
- void ShutdownFlushingMutable();
- /* this cb attached to local indexes hash table 'add-or-replace' function. It is called for all new arrived indexes,
- * and if it suitable for flushing (i.e. if it exists and is mutable), engages flushing task by timer for it.*/
- void HookSubscribeMutableFlush ( const CSphString& sName );
|