Peter Struck (p3t3rstruck)2017-02-23 15:59 i hardcoded it and now i got ... 2017-02-23T15:55:34+01:00 [4834] [error] [Docman] #385 cannot be indexed. Operation timed out on [http://10.154.7.88/docman/122/385]
Peter Struck (p3t3rstruck)2017-02-23 15:53Attachments Screen Shot 2017-02-23 at 15.52.14.png addedBy Peter Struck (p3t3rstruck)(87 kB)Screen Shot 2017-02-23 at 15.52.14.png
Thomas Gerbet (tgerbet)2017-02-23 15:47 A few fields bellow your screenshot you have an input to edit this value.
Peter Struck (p3t3rstruck)2017-02-23 15:31 last edited by: Peter Struck (p3t3rstruck) 2017-02-23 15:42 found my value in /usr/share/codendi/plugins/fulltextsearch/etc/fulltextsearch.inc.dist $fulltextsearch_max_indexed_file_size = 100000000; i traced the max-size setting by adding a log line in /usr/share/codendi/plugins/fulltextsearch/include/FullTextSearchDocmanActions.class public function indexNewDocument(Docman_Item $item, Docman_Version $version) { $this->logger->debug('index new document #' . $item->getId()); $this->logger->debug('file size max allowed#' . $this->max_indexed_file_size); if (filesize($version->getPath()) > $this->max_indexed_file_size) { throw new FullTextSearchDocmanIndexFileTooBigException($item->getId()); } fts_syslog: 2017-02-23T15:21:52+01:00 [730] [debug] [Docman] file size max allowed# so obviously the property is not the right one? Btw: my admin full text search looks like attached one: Attachments Screen Shot 2017-02-23 at 15.29.06.png addedBy Peter Struck (p3t3rstruck)(76 kB)Screen Shot 2017-02-23 at 15.29.06.png
Thomas Gerbet (tgerbet)2017-02-23 09:11 A limit is set to prevent file that are too large to be indexed, ElasticSearch set a limit on his side: https://tuleap-documentation.readthedocs.io/en/latest/deployment-guide/intro.html#fulltext-search Related to request #7816. Unless your file is smaller than the limit, it is the expected behavior. I close the request. Status changed from New to Declined