default.yml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #
  2. # Copyright © 2016-2023 The Thingsboard Authors
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. queue_type: "kafka"
  17. request_topic: "js_eval.requests"
  18. http_port: "8888" # /livenessProbe
  19. js:
  20. response_poll_interval: "25"
  21. max_result_size: "300000"
  22. kafka:
  23. bootstrap:
  24. # Kafka Bootstrap Servers
  25. servers: "localhost:9092"
  26. replication_factor: "1"
  27. acks: "1" # -1 = all; 0 = no acknowledgments; 1 = only waits for the leader to acknowledge
  28. batch_size: "128" # for producer
  29. linger_ms: "5" # for producer
  30. partitions_consumed_concurrently: "1" # (EXPERIMENTAL) increase this value if you are planning to handle more than one partition (scale up, scale down) - this will decrease the latency
  31. requestTimeout: "30000" # The default value in kafkajs is: 30000
  32. connectionTimeout: "1000" # The default value in kafkajs is: 1000
  33. compression: "gzip" # gzip or uncompressed
  34. topic_properties: "retention.ms:604800000;segment.bytes:26214400;retention.bytes:104857600;partitions:100;min.insync.replicas:1"
  35. use_confluent_cloud: false
  36. client_id: "kafkajs" #inject pod name to easy identify the client using /opt/kafka/bin/kafka-consumer-groups.sh
  37. confluent:
  38. sasl:
  39. mechanism: "PLAIN"
  40. pubsub:
  41. queue_properties: "ackDeadlineInSec:30;messageRetentionInSec:604800"
  42. aws_sqs:
  43. queue_properties: "VisibilityTimeout:30;MaximumMessageSize:262144;MessageRetentionPeriod:604800"
  44. rabbitmq:
  45. host: "localhost"
  46. port: "5672"
  47. virtual_host: "/"
  48. username: "admin"
  49. password: "password"
  50. queue_properties: "x-max-length-bytes:1048576000;x-message-ttl:604800000"
  51. service_bus:
  52. queue_properties: "lockDurationInSec:30;maxSizeInMb:1024;messageTimeToLiveInSec:604800"
  53. logger:
  54. level: "info"
  55. path: "logs"
  56. filename: "tb-js-executor-%DATE%.log"
  57. script:
  58. use_sandbox: "true"
  59. memory_usage_trace_frequency: "1000"
  60. script_body_trace_frequency: "10000"
  61. stat_print_frequency: "10000"
  62. max_active_scripts: "1000"
  63. slow_query_log_ms: "5.000000" #millis
  64. slow_query_log_body: "false"