Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions docs/troubleshooting/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ grep -e "\\[ERROR\\]" -e "\\[FATAL\\]" -e "\\[CRITICAL\\]" -e "segmentation" -e

See also [shell rc utilities](../tools/README.md#shell-rc-utilities).

Try to understand and resolve the first reported problem.
Try to understand and resolve the reported problems in order of appearance.

```note
You can inspect a failing [AliHyperloop test](../hyperloop/userdocumentation.md#-wagon-tests) in the same way. The log is saved in the `stdout.log` file in the test output directory.
Expand All @@ -54,6 +54,16 @@ See the [Support](../gettingstarted/support.md) section for the list of Mattermo
When asking for help with compilation or with running a local analysis, it may be useful to provide basic information about your O2Physics setup.
You can generate it using the [Setup diagnostic tool](../tools/README.md#setup-diagnostic-tool).

When asking for help with running an analysis:

- If the problem is on AliHyperloop, provide:
- the link to the read-only view of the [wagon test](../hyperloop/userdocumentation.md#-wagon-tests) or the [train run](../hyperloop/userdocumentation.md#train-runs).
- If the problem is local, provide:
- the name of the dataset of the input files,
- the command or script used to run the analysis,
- the log file,
- the dumped `dpl-config.json` file (and the input JSON file, if the dumped one is incomplete).

When posting on Mattermost:

- Do not paste the entire content of files or any long blocks of log lines or code directly in the message. If needed, attach the file.
Expand Down Expand Up @@ -180,7 +190,7 @@ Error in <TJAlienConnectionManager>: Failed to connect to any server! Giving up
- You should be greeted with `Welcome to the ALICE GRID`.
- Exit with `exit`.

### shmem: could not create a message of size ...
### shmem: could not create a message of size

Add `--shm-segment-size 1000000000` (or larger number) to your o2 command.
It is due to shared memory segment that is probably outdated for the size of the intermediate tables you have. It is actually set as 90% of system's max VSIZE allowance set in limits, or 2GB if the limits cannot be found, which is probably what happens in your case.
Expand Down
Loading