memory.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "about": {
  3. "trial": false,
  4. "author": {
  5. "name": "EMQ",
  6. "email": "contact@emqx.io",
  7. "company": "EMQ Technologies Co., Ltd",
  8. "website": "https://www.emqx.io"
  9. },
  10. "helpUrl": {
  11. "en_US": "https://ekuiper.org/docs/en/latest/guide/sinks/builtin/memory.html",
  12. "zh_CN": "https://ekuiper.org/docs/zh/latest/guide/sinks/builtin/memory.html"
  13. },
  14. "description": {
  15. "en_US": "The action is used to flush the result into an in-memory topic so that it can be consumed by the memory source.",
  16. "zh_CN": "该操作用于将输出消息发送到内存主题中,以便内存源可以消费。"
  17. }
  18. },
  19. "properties": [
  20. {
  21. "name": "topic",
  22. "optional": false,
  23. "control": "text",
  24. "default": "",
  25. "type": "string",
  26. "hint": {
  27. "en_US": "The topic, such as analysis/result",
  28. "zh_CN": "主题,例如 analysis/result"
  29. },
  30. "label": {
  31. "en_US": "Topic",
  32. "zh_CN": "主题"
  33. }
  34. },
  35. {
  36. "name": "rowkindField",
  37. "default": "",
  38. "optional": true,
  39. "control": "text",
  40. "type": "string",
  41. "hint": {
  42. "en_US": "Specify which field represents the action like insert or update. If not specified, all rows are default to insert",
  43. "zh_CN": "指定哪个字段表示操作,例如插入或更新。如果不指定,默认所有的数据都是插入操作"
  44. },
  45. "label": {
  46. "en_US": "Rowkind Field",
  47. "zh_CN": "动作字段"
  48. }
  49. },
  50. {
  51. "name": "keyField",
  52. "default": "",
  53. "optional": true,
  54. "control": "text",
  55. "type": "string",
  56. "hint": {
  57. "en_US": "Specify which field represents the key of the message. It is required when rowkindField is specified.",
  58. "zh_CN": "指定哪个字段表示消息的key。当指定了动作字段时,该字段是必须的。"
  59. },
  60. "label": {
  61. "en_US": "Key Field",
  62. "zh_CN": "Key字段"
  63. }
  64. }
  65. ],
  66. "node": {
  67. "category": "sink",
  68. "icon": "iconPath",
  69. "label": {
  70. "en": "Memory",
  71. "zh": "内存输出"
  72. }
  73. }
  74. }