RuleGo RuleGo
🏠Home
  • Quick Start
  • Rule Chain
  • Standard Components
  • Extension Components
  • Custom Components
  • Visualization
  • RuleGo-Server
  • RuleGo-MCP-Server
  • AOP
  • Trigger
  • Advanced Topics
  • Performance
  • Standard Components
  • Extension Components
  • Custom Components
  • Components Marketplace
  • Overview
  • Quick Start
  • Routing
  • DSL
  • API
  • Options
  • Components
🔥Editor (opens new window)
  • RuleGo Editor (opens new window)
  • RuleGo Server (opens new window)
  • Github (opens new window)
  • Gitee (opens new window)
  • Changelog (opens new window)
  • English
  • 简体中文
🏠Home
  • Quick Start
  • Rule Chain
  • Standard Components
  • Extension Components
  • Custom Components
  • Visualization
  • RuleGo-Server
  • RuleGo-MCP-Server
  • AOP
  • Trigger
  • Advanced Topics
  • Performance
  • Standard Components
  • Extension Components
  • Custom Components
  • Components Marketplace
  • Overview
  • Quick Start
  • Routing
  • DSL
  • API
  • Options
  • Components
🔥Editor (opens new window)
  • RuleGo Editor (opens new window)
  • RuleGo Server (opens new window)
  • Github (opens new window)
  • Gitee (opens new window)
  • Changelog (opens new window)
  • English
  • 简体中文

广告采用随机轮播方式显示 ❤️成为赞助商
  • Quick Start

  • Rule Chain

  • Standard Components

  • Extension Components

    • Extension Components Overview
    • filter

    • transform

    • external

      • redisClient
      • kafkaProducer
      • natsClient
      • rabbitmqClient
      • opengeminiWrite
      • opengeminiQuery
      • MongoDB Client
      • Redis Publisher
      • grpcClient
      • OpenTelemetry
      • BeanstalkdWorker
      • BeanstalkdTube
        • Configuration
        • Configuration Example
        • Relation Type
          • Execution Result
      • WukongimSender
    • ai

    • ci

    • IoT

  • Custom Components

  • Components marketplace

  • Visualization

  • AOP

  • Trigger

  • Advanced Topic

  • RuleGo-Server

  • FAQ

  • Endpoint Module

  • Support

目录

BeanstalkdTube

x/beanstalkdTube component: v0.29.0+ Beanstalkd producer, supporting operations such as Put, PeekReady, PeekDelayed, PeekBuried, Kick, Stat, and Pause.

Requires the additional extension library: rulego-components (opens new window) Requires configuration of component connection reuse (opens new window). Different nodes reuse the connection through component connection reuse to maintain a consistent client instance (after a Beanstalkd client subscribes to a message, it locks the current client, preventing other clients from operating on the message).

# Configuration

Field Type Description Default Value
server string Beanstalkd server address 127.0.0.1:11300
tube string Required, Tube name, allows the use of ${} placeholder variables default
cmd string Required, command name, supports Put, PeekReady, PeekDelayed, PeekBuried, Kick, Stat, Pause Stat
body string Message body content, allows the use of ${} placeholder variables, parameter for Put command
pri string Priority, allows the use of ${} placeholder variables, parameter for Put command
delay string Delay time, allows the use of ${} placeholder variables, parameter for Put command
ttr string Maximum execution time in seconds for a Job, allows the use of ${} placeholder variables, parameter for Put command
kickBound string Bound parameter for Kick command, allows the use of ${} placeholder variables
pauseTime string Time parameter for Pause command, allows the use of ${} placeholder variables

# Configuration Example

{
"ruleChain": {
"id": "f5G9y8GzpgDY",
"name": "Beanstalkd Node Test",
"debugMode": false,
"root": true,
"disabled": false,
"additionalInfo": {
"createTime": "2025/01/15 21:50:47",
"description": "",
"layoutX": "700",
"layoutY": "100",
"message": "the rule chain has been disabled",
"updateTime": "2025/01/17 14:31:16",
"username": "admin"
}
},
"metadata": {
"endpoints": [
{
"id": "node_2",
"additionalInfo": {
"layoutX": 450,
"layoutY": 160
},
"type": "endpoint/http",
"name": "API",
"debugMode": false,
"configuration": {
"allowCors": true,
"server": ":6333"
},
"processors": null,
"routers": [
{
"id": "KOUXvKLg1Ml2",
"params": [
"POST"
],
"from": {
"path": "/msg/add",
"configuration": null,
"processors": [
"setJsonDataType"
]
},
"to": {
"path": "f5G9y8GzpgDY:node_4",
"configuration": null,
"wait": true,
"processors": [
"responseToBody",
"metadataToHeaders"
]
}
},
{
"id": "Ud6fjHltHyKg",
"params": [
"POST"
],
"from": {
"path": "/msg/del",
"configuration": null,
"processors": [
"setJsonDataType"
]
},
"to": {
"path": "f5G9y8GzpgDY:node_8",
"configuration": null,
"wait": true,
"processors": [
"responseToBody",
"metadataToHeaders"
]
}
},
{
"id": "HlgiXu67EWBX",
"params": [
"POST"
],
"from": {
"path": "/msg/release",
"configuration": null,
"processors": [
"setJsonDataType"
]
},
"to": {
"path": "f5G9y8GzpgDY:node_15",
"configuration": null,
"wait": true,
"processors": [
"responseToBody"
]
}
}
]
}
],
"nodes": [
{
"id": "node_4",
"additionalInfo": {
"layoutX": 950,
"layoutY": 160
},
"type": "x/beanstalkdTube",
"name": "Put",
"debugMode": true,
"configuration": {
"body": "${msg.body}",
"cmd": "Put",
"putBody": "${msg.body}",
"server": "ref://local_beanstalkdTube",
"tube": "${msg.tube}"
}
},
{
"id": "node_8",
"additionalInfo": {
"layoutX": 900,
"layoutY": 400
},
"type": "x/beanstalkdWorker",
"name": "Del",
"debugMode": true,
"configuration": {
"cmd": "Delete",
"jobId": "${msg.id}",
"server": "ref://local_beanstalkdWorker",
"tube": "${msg.tube}"
}
},
{
"id": "node_13",
"additionalInfo": {
"layoutX": 850,
"layoutY": 550
},
"type": "x/beanstalkdWorker",
"name": "Release",
"debugMode": true,
"configuration": {
"cmd": "Release",
"jobId": "${id}",
"server": "ref://local_beanstalkdWorker",
"tube": "${tube}"
}
},
{
"id": "node_15",
"additionalInfo": {
"layoutX": 500,
"layoutY": 530
},
"type": "x/beanstalkdWorker",
"name": "ReserveJob",
"debugMode": true,
"configuration": {
"cmd": "ReserveJob",
"jobId": "${msg.id}",
"server": "ref://local_beanstalkdWorker",
"tube": "${msg.tube}"
}
}
],
"connections": [
{
"fromId": "node_15",
"toId": "node_13",
"type": "Success"
}
]
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178

# Relation Type

Success: Execution successful, the message is sent to the Success chain. Failure: Execution failed, the message is sent to the Failure chain.

# Execution Result

Referencing the return value of the Beanstalkd command execution, it is converted to the RuleMsg format and sent to the rule chain: data: Message content dataType: JSON type: Default is empty metadata: Message metadata, including information such as id, tube, etc.

Edit this page on GitHub (opens new window)
Last Updated: 2025/04/02, 01:29:50
BeanstalkdWorker
WukongimSender

← BeanstalkdWorker WukongimSender→

Theme by Vdoing | Copyright © 2023-2025 RuleGo Team | Apache 2.0 License

  • 跟随系统
  • 浅色模式
  • 深色模式
  • 阅读模式