vm.args.cloud 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. ######################################################################
  2. ## Erlang VM Args
  3. ######################################################################
  4. ## NOTE:
  5. ##
  6. ## Arguments configured in this file might be overridden by configs from `emqx.conf`.
  7. ##
  8. ## Some basic VM arguments are to be configured in `emqx.conf`,
  9. ## such as `node.name` for `-name` and `node.cooke` for `-setcookie`.
  10. ## Sets the maximum number of simultaneously existing processes for this system.
  11. ## Preferably set in `emqx.conf`,
  12. #+P 2097152
  13. ## Sets the maximum number of simultaneously existing ports for this system.
  14. ## Preferably set in `emqx.conf`,
  15. #+Q 1048576
  16. ## Sets the maximum number of ETS tables
  17. ## Preferably set in `emqx.conf`,
  18. #+e 262144
  19. ## Sets the maximum number of atoms the virtual machine can handle.
  20. #+t 1048576
  21. ## Set the location of crash dumps
  22. #-env ERL_CRASH_DUMP {{ platform_log_dir }}/crash.dump
  23. ## Set how many times generational garbages collections can be done without
  24. ## forcing a fullsweep collection.
  25. -env ERL_FULLSWEEP_AFTER 1000
  26. ## Heartbeat management; auto-restarts VM if it dies or becomes unresponsive
  27. ## (Disabled by default..use with caution!)
  28. #-heart
  29. ## Specifies the net_kernel tick time in seconds.
  30. ## This is the approximate time a connected node may be unresponsive until
  31. ## it is considered down and thereby disconnected.
  32. -kernel net_ticktime 120
  33. ## Sets the distribution buffer busy limit (dist_buf_busy_limit).
  34. ## Preferably set in `emqx.conf`,
  35. #+zdbbl 8192
  36. ## Sets default scheduler hint for port parallelism.
  37. +spp true
  38. ## Sets the number of threads in async thread pool. Valid range is 0-1024.
  39. ## Increase the parameter if there are many simultaneous file I/O operations.
  40. +A 4
  41. ## Sets the default heap size of processes to the size Size.
  42. #+hms 233
  43. ## Sets the default binary virtual heap size of processes to the size Size.
  44. #+hmbs 46422
  45. ## Sets the default maximum heap size of processes to the size Size.
  46. ## Defaults to 0, which means that no maximum heap size is used.
  47. ##For more information, see process_flag(max_heap_size, MaxHeapSize).
  48. #+hmax 0
  49. ## Sets the default value for process flag message_queue_data. Defaults to on_heap.
  50. #+hmqd on_heap | off_heap
  51. ## Sets the number of IO pollsets to use when polling for I/O.
  52. #+IOp 1
  53. ## Sets the number of IO poll threads to use when polling for I/O.
  54. ## Increase this for the busy systems with many concurrent connection.
  55. +IOt 4
  56. ## Sets the number of scheduler threads to create and scheduler threads to set online.
  57. #+S 8:8
  58. ## Sets the number of dirty CPU scheduler threads to create and dirty CPU scheduler threads to set online.
  59. #+SDcpu 8:8
  60. ## Sets the number of dirty I/O scheduler threads to create.
  61. +SDio 8
  62. ## Suggested stack size, in kilowords, for scheduler threads.
  63. #+sss 32
  64. ## Suggested stack size, in kilowords, for dirty CPU scheduler threads.
  65. #+sssdcpu 40
  66. ## Suggested stack size, in kilowords, for dirty IO scheduler threads.
  67. #+sssdio 40
  68. ## Sets scheduler bind type.
  69. ## Can be one of: u, ns, ts, ps, s, nnts, nnps, tnnps, db
  70. #+sbt db
  71. ## Sets a user-defined CPU topology.
  72. #+sct L0-3c0-3p0N0:L4-7c0-3p1N1
  73. ## Sets the mapping of warning messages for error_logger
  74. #+W w
  75. ## Sets time warp mode: no_time_warp | single_time_warp | multi_time_warp
  76. #+C no_time_warp
  77. ## Prevents loading information about source filenames and line numbers.
  78. #+L
  79. ## Specifies how long time (in milliseconds) to spend shutting down the system.
  80. ## See: http://erlang.org/doc/man/erl.html
  81. -shutdown_time 30000
  82. ## patches dir
  83. -pa "{{ platform_data_dir }}/patches"
  84. ## Mnesia thresholds
  85. -mnesia dump_log_write_threshold 5000
  86. -mnesia dump_log_time_threshold 60000