.jvpprops.template 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. #
  2. # Template JVP Properties file
  3. #
  4. # Uncomment the following lines as you see fit.
  5. # trace.settings:
  6. #
  7. # Uncomment the following to obtain execution trace. You can also
  8. # increase the details and amount of tracing (5 is currently the maximum
  9. # trace level). You also need to use the _g version of krakatoa.jar, e.g.
  10. # krakatoa_g.jar
  11. #
  12. #JVP.trace.settings:JVP=2
  13. #
  14. #########################################
  15. #
  16. # trace.verbose:
  17. # Set to 0 to minimize what clutter on the trace line.
  18. # You still get the same number of lines of trace
  19. #
  20. #JVP.trace.verbose:1
  21. #
  22. #########################################
  23. #
  24. # trace.timeStampFormat:
  25. # Set to nothing will cause no timestamp to print in the log
  26. # see SimpleDateFormat in the JDK documentation for possible values.
  27. # Default:
  28. # yyyy/MM/dd HH:mm:ss.SSS
  29. #
  30. #JVP.trace.timestampformat:
  31. # Set to HH:mm prints 24 hour Hours and minutes.
  32. #JVP.trace.timestampformat: HH:mm
  33. #
  34. #########################################
  35. #
  36. # splitLog
  37. #
  38. # Default is no split log, all output goes to onconfig's JVPLOGFILE
  39. # If splitLog is set:
  40. # Stdout/stderr continues goes to jvp.log
  41. # Java logging is split to one log file per JVP.
  42. # When the number of lines exceeds the value (1000 below)
  43. # the file is moved to <name>old.
  44. #
  45. # for example, if jvp.log is your log file, JVP #4's log and
  46. # saved log file names are:
  47. #
  48. # jvp.log4, jvp.log4old
  49. #
  50. #JVP.splitLog:1000
  51. #
  52. #########################################
  53. #
  54. # monitor.port
  55. #
  56. # Specify the starting port number for use by the debugging facilities.
  57. # Setting JVP.monitor.port allows the user to query the state
  58. # of the individual Java VPs via the builtin function "jvpcontrol".
  59. #
  60. #JVP.monitor.port:10000
  61. #########################################
  62. #
  63. # enable_type_cache
  64. #
  65. # Enable external type map caching for Complex Type (Set, List, Multiset,
  66. # row) types in UDR parameters. Defaults to true.
  67. # If set to false, each udr call with complex type parameter will query
  68. # a system table. Only set to false if dynamically set/unsetting
  69. # type mapping during the executions of UDRs.
  70. #
  71. #JVP.enable_type_cache:false
  72. #########################################