The generator_tool script is launched using "node_storage" of type "mem" even with LXC containers below 64GB of RAM #10395

Open
opened 2025-03-03 14:56:53 +00:00 by Paspieds · 0 comments
Paspieds commented 2025-03-03 14:56:53 +00:00 (Migrated from github.com)

Describe the issue
Running:

python -m maps_generator --countries="Macedonia" --skip="Coastline" # any input would result to the same event anyway

Inside an LXC container (tested with a Debian and Alma container) will result the generator_tool script to get killed by the system because of too much memory usage.
After some investigation I found the cause. It seems that the function verifying the total available memory takes it from the host and not the container. Since my host has more than 64GB (my container has less), the node storage type is set to mem instead of map. Here is the code involved:

organicmaps/tool/python/generator/settings.py:

...
NODE_STORAGE = "mem" if total_virtual_memory() / 10 ** 9 >= 64 else "map"
...

organicmaps/tool/python/utils/system.py:

...
def total_virtual_memory():
    if sys.platform.startswith("linux"):
        return os.sysconf("SC_PAGE_SIZE") * os.sysconf("SC_PHYS_PAGES")
    else:
	return 0

The SC_PAGE_SIZE and SC_PHYS_PAGES system calls won't take the container values but the host values, probably because they share the host kernel.

The issue

I managed to easily fix the problem enforcing the use of map node storage type. I have not tested to run the maps generator on Docker or Podman (under similar circumstances, host > 64GB RAM and container < 64GB RAM). Does it make sense to fix the total_virtual_memory function to support containers since running such tools inside containers with less than 64GB of RAM would make sense in some cases (maybe someone can attest that it is not a problem on other container engines: Docker, Podman ...)?

System information:

  • LXC Debian 12 or Almalinux 9

Organic Maps Version:

**Describe the issue** Running: ```bash python -m maps_generator --countries="Macedonia" --skip="Coastline" # any input would result to the same event anyway ``` Inside an LXC container (tested with a Debian and Alma container) will result the generator_tool script to get killed by the system because of too much memory usage. After some investigation I found the cause. It seems that the function verifying the total available memory takes it from the host and not the container. Since my host has more than 64GB (my container has less), the node storage type is set to **mem** instead of **map**. Here is the code involved: organicmaps/tool/python/generator/settings.py: ```python ... NODE_STORAGE = "mem" if total_virtual_memory() / 10 ** 9 >= 64 else "map" ... ``` organicmaps/tool/python/utils/system.py: ```python ... def total_virtual_memory(): if sys.platform.startswith("linux"): return os.sysconf("SC_PAGE_SIZE") * os.sysconf("SC_PHYS_PAGES") else: return 0 ``` The **SC_PAGE_SIZE** and **SC_PHYS_PAGES** system calls won't take the container values but the host values, probably because they share the host kernel. The issue I managed to easily fix the problem enforcing the use of **map** node storage type. I have not tested to run the maps generator on Docker or Podman (under similar circumstances, host > 64GB RAM and container < 64GB RAM). Does it make sense to fix the **total_virtual_memory** function to support containers since running such tools inside containers with less than 64GB of RAM would make sense in some cases (maybe someone can attest that it is not a problem on other container engines: Docker, Podman ...)? **System information:** - LXC Debian 12 or Almalinux 9 **Organic Maps Version:** - Commit: [Bump Version](https://git.omaps.dev/organicmaps/organicmaps/commit/69bdc867795d7ba83e25050ea5cb078d9379d1e9) After verification, latest commit (when this issue was posted) does not fix the problem: [[github] Add leading slash (root) to all dirs](https://git.omaps.dev/organicmaps/organicmaps/commit/d21800ec25bf2a084c1be238ceb0eb822129e28f).
This repo is archived. You cannot comment on issues.
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
1 participant
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: organicmaps/organicmaps-tmp#10395
No description provided.