settings.assetprocessorbatch.setreg 760 B

12345678910111213141516171819
  1. {
  2. // This file is only loaded by the AssetProcessorBatch executable.
  3. "Amazon": {
  4. "AssetProcessor": {
  5. "Settings": {
  6. "Jobs": {
  7. // maxJobs 0 means use an automatic amount of CPU cores, detected from hardware.
  8. "maxJobs" : 0,
  9. // AlwaysUseMaxJobs: true means always use maxJobs CPUs at all time.
  10. // The default behavior for AP is to reserve half CPUs for background work
  11. // and half CPUs for escalated (user requested) and critical work.
  12. // Batch is usually used in CLI or automated builds, so no need.
  13. "AlwaysUseMaxJobs": true
  14. }
  15. }
  16. }
  17. }
  18. }