piler/etc/sphinx.conf.in

237 lines
7.2 KiB
Plaintext
Raw Normal View History

#!/usr/bin/php
<?php
define('SPHINX_VERSION', 220); // If you have sphinx-3.1.1, then set SPHINX_VERSION to 311
define('LOCALSTATEDIR', '@LOCALSTATEDIR@');
define('NGRAM_CONFIG', " #ngram_len = 1\n #ngram_chars = U+3000..U+2FA1F\n");
# See http://sphinxsearch.com/wiki/doku.php?id=charset_tables for more on the charset_table settings
# The following settings contains English and some Latin extras
define('SPHINX_CHARSET_TABLE', "0..9, english, _, \
U+C1->U+E1, U+C4->U+E4, U+C5->U+E5, U+C6->U+E6, U+C9->U+E9, U+CD->U+ED, U+D3->U+F3, U+D6->U+F6, U+D8->U+F8, \
U+DA->U+FA, U+DC->U+FC, U+0150->U+0151, U+0152->U+0153, U+0170->U+0171, U+01E2->U+E6, U+01E3->U+E6, U+01FC->U+E6, \
U+01FD->U+E6, U+1D01->U+E6, U+1D02->U+E6, U+1D2D->U+E6, U+1D46->U+E6, \
U+DF, U+E1, U+E4, U+E5, U+E6, U+E9, U+ED, U+00F3, U+F6, U+F8, U+FA, U+FC, U+0151, U+0153, U+0171\n");
?>
2011-11-14 15:57:52 +01:00
#
2013-08-18 13:59:55 +02:00
# minimal sphinx configuration suited to piler
2011-11-14 15:57:52 +01:00
#
2013-03-17 14:24:42 +01:00
source base
2011-11-14 15:57:52 +01:00
{
type = mysql
sql_host = MYSQL_HOSTNAME
sql_db = MYSQL_DATABASE
sql_user = MYSQL_USERNAME
sql_pass = MYSQL_PASSWORD
2011-11-14 15:57:52 +01:00
sql_attr_uint = size
2011-11-28 14:21:14 +01:00
sql_attr_uint = sent
sql_attr_uint = attachments
2011-11-14 15:57:52 +01:00
}
2013-03-17 14:24:42 +01:00
source delta : base
2011-11-14 15:57:52 +01:00
{
sql_query_pre = SET NAMES utf8mb4
sql_query_pre = REPLACE INTO sph_counter SELECT 1, IFNULL(MAX(id), 0) FROM sph_index
2011-11-14 15:57:52 +01:00
sql_query_post_index = DELETE FROM sph_index WHERE id<=(SELECT max_doc_id FROM sph_counter WHERE counter_id=1)
2012-09-07 15:09:45 +02:00
sql_query = SELECT id, `from`, `to`, `fromdomain`, `todomain`, `subject`, `arrived`, `sent`, `body`, `size`, `direction`, `folder`, `attachments`, `attachment_types` FROM sph_index \
2011-11-14 15:57:52 +01:00
WHERE id <= (SELECT max_doc_id FROM sph_counter WHERE counter_id=1)
2012-01-07 00:00:36 +01:00
sql_query_killlist = SELECT `id` FROM `metadata` WHERE `deleted`=1
2013-03-31 15:50:39 +02:00
}
2011-11-28 14:21:14 +01:00
2013-03-31 15:50:39 +02:00
source main1 : base
{
sql_query_pre = SET NAMES utf8mb4
2013-09-20 20:18:04 +02:00
sql_query = SELECT id, `from`, `to`, `fromdomain`, `todomain`, `subject`, `arrived`, `sent`, `body`, `size`, `direction`, `folder`, `attachments`, `attachment_types` FROM sph_index WHERE id=-1
2011-11-14 15:57:52 +01:00
}
2013-03-31 15:50:39 +02:00
source main2 : base
{
sql_query_pre = SET NAMES utf8mb4
2013-09-20 20:18:04 +02:00
sql_query = SELECT id, `from`, `to`, `fromdomain`, `todomain`, `subject`, `arrived`, `sent`, `body`, `size`, `direction`, `folder`, `attachments`, `attachment_types` FROM sph_index WHERE id=-1
2013-03-31 15:50:39 +02:00
}
source main3 : base
{
sql_query_pre = SET NAMES utf8mb4
2013-09-20 20:18:04 +02:00
sql_query = SELECT id, `from`, `to`, `fromdomain`, `todomain`, `subject`, `arrived`, `sent`, `body`, `size`, `direction`, `folder`, `attachments`, `attachment_types` FROM sph_index WHERE id=-1
2013-03-31 15:50:39 +02:00
}
source main4 : base
{
sql_query_pre = SET NAMES utf8mb4
2013-09-20 20:18:04 +02:00
sql_query = SELECT id, `from`, `to`, `fromdomain`, `todomain`, `subject`, `arrived`, `sent`, `body`, `size`, `direction`, `folder`, `attachments`, `attachment_types` FROM sph_index WHERE id=-1
2013-03-31 15:50:39 +02:00
}
2012-01-07 00:00:36 +01:00
2013-07-08 11:31:17 +02:00
source dailydelta : base
{
sql_query_pre = SET NAMES utf8mb4
2013-09-20 20:18:04 +02:00
sql_query = SELECT id, `from`, `to`, `fromdomain`, `todomain`, `subject`, `arrived`, `sent`, `body`, `size`, `direction`, `folder`, `attachments`, `attachment_types` FROM sph_index WHERE id=-1
2013-07-08 11:31:17 +02:00
}
2013-03-17 14:24:42 +01:00
source tag : base
2011-12-05 17:18:03 +01:00
{
sql_query_pre = SET NAMES utf8mb4
2014-09-22 11:13:55 +02:00
sql_query = SELECT `_id`, `id` AS iid, `uid`, `tag` FROM `tag`
2012-09-02 23:18:04 +02:00
2014-09-22 11:13:55 +02:00
sql_attr_uint = iid
2012-09-02 23:18:04 +02:00
sql_attr_uint = uid
}
2013-03-17 14:24:42 +01:00
source note : base
2012-09-02 23:18:04 +02:00
{
sql_query_pre = SET NAMES utf8mb4
2014-09-22 11:13:55 +02:00
sql_query = SELECT `_id`, `id` AS iid, `uid`, `note` FROM `note`
2014-09-22 11:13:55 +02:00
sql_attr_uint = iid
sql_attr_uint = uid
2011-12-05 17:18:03 +01:00
}
2011-11-14 15:57:52 +01:00
index main1
{
2013-03-31 15:50:39 +02:00
source = main1
path = <?php print LOCALSTATEDIR; ?>/piler/sphinx/main1
<?php if(SPHINX_VERSION < 300) { ?>
2011-11-14 15:57:52 +01:00
docinfo = extern
2014-09-22 13:01:01 +02:00
dict = keywords
<?php } ?>
2015-01-23 10:03:44 +01:00
min_prefix_len = 5
min_word_len = 1
charset_table = <?php print SPHINX_CHARSET_TABLE; ?>
<?php print NGRAM_CONFIG; ?>
2011-11-14 15:57:52 +01:00
}
2013-03-31 15:50:39 +02:00
index main2
{
source = main2
path = <?php print LOCALSTATEDIR; ?>/piler/sphinx/main2
<?php if(SPHINX_VERSION < 300) { ?>
2013-03-31 15:50:39 +02:00
docinfo = extern
2014-09-22 13:01:01 +02:00
dict = keywords
<?php } ?>
2015-01-23 10:03:44 +01:00
min_prefix_len = 5
2013-03-31 15:50:39 +02:00
min_word_len = 1
charset_table = <?php print SPHINX_CHARSET_TABLE; ?>
<?php print NGRAM_CONFIG; ?>
2013-03-31 15:50:39 +02:00
}
index main3
{
source = main3
path = <?php print LOCALSTATEDIR; ?>/piler/sphinx/main3
<?php if(SPHINX_VERSION < 300) { ?>
2013-03-31 15:50:39 +02:00
docinfo = extern
2014-09-22 13:01:01 +02:00
dict = keywords
<?php } ?>
2015-01-23 10:03:44 +01:00
min_prefix_len = 5
2013-03-31 15:50:39 +02:00
min_word_len = 1
charset_table = <?php print SPHINX_CHARSET_TABLE; ?>
<?php print NGRAM_CONFIG; ?>
2013-03-31 15:50:39 +02:00
}
index main4
{
source = main4
path = <?php print LOCALSTATEDIR; ?>/piler/sphinx/main4
<?php if(SPHINX_VERSION < 300) { ?>
2013-03-31 15:50:39 +02:00
docinfo = extern
2014-09-22 13:01:01 +02:00
dict = keywords
<?php } ?>
2015-01-23 10:03:44 +01:00
min_prefix_len = 5
2013-03-31 15:50:39 +02:00
min_word_len = 1
charset_table = <?php print SPHINX_CHARSET_TABLE; ?>
<?php print NGRAM_CONFIG; ?>
2013-03-31 15:50:39 +02:00
}
2011-11-14 15:57:52 +01:00
2013-07-08 11:31:17 +02:00
index dailydelta1
{
source = dailydelta
path = <?php print LOCALSTATEDIR; ?>/piler/sphinx/dailydelta1
<?php if(SPHINX_VERSION < 300) { ?>
2013-07-08 11:31:17 +02:00
docinfo = extern
2014-09-22 13:01:01 +02:00
dict = keywords
<?php } ?>
2015-01-23 10:03:44 +01:00
min_prefix_len = 5
2013-07-08 11:31:17 +02:00
min_word_len = 1
charset_table = <?php print SPHINX_CHARSET_TABLE; ?>
<?php print NGRAM_CONFIG; ?>
2013-07-08 11:31:17 +02:00
}
2011-11-14 15:57:52 +01:00
index delta1
{
source = delta
path = <?php print LOCALSTATEDIR; ?>/piler/sphinx/delta1
<?php if(SPHINX_VERSION < 300) { ?>
2011-11-14 15:57:52 +01:00
docinfo = extern
2014-09-22 13:01:01 +02:00
dict = keywords
<?php } ?>
2015-01-23 10:03:44 +01:00
min_prefix_len = 5
min_word_len = 1
charset_table = <?php print SPHINX_CHARSET_TABLE; ?>
<?php print NGRAM_CONFIG; ?>
<?php if(SPHINX_VERSION >= 310) { ?>
kbatch = main1, main2, main3, main4, dailydelta1
<?php } ?>
2011-11-14 15:57:52 +01:00
}
2011-12-05 17:18:03 +01:00
index tag1
{
source = tag
path = <?php print LOCALSTATEDIR; ?>/piler/sphinx/tag1
<?php if(SPHINX_VERSION < 300) { ?>
2011-12-05 17:18:03 +01:00
docinfo = extern
2014-09-22 13:01:01 +02:00
dict = keywords
<?php } ?>
2015-01-23 10:03:44 +01:00
min_prefix_len = 5
min_word_len = 1
charset_table = <?php print SPHINX_CHARSET_TABLE; ?>
<?php print NGRAM_CONFIG; ?>
2011-12-05 17:18:03 +01:00
}
2011-11-14 15:57:52 +01:00
2012-09-02 23:18:04 +02:00
index note1
{
source = note
path = <?php print LOCALSTATEDIR; ?>/piler/sphinx/note1
<?php if(SPHINX_VERSION < 300) { ?>
2012-09-02 23:18:04 +02:00
docinfo = extern
2014-09-22 13:01:01 +02:00
dict = keywords
<?php } ?>
2015-01-23 10:03:44 +01:00
min_prefix_len = 5
2012-09-02 23:18:04 +02:00
min_word_len = 1
charset_table = <?php print SPHINX_CHARSET_TABLE; ?>
<?php print NGRAM_CONFIG; ?>
2015-04-27 14:30:08 +02:00
}
2011-11-14 15:57:52 +01:00
indexer
{
2014-01-01 20:56:56 +01:00
mem_limit = 256M
2011-11-14 15:57:52 +01:00
}
searchd
{
2012-02-11 23:12:30 +01:00
listen = 127.0.0.1:9312
listen = 127.0.0.1:9306:mysql41
log = /dev/null
2011-11-14 15:57:52 +01:00
binlog_path =
2012-02-11 23:12:30 +01:00
##query_log =
2011-11-14 15:57:52 +01:00
read_timeout = 5
max_children = 30
pid_file = /var/run/piler/searchd.pid
2011-11-14 15:57:52 +01:00
seamless_rotate = 1
preopen_indexes = 1
unlink_old = 1
2015-07-31 11:16:07 +02:00
thread_stack = 512k
2011-11-14 15:57:52 +01:00
workers = threads # for RT to work
}