Skip to content

Commit 62e51c7

Browse files
committed
chore/fix-more-links
1 parent b31a58a commit 62e51c7

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

concepts/commerce/catalog/products.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ nav:
99

1010
Products are sellable entities (physical and digital products) within your shop.
1111

12-
Depending on your setup, Shopware can easily handle thousands of products. However, an upsurge in the product quantity (in millions) needs some tweaks for robust running of the environment as it depends on factors like the number of [categories](../../../concepts/commerce/catalog/categories), [sales channels](../../../concepts/commerce/catalog/sales-channels), [product properties](../../../concepts/commerce/catalog/products#property-groups--options), etc. Every product added to your shop can be made available on one or more [sales channels](../../../concepts/commerce/catalog/sales-channels).
12+
Depending on your setup, Shopware can easily handle thousands of products. However, an upsurge in the product quantity (in millions) needs some tweaks for robust running of the environment as it depends on factors like the number of [categories](../../../concepts/commerce/catalog/categories), [sales channels](../../../concepts/commerce/catalog/sales-channels), [product properties](../../../concepts/commerce/catalog/products), etc. Every product added to your shop can be made available on one or more [sales channels](../../../concepts/commerce/catalog/sales-channels).
1313

1414
Let's delve into a more detailed understanding of products using the example of garments:
1515

@@ -52,8 +52,8 @@ erDiagram
5252
uuid product_id
5353
}
5454
ProductCategory {
55-
uuid product_id
56-
uuid category_id
55+
uuid product_id
56+
uuid category_id
5757
}
5858
Category {
5959
uuid category_id

guides/hosting/infrastructure/elasticsearch/elasticsearch-debugging.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ bin/console es:index // Creates only the index for ES
4444
`es:create:alias` will create an alias linking to the index after `es:index` is done. Normally this is done automatically. In the older version, this has to be done.
4545

4646
```bash
47-
bin/console es:create:alias
47+
bin/console es:create:alias
4848
```
4949

5050
**> No Output**
@@ -205,9 +205,9 @@ curl -X DELETE 'elasticsearch:9200/_all'
205205
Returns the status of your indexing:
206206
207207
```sql
208-
select * from message_queue_stats mqs ;
209-
select count(*) from enqueue e ;
210-
select count(*) from dead_message dm ;
208+
select * from message_queue_stats mqs ;
209+
select count(*) from enqueue e ;
210+
select count(*) from dead_message dm ;
211211
```
212212
213213
The number of entries in the enqueue should match the sum of the size values in the `message_queue_stats`. As long as there are entries in your `enqueue`, the indexing is in process and your message consumer has to work those messages.
@@ -218,7 +218,7 @@ Sometimes you want to reset the indexing in your database because your indexing
218218
If the database queue is used, third-party services will differ. You can do so with the following queries.
219219
220220
```sql
221-
truncate enqueue ;
221+
truncate enqueue ;
222222
truncate dead_message ;
223223
truncate message_queue_stats ;
224224
update scheduled_task set status = 'scheduled' where status = 'queued';
@@ -230,7 +230,7 @@ This is mainly for debugging purposes and is only meant for testing and staging
230230
First, execute the database reset (only working for the database queue):
231231
232232
```sql
233-
truncate enqueue ;
233+
truncate enqueue ;
234234
truncate dead_message ;
235235
truncate message_queue_stats ;
236236
update scheduled_task set status = 'scheduled' where status = 'queued';

guides/hosting/infrastructure/elasticsearch/elasticsearch-setup.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ For additional support with common Elasticsearch errors and more tips please ref
170170
### Indexing the whole shop
171171

172172
Sometimes you want to reindex your whole shop, including Elasticsearch, SEO-URLs, product index, and more.
173-
For a reindex of the whole shop, you can use the command `bin/console dal:refresh:index --use-queue`. Use the `--use-queue` option because you will have too many products to index without the [message queue](/docs/guides/hosting/infrastructure/message-queue) involved.
173+
For a reindex of the whole shop, you can use the command `bin/console dal:refresh:index --use-queue`. Use the `--use-queue` option because you will have too many products to index without the [message queue](../message-queue) involved.
174174

175175
### Alias creation
176176

@@ -184,10 +184,10 @@ If a messenger process is active, the entries of that table are processed one by
184184
In case a message runs into an error, it is written into the `dead_messages` table and will be processed again after a specific time frame.
185185

186186
You can start multiple messenger consumer processes by using the command `bin/console messenger:consume` and also add output to the processed messages by adding the parameter `bin/console messenger:consume -vv`.
187-
In a production environment, you want to deactivate the admin messenger which is started automatically when opening a session in your Administration view by following this [documentation](/docs/guides/plugins/plugins/framework/message-queue/add-message-handler#the-admin-worker).
187+
In a production environment, you want to deactivate the admin messenger which is started automatically when opening a session in your Administration view by following this [documentation](../../../../guides/hosting/infrastructure/message-queue#admin-worker).
188188

189189
Our experience has shown that up to three worker processes are normal and useful for a production environment.
190-
If you want more than that, a tool like [RabbitMQ](/docs/guides/hosting/infrastructure/message-queue#transport-rabbitmq-example) to handle the queue is needed so your database will not become a bottleneck.
190+
If you want more than that, a tool like [RabbitMQ](../message-queue#message-queue-on-production-systems) to handle the queue is needed so your database will not become a bottleneck.
191191

192192
## Configuration
193193

guides/plugins/apps/starter/starter-admin-extension.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,4 +161,4 @@ This example showed end-to-end how to create a local dev environment and connect
161161

162162
* Did you know, you can add [new sections](/resources/admin-extension-sdk/api-reference/ui/component-section) to the UI or even [entire modules](/resources/admin-extension-sdk/api-reference/ui/mainModule)?
163163
* The Meteor Admin SDK also offers [TypeScript support](/resources/admin-extension-sdk/getting-started/installation#using-npm-require-bundling) (including autocompletion)
164-
* Don't want to extend the admin panel? Have a look at [App Scripts](/docs/guides/plugins/apps/app-scripts/index.md)
164+
* Don't want to extend the admin panel? Have a look at [App Scripts](../../../../guides/plugins/apps/app-scripts/index.md)

0 commit comments

Comments
 (0)