•  
      request #9979 DOC reindexing not working
    Infos
    #9979
    Peter Struck (p3t3rstruck)
    2017-02-23 15:59
    2017-02-23 09:01
    10269
    Details
    DOC reindexing not working
    fts_syslog:
    2017-02-23T08:42:34+01:00 [16932] [error] [Docman] The file version is too big to be indexed

    What does that mean?
    Full text search
    9.4
    CentOS 6
    • [ ] enhancement
    • [ ] internal improvement
    Empty
    Stage
    Empty
    Declined
    2017-02-23
    Attachments
    References

    Follow-ups

    User avatar
    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: