-
-
Notifications
You must be signed in to change notification settings - Fork 7
Make MUMC Run FASTERRRRRR
- As mentioned here: DEBUG
- The more we print to the console the slower MUMC runs
- MUMC will run faster and process all media types for each user in parallel if we "mute" the two noisiest console outputs.
DEBUG
-
console_controls
formedia_item
s
Debugging is easily disabled by setting DEBUG: 0
DEBUG: 0
Disabling the console delete
/keep
output for all media_item
s can be done by adding the following into the configuration file.
advanced_settings:
console_controls:
movie:
delete:
show: false
keep:
show: false
episode:
delete:
show: false
keep:
show: false
audio:
delete:
show: false
keep:
show: false
audiobook:
delete:
show: false
keep:
show: false
This only applies when MUMC is monitoring multiple media_type
s (e.g. movies and episodes, movies and audio, episodes and audiobooks, etc...).
Enabling the multiprocesing capabilities when monitoring a single media_type
may have no effect or may increase the runtime due to the overhead of multiprocesing.
The next time MUMC is run you will notice two things.
- The
DELETE
ANDKEEP
status for individualmedia_item
s will no longer be shown. - MUMC will finish in less time.
We are not printing individual media_item
s to the console, behind the scenes MUMC will enable multiprocessing. This allows MUMC to filter for each media type (i.e. movies, episodes, audio, and audiobooks) in parallel for each user. The same happens in the post-processing stage of MUMC.
When mulitprocessing is used, there is no easy way to control the order individual media items are printed to the console. There would be a seemingly random output of movies, episodes, audio, and audiobooks displayed. Because of this, certain critera must be met for MUMC to enable multiprocessing.
Not always. But, you do you.
In this case less information is considered acceptable because the assumption is MUMC will be run during off-peak hours and MUMC is run periodically using something like cron in Linux.
The Summary Of Deleted Media
is still shown to allow those who log the output of MUMC to keep a history of which media_item
s were deleted.
If you do not like seeing less information. You can set all of the show: false
values to show: true
. Or delete the entire console_controls
section entirely. This will again show all of the sweet sweet information you crave.
- MUMC wiki
- Install
- Files & Directories
- Terminology
- Configuration File Examples
- Configuration Tree
-
Additional Information
- OS Permissions
- Configuration Builder/Editor
- Played And Created Filter Statement Breakdown
- Played And Created Filter Tag Breakdown
- Dangerous Filter Statements
- Behavioral Statement Breakdown
- Behavioral Tag Breakdown
- Blacklisting vs Whitelisting
- Blacktagging vs Whitetagging
- Library Matching byId vs byPath vs byNetworkPath
- Minimum Episodes vs Minium Played Episodes
- Conditional Behavior Priorities
- Media Mangers
- Command-Line Arguments
- Make MUMC Run FASTERRRRRR!!!
- Known Limitations