Skip to content

Commit 9645831

Browse files
committed
Adding the Known Issues post.
Adjusting the author id.
1 parent 9463d2e commit 9645831

File tree

4 files changed

+32
-2
lines changed

4 files changed

+32
-2
lines changed

_data/authors.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
# url: {homepage_of_author}
77
# -------------------------------------
88

9-
cotes:
9+
Tom:
1010
name: Thomas Sutter
11-
twitter: Me7e0r
11+
twitter: @Me7e0r
1212
url: https://github.com/7homasSutter/
1313

1414

_posts/2024-04-02-exploring-the-api.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ author: tom
44
date: 2024-04-02 13:37:00 +0800
55
categories: [Tutorial, API]
66
tags: [getting started, api, tutorial]
7+
toc: true
78
---
89

910
All the examples in this tutorial use the graphql API available under

_posts/2024-07-08-adding-a-static-analyzer.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ author: Tom
44
date: 2024-07-08 13:37:00 +0800
55
categories: [Tutorial, Static-Analysis]
66
tags: [getting started, static-analysis]
7+
toc: true
78
---
89

910
In this tutorial, we will show you how to add a new static analyzer (python based) to FMD and scan a couple of apk

_posts/2024-07-11-Known-Issues.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: Known Issues
3+
author: Tom
4+
date: 2024-07-11 13:37:00 +0800
5+
description: Short summary of the post.
6+
categories: [Issues, Troubleshooting]
7+
tags: [Issues, Troubleshooting, Problems, Bugs]
8+
toc: true
9+
comments: false
10+
---
11+
12+
### Work-horse terminated unexpectedly
13+
**Issue**: The worker container is terminated unexpectedly with the following error message:
14+
```
15+
extractor-worker-high-1 | 06:32:32 Moving job to FailedJobRegistry (Work-horse terminated unexpectedly; waitpid returned 9 (signal 9); )
16+
extractor-worker-high-1 | 06:32:32 Cleaning registries for queue: high-python
17+
```
18+
- **Solution**: This issue is most likely caused by the worker container running out of memory.
19+
You can increase the memory limit for the worker container by setting the `DOCKER_MEMORY_LIMIT` environment variable in
20+
the `.env` file. For example, to set the memory limit to 20GB, add the following line to the `.env` file:
21+
```
22+
DOCKER_MEMORY_LIMIT=20GB
23+
```
24+
After setting the memory limit, restart the worker container to apply the changes. Depending on your operating system
25+
you might need to adjust the memory limit of the docker daemon as well.
26+
27+
- **Workaround**: If increasing the memory limit does not solve the issue, you can try to reduce the number of workers
28+
or the number of elements in the queue to process.

0 commit comments

Comments
 (0)