A plot manager for Chia plotting: https://www.chia.net/
This is a cross-platform Chia Plot Manager that will work on the major operating systems. This is not a plotter. The purpose of this library is to manage your plotting and kick off new plots with the settings that you configure. Everyone's system is unique so customization is an important feature that was engraved into this library.
This library is simple, easy-to-use, and reliable to keep the plots generating.
This library has been tested for Windows and Linux.
- Stagger your plots so that your computer resources can avoid high peaks.
- Allow for a list of destination directories.
- Utilize temporary space to its maximum potential by starting a new plot early.
- Run a maximum number of plots concurrently to avoid bottlenecks or limit resource hogging.
- More in-depth active plot screen.
- Support MadMax and the new pooling protocol
This library took a lot of time and effort in order to get it before you today. Consider sponsoring or supporting the library. This is not necessary but more a kind gestures.
- XCH Address: xch134evwwqkq50nnsmgehnnag4gc856ydc7ached3xxr6jdk7e8l4usdnw39t
- ETH Address: 0xf8F7BD24B94D75E54BFD9557fF6904DBE239322E
- BTC Address: 36gnjnHqkttcBiKjjAekoy68z6C3BJ9ekS
- Paypal: https://www.paypal.com/biz/fund?id=XGVS7J69KYBTY
Please do not use GitHub issues for questions or support regarding your own personal setups. Issues should pertain to actual bugs in the code and ideas. It has been tested to work on Windows, Linux, and Mac OS by numerous people at this point. So any questions relating to tech support, configuration setup, or things pertaining to your own personal use cases should be posted at any of the links below.
- Discord Server: https://discord.gg/XyvMzeQpu2
- This is the Official Discord Server - Swar's Chia Community
- Official Chia Keybase Team: https://keybase.io/team/chia_network.public
- The channel is #swar
- GitHub Discussion Board: https://github.com/swar/Swar-Chia-Plot-Manager/discussions
- Yes, your config can be reloaded with the
python manager.py restart
command or separately you can stop and start manager again. Please note that your job counts will be reset and the temporary2 and destination directories order will be reset. - Please note that if you change any of the directories for a job, it will mess with existing jobs and
manager
andview
will not be able to identify the old job. If you are changing job directories while having active plots, please change themax_plots
for the current job to 0 and make a separate job with the new directories. I do not recommend changing directories while plots are running.
- No. Plots are kicked off in the background and they will not kill your existing plots. If you want to kill them, you have access to the PIDs which you can use to track them down in Task Manager (or the appropriate software for your OS) and kill them manually. Please note you will have to delete the .tmp files as well. I do not handle this for you.
- They are chosen in order. If you have two directories the first plot will select the first one, the second the second one, and the third plot will select the first one.
- Some users like having the option to always have the same temporary2 and destination directory. Enabling this setting will always have temporary2 be the drive that is used as destination. You can use an empty temporary2 directory list if you are using this setting.
- Please forward this question to Keybase or the Discussion tab.
> python3 manager.py start
> python3 manager.py restart
> python3 manager.py stop
> python3 manager.py view
> python3 manager.py status
> python3 manager.py analyze_logs
This command will start the manager in the background. Once you start it, it will always be running unless all jobs have had their max_plots
completed or there is an error. Errors will be logged in a file created debug.log
This command will terminate the manager in the background. It does not stop running plots, it will only stop new plots from getting created.
This command will run start and stop sequentially.
This command will show the view that you can use to keep track of your running plots. This will get updated every X seconds defined by your config.yaml
.
This command will a single snapshot of the view. It will not loop.
This command will analyze all completed plot logs in your log folder and calculate the proper weights and line ends for your computer's configuration. Just populate the returned values under the progress
section in your config.yaml
. This only impacts the progress bar.
The installation of this library is straightforward. I have attached detailed instructions below that should help you get started.
- Download and Install Python 3.7 or higher: https://www.python.org/
git clone
this repo or download it.- Open CommandPrompt / PowerShell / Terminal and
cd
into the main library folder.- Example:
cd C:\Users\Swar\Documents\Swar-Chia-Plot-Manager
- Example:
- OPTIONAL: Create a virtual environment for Python. This is recommended if you use Python for other things.
- Create a new python environment:
python -m venv venv
- The second
venv
can be renamed to whatever you want. I prefervenv
because it's a standard.
- The second
- Activate the virtual environment. This must be done every single time you open a new window.
- Example Windows:
venv\Scripts\activate
- Example Linux:
. ./venv/bin/activate
orsource ./venv/bin/activate
- Example Mac OS:
/Applications/Chia.app/Contents/Resources/app.asar.unpacked/daemon/chia
- Example Windows:
- Confirm that it has activated by seeing the
(venv)
prefix. The prefix will change depending on what you named it.
- Create a new python environment:
- Install the required modules:
pip install -r requirements.txt
- If you plan on using Notifications or Prometheus then run the following to install the required modules:
pip install -r requirements-notification.txt
- If you plan on using Notifications or Prometheus then run the following to install the required modules:
- Copy
config.yaml.default
and name it asconfig.yaml
in the same directory. - Edit and set up the config.yaml to your own personal settings. There is more help on this below.
- You will need to add the
chia_location
as well! This should point to your chia executable.
- You will need to add the
- Run the Manager:
python manager.py start
- This will start a process in the background that will manage plots based on your inputted settings.
- Run the View:
python manager.py view
- This will loop through a view screen with details about active plots.
The configuration of this library is unique to every end-user. The config.yaml
file is where the configuration will live.
This plot manager works based on the idea of jobs. Each job will have its own settings that you can configure and customize. No two drives are unique so this will provide flexibility for your own constraints and requirements.
This is a single variable that should contain the location of your chia executable file. This is the blockchain executable.
- Windows Example:
C:\Users\<USERNAME>\AppData\Local\chia-blockchain\app-1.1.2\resources\app.asar.unpacked\daemon\chia.exe
- Linux Example:
/usr/lib/chia-blockchain/resources/app.asar.unpacked/daemon/chia
- Another Linux Example:
/home/swar/chia-blockchain/venv/bin/chia
This is where you signify if you are using Chia or the MadMax binary files for plotting.
These are the config settings that will only be used by the plot manager.
check_interval
- The number of seconds to wait before checking to see if a new job should start.log_level
- Keep this on ERROR to only record when there are errors. Change this to INFO in order to see more detailed logging. Warning: INFO will write a lot of information.
folder_path
- This is the folder where your log files for plots will be saved.
These are the settings that will be used by the view.
check_interval
- The number of seconds to wait before updating the view.datetime_format
- The datetime format that you want displayed in the view. See here for formatting: https://docs.python.org/3/library/datetime.html#strftime-and-strptime-format-codesinclude_seconds_for_phase
- This dictates whether seconds are included in the phase times.include_drive_info
- This dictates whether the drive information will be showed.include_cpu
- This dictates whether the CPU information will be showed.include_ram
- This dictates whether the RAM information will be showed.include_plot_stats
- This dictates whether the plot stats will be showed.
These are different settings in order to send notifications when the plot manager starts and when a plot has been completed.
Settings for enabling Prometheus to gather metrics.
prometheus_enabled
- If enabled, metrics will be gathered and an HTTP server will start up to expose the metrics for Prometheus.prometheus_port
- HTTP server port.
List of Metrics Gathered
- chia_running_plots: A Gauge to see how many plots are currently being created.
- chia_completed_plots: A Counter for completed plots.
phase_line_end
- These are the settings that will be used to dictate when a phase ends in the progress bar. It is supposed to reflect the line at which the phase will end so the progress calculations can use that information with the existing log file to calculate a progress percent.phase_weight
- These are the weight to assign to each phase in the progress calculations. Typically, Phase 1 and 3 are the longest phases so they will hold more weight than the others.
max_concurrent
- The maximum number of plots that your system can run. The manager will not kick off more than this number of plots total over time.max_for_phase_1
- The maximum number of plots that your system can run in phase 1.minimum_minutes_between_jobs
- The minimum number of minutes before starting a new plotting job, this prevents multiple jobs from starting at the exact same time. This will alleviate congestion on destination drive. Set to 0 to disable.
Each job must have unique temporary directories.
These are the settings that will be used by each job. Please note you can have multiple jobs and each job should be in YAML format in order for it to be interpreted correctly. Almost all the values here will be passed into the Chia executable file.
Check for more details on the Chia CLI here: https://github.com/Chia-Network/chia-blockchain/wiki/CLI-Commands-Reference
name
- This is the name that you want to give to the job.max_plots
- This is the maximum number of jobs to make in one run of the manager. Any restarts to manager will reset this variable. It is only here to help with short term plotting.- [OPTIONAL]
farmer_public_key
- Your farmer public key. If none is provided, it will not pass in this variable to the chia executable which results in your default keys being used. This is only needed if you have chia set up on a machine that does not have your credentials. - [OPTIONAL] pool_public_key: Your pool public key. DONT Use IF YOU ARE USING A POOL CONTRACT ADDRESS! Othewise same information as above.
- [OPTIONAL] pool_contract_address: Your Pool's Contract Address. Refer to https://github.com/Chia-Network/chia-blockchain/wiki/Pooling-FAQ#how-do-i-assign-portable-plots-to-a-pool
temporary_directory
- Can be a single value or a list of values. This is where the plotting will take place. If you provide a list, it will cycle through each drive one by one. These directories must be unique from one another.- [OPTIONAL]
temporary2_directory
- Can be a single value or a list of values. This is an optional parameter to use in case you want to use the temporary2 directory functionality of Chia plotting. destination_directory
- Can be a single value or a list of values. This is the final directory where the plot will be transferred once it is completed. If you provide a list, it will cycle through each drive one by one.size
- This refers to the k size of the plot. You would type in something like 32, 33, 34, 35... in here.bitfield
- This refers to whether you want to use bitfield or not in your plotting. Typically, you want to keep this as true.threads
- This is the number of threads that will be assigned to the plotter. Only phase 1 uses more than 1 thread.buckets
- The number of buckets to use. The default provided by Chia is 128.memory_buffer
- The amount of memory you want to allocate to the process.max_concurrent
- The maximum number of plots to have for this job at any given time.max_concurrent_with_start_early
- The maximum number of plots to have for this job at any given time including phases that started early.initial_delay_minutes
- This is the initial delay that is used when initiate the first job. It is only ever considered once. If you restart manager, it will still adhere to this value.stagger_minutes
- The amount of minutes to wait before the next plot for this job can get kicked off. You can even set this to zero if you want your plots to get kicked off immediately when the concurrent limits allow for it.max_for_phase_1
- The maximum number of plots on phase 1 for this job.concurrency_start_early_phase
- The phase in which you want to start a plot early. It is recommended to use 4 for this field.concurrency_start_early_phase_delay
- The maximum number of minutes to wait before a new plot gets kicked off when the start early phase has been detected.temporary2_destination_sync
- This field will always submit the destination directory as the temporary2 directory. These two directories will be in sync so that they will always be submitted as the same value.exclude_final_directory
- Whether to skip addingdestination_directory
to harvester for farming. This is a Chia feature.skip_full_destinations
- When this is enabled it will calculate the sizes of all running plots and the future plot to determine if there is enough space left on the drive to start a job. If there is not, it will skip the destination and move onto the next one. Once all are full, it will disable the job.unix_process_priority
- UNIX Only. This is the priority that plots will be given when they are spawned. UNIX values must be between -20 and 19. The higher the value, the lower the priority of the process.windows_process_priority
- Windows Only. This is the priority that plots will be given when they are spawned. Windows values vary and should be set to one of the following values:- 16384
BELOW_NORMAL_PRIORITY_CLASS
- 32
NORMAL_PRIORITY_CLASS
- 32768
ABOVE_NORMAL_PRIORITY_CLASS
- 128
HIGH_PRIORITY_CLASS
- 256
REALTIME_PRIORITY_CLASS
- 16384
enable_cpu_affinity
- Enable or disable cpu affinity for plot processes. Systems that plot and harvest may see improved harvester or node performance when excluding one or two threads for plotting process.cpu_affinity
- List of cpu (or threads) to allocate for plot processes. The default example assumes you have a hyper-threaded 4 core CPU (8 logical cores). This config will restrict plot processes to use logical cores 0-5, leaving logical cores 6 and 7 for other processes (6 restricted, 2 free). You have to specify all logical cores/threads that you wanted to use in this format [ 0, 1, 2, 3 ] and NOT [ 0-3 ] if you intend to use the first 4 logical cores.