Replies: 1 comment 2 replies
-
Very nice. Thanks for sharing ;) Would you like to open a doc PR for this? I think this could go in https://fscrawler.readthedocs.io/en/fscrawler-2.8/user/tips.html. WDYT? Or indeed in the checksum part of the documentation. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Running both fscrawler 2.8 (FS) and elasticsearch 7.16.2 (ES7) in docker container
Just want to index file meta data INCLUDING a MD5 checksum for each file, no content, neither TIKA metadata needed.
After several try-and-errors and looking in the source I was able to get the checksum field generated in index and filled by using
in
_settings.yaml
, where the magic (for me) was to setindex_content
totrue
where I do not want to index content at all.By setting
indexed_chars
to0
I avoid filling up my index.My recommendation would be to document "checksum" will only work if "index_content" is set to true at all.
Beta Was this translation helpful? Give feedback.
All reactions