logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git

search.md (5680B)


  1. # Configuring search
  2. {! backend/administration/CLI_tasks/general_cli_task_info.include !}
  3. ## Built-in search
  4. To use built-in search that has no external dependencies, set the search module to `Pleroma.Activity`:
  5. > config :pleroma, Pleroma.Search, module: Pleroma.Search.DatabaseSearch
  6. While it has no external dependencies, it has problems with performance and relevancy.
  7. ## Meilisearch
  8. Note that it's quite a bit more memory hungry than PostgreSQL (around 4-5G for ~1.2 million
  9. posts while idle and up to 7G while indexing initially). The disk usage for this additional index is also
  10. around 4 gigabytes. Like [RUM](./cheatsheet.md#rum-indexing-for-full-text-search) indexes, it offers considerably
  11. higher performance and ordering by timestamp in a reasonable amount of time.
  12. Additionally, the search results seem to be more accurate.
  13. Due to high memory usage, it may be best to set it up on a different machine, if running pleroma on a low-resource
  14. computer, and use private key authentication to secure the remote search instance.
  15. To use [meilisearch](https://www.meilisearch.com/), set the search module to `Pleroma.Search.Meilisearch`:
  16. > config :pleroma, Pleroma.Search, module: Pleroma.Search.Meilisearch
  17. You then need to set the address of the meilisearch instance, and optionally the private key for authentication. You might
  18. also want to change the `initial_indexing_chunk_size` to be smaller if you're server is not very powerful, but not higher than `100_000`,
  19. because meilisearch will refuse to process it if it's too big. However, in general you want this to be as big as possible, because meilisearch
  20. indexes faster when it can process many posts in a single batch.
  21. > config :pleroma, Pleroma.Search.Meilisearch,
  22. > url: "http://127.0.0.1:7700/",
  23. > private_key: "private key",
  24. > initial_indexing_chunk_size: 100_000
  25. Information about setting up meilisearch can be found in the
  26. [official documentation](https://docs.meilisearch.com/learn/getting_started/installation.html).
  27. You probably want to start it with `MEILI_NO_ANALYTICS=true` environment variable to disable analytics.
  28. At least version 0.25.0 is required, but you are strongly advised to use at least 0.26.0, as it introduces
  29. the `--enable-auto-batching` option which drastically improves performance. Without this option, the search
  30. is hardly usable on a somewhat big instance.
  31. ### Private key authentication (optional)
  32. To set the private key, use the `MEILI_MASTER_KEY` environment variable when starting. After setting the _master key_,
  33. you have to get the _private key_, which is actually used for authentication.
  34. === "OTP"
  35. ```sh
  36. ./bin/pleroma_ctl search.meilisearch show-keys <your master key here>
  37. ```
  38. === "From Source"
  39. ```sh
  40. mix pleroma.search.meilisearch show-keys <your master key here>
  41. ```
  42. You will see a "Default Admin API Key", this is the key you actually put into your configuration file.
  43. ### Initial indexing
  44. After setting up the configuration, you'll want to index all of your already existing posts. Only public posts are indexed. You'll only
  45. have to do it one time, but it might take a while, depending on the amount of posts your instance has seen. This is also a fairly RAM
  46. consuming process for `meilisearch`, and it will take a lot of RAM when running if you have a lot of posts (seems to be around 5G for ~1.2
  47. million posts while idle and up to 7G while indexing initially, but your experience may be different).
  48. The sequence of actions is as follows:
  49. 1. First, change the configuration to use `Pleroma.Search.Meilisearch` as the search backend
  50. 2. Restart your instance, at this point it can be used while the search indexing is running, though search won't return anything
  51. 3. Start the initial indexing process (as described below with `index`),
  52. and wait until the task says it sent everything from the database to index
  53. 4. Wait until everything is actually indexed (by checking with `stats` as described below),
  54. at this point you don't have to do anything, just wait a while.
  55. To start the initial indexing, run the `index` command:
  56. === "OTP"
  57. ```sh
  58. ./bin/pleroma_ctl search.meilisearch index
  59. ```
  60. === "From Source"
  61. ```sh
  62. mix pleroma.search.meilisearch index
  63. ```
  64. This will show you the total amount of posts to index, and then show you the amount of posts indexed currently, until the numbers eventually
  65. become the same. The posts are indexed in big batches and meilisearch will take some time to actually index them, even after you have
  66. inserted all the posts into it. Depending on the amount of posts, this may be as long as several hours. To get information about the status
  67. of indexing and how many posts have actually been indexed, use the `stats` command:
  68. === "OTP"
  69. ```sh
  70. ./bin/pleroma_ctl search.meilisearch stats
  71. ```
  72. === "From Source"
  73. ```sh
  74. mix pleroma.search.meilisearch stats
  75. ```
  76. ### Clearing the index
  77. In case you need to clear the index (for example, to re-index from scratch, if that needs to happen for some reason), you can
  78. use the `clear` command:
  79. === "OTP"
  80. ```sh
  81. ./bin/pleroma_ctl search.meilisearch clear
  82. ```
  83. === "From Source"
  84. ```sh
  85. mix pleroma.search.meilisearch clear
  86. ```
  87. This will clear **all** the posts from the search index. Note, that deleted posts are also removed from index by the instance itself, so
  88. there is no need to actually clear the whole index, unless you want **all** of it gone. That said, the index does not hold any information
  89. that cannot be re-created from the database, it should also generally be a lot smaller than the size of your database. Still, the size
  90. depends on the amount of text in posts.