Skip to content

Commit 6cdefd4

Browse files
authored
Fixes #619 - Added Elasticsearch index rebuild and a note about the consequences
1 parent 2fded92 commit 6cdefd4

File tree

4 files changed

+107
-9
lines changed

4 files changed

+107
-9
lines changed

admin/console.rst

+39-7
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,25 @@ a shell (e.g. for automation).
3131
(e.g. like ``rails r 'p Delayed::Job.count'``),
3232
you'll actually receive a printed output (without you won't!).
3333

34-
.. code-block:: sh
34+
.. tabs::
3535

36-
# package installation
37-
$ zammad run rails r '{COMMAND}'
36+
.. tab:: Docker Installation
3837

39-
# source installation
40-
$ rails r '{COMMAND}'
38+
.. code-block:: sh
39+
40+
$ docker compose run --rm zammad-railsserver rails r '{COMMAND}'
41+
42+
.. tab:: Package Installation
43+
44+
.. code-block:: sh
45+
46+
$ zammad run rails r '{COMMAND}'
47+
48+
.. tab:: Source/Development Installation
49+
50+
.. code-block:: sh
51+
52+
$ rails r '{COMMAND}'
4153
4254
.. _rails_shell:
4355

@@ -47,9 +59,29 @@ Running Several Commands in a Shell
4759
The following command will provide you a rails console.
4860
It allows you to run several commands inside it.
4961

50-
This reduces loading times greatly.
62+
.. tabs::
63+
64+
.. tab:: Docker Installation
65+
66+
.. code-block:: sh
67+
68+
$ docker compose run --rm zammad-railsserver rails c
69+
70+
.. tip:: If you use Portainer to manage your Docker containers,
71+
you can even use a
72+
:ref:`console via Portainer's GUI <docker-run-commands>`.
73+
74+
.. tab:: Package Installation
75+
76+
.. code-block:: sh
77+
78+
$ $ zammad run rails c
79+
80+
.. tab:: Source/Development Installation
81+
82+
.. code-block:: sh
5183
52-
.. include:: /admin/console-rails-shell.include.rst
84+
$ rails c
5385
5486
.. hint:: **Starting Rails Console in Safe Mode**
5587

install/docker-compose.rst

+2
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,8 @@ To adjust the stack and settings, use
134134
/install/docker-compose/docker-compose-scenarios
135135

136136

137+
.. _docker-run-commands:
138+
137139
How to Run Commands in the Stack
138140
--------------------------------
139141

install/elasticsearch.rst

+11
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,18 @@ Add certificate to Zammad (only for Elasticsearch >= 8)
220220
:alt: Screenshot shows certificate management in Zammad's admin panel
221221
:align: center
222222

223+
.. _es-rebuild-searchindex:
224+
223225
Build/rebuild the searchindex
226+
.. hint::
227+
- The rebuild may take many hours or even days, if a lot of data is
228+
already present in a productive environment. However, you can safely
229+
run this during operating times without the risk of loosing data. As a
230+
downside, it could lead to reduced performance and that some data may
231+
not be shown in search results.
232+
- Consider specifying a number of CPU cores to be used for the rebuild
233+
(see example below).
234+
224235
.. code-block:: sh
225236
226237
$ sudo zammad run rake zammad:searchindex:rebuild

install/update.rst

+55-2
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,22 @@ using `Zammad hosting`_ for your and your customers' safety.
100100
ingest-attachment is no longer a plugin, it's now included in
101101
Elasticsearch).
102102

103-
Step 6: Log into Zammad
103+
Step 6: Rebuild Elasticsearch index (optional)
104+
Only needed if the release note tells you to rebuild the Elasticsearch
105+
index.
106+
107+
.. code-block:: sh
108+
109+
$ zammad run rake zammad:searchindex:rebuild
110+
111+
# Optionally, you can specify a number of CPU cores which are used for
112+
# rebuilding the searchindex, as in the following example with 8 cores:
113+
$ zammad run rake zammad:searchindex:rebuild[8]
114+
115+
Step 7: Log into Zammad
104116
Yes, that's it!
105117

118+
106119
.. tab:: Source
107120

108121
Step 1: Ensure dependencies
@@ -186,9 +199,22 @@ using `Zammad hosting`_ for your and your customers' safety.
186199
Step 9: Start Zammad services
187200
Start the application server, web socket server and scheduler.
188201

189-
Step 10: Log into Zammad
202+
Step 10: Rebuild Elasticsearch index (optional)
203+
Only needed if the release note tells you to rebuild the Elasticsearch
204+
index.
205+
206+
.. code-block:: sh
207+
208+
$ rake zammad:searchindex:rebuild
209+
210+
# Optionally, you can specify a number of CPU cores which are used for
211+
# rebuilding the searchindex, as in the following example with 8 cores:
212+
$ rake zammad:searchindex:rebuild[8]
213+
214+
Step 11: Log into Zammad
190215
Yes, that's it!
191216

217+
192218
.. tab:: Docker
193219

194220
.. hint::
@@ -212,3 +238,30 @@ using `Zammad hosting`_ for your and your customers' safety.
212238
$ docker-compose pull
213239
$ docker-compose up -d
214240
241+
Rebuild Elasticsearch index (optional)
242+
Only needed if the release note tells you to rebuild the Elasticsearch
243+
index.
244+
245+
**Docker compose:**
246+
247+
.. code-block:: sh
248+
249+
$ docker compose run --rm zammad-railsserver rails r rake zammad:searchindex:rebuild
250+
251+
# Optionally, you can specify a number of CPU cores which are used for
252+
# rebuilding the searchindex, as in the following example with 8 cores:
253+
$ docker compose run --rm zammad-railsserver rails r rake zammad:searchindex:rebuild[8]
254+
255+
**Portainer:**
256+
257+
Open the :ref:`console via Portainer's GUI <docker-run-commands>`
258+
(but use the entrypoint ``bash-via-entrypoint: /docker-entrypoint.sh /bin/bash``
259+
instead) and run:
260+
261+
.. code-block:: sh
262+
263+
$ rake zammad:searchindex:rebuild
264+
265+
# Optionally, you can specify a number of CPU cores which are used for
266+
# rebuilding the searchindex, as in the following example with 8 cores:
267+
$ rake zammad:searchindex:rebuild[8]

0 commit comments

Comments
 (0)