forked from zendesk/ruby-kafka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransaction_manager.rb
306 lines (244 loc) · 8.91 KB
/
transaction_manager.rb
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
# frozen_string_literal: true
require 'kafka/transaction_state_machine'
module Kafka
class TransactionManager
DEFAULT_TRANSACTION_TIMEOUT = 60 # 60 seconds
TRANSACTION_RESULT_COMMIT = true
TRANSACTION_RESULT_ABORT = false
attr_reader :producer_id, :producer_epoch, :transactional_id
def initialize(
cluster:,
logger:,
idempotent: false,
transactional: false,
transactional_id: nil,
transactional_timeout: DEFAULT_TRANSACTION_TIMEOUT
)
@cluster = cluster
@logger = TaggedLogger.new(logger)
@transactional = transactional
@transactional_id = transactional_id
@transactional_timeout = transactional_timeout
@transaction_state = Kafka::TransactionStateMachine.new(logger: logger)
@transaction_partitions = {}
# If transactional mode is enabled, idempotent must be enabled
@idempotent = transactional || idempotent
@producer_id = -1
@producer_epoch = 0
@sequences = {}
end
def idempotent?
@idempotent == true
end
def transactional?
@transactional == true && !@transactional_id.nil?
end
def init_producer_id(force = false)
return if @producer_id >= 0 && !force
response = transaction_coordinator.init_producer_id(
transactional_id: @transactional_id,
transactional_timeout: @transactional_timeout
)
Protocol.handle_error(response.error_code)
# Reset producer id
@producer_id = response.producer_id
@producer_epoch = response.producer_epoch
# Reset sequence
@sequences = {}
@logger.debug "Current Producer ID is #{@producer_id} and Producer Epoch is #{@producer_epoch}"
end
def next_sequence_for(topic, partition)
@sequences[topic] ||= {}
@sequences[topic][partition] ||= 0
end
def update_sequence_for(topic, partition, sequence)
@sequences[topic] ||= {}
@sequences[topic][partition] = sequence
end
def init_transactions
force_transactional!
unless @transaction_state.uninitialized?
@logger.warn("Transaction already initialized!")
return
end
init_producer_id(true)
@transaction_partitions = {}
@transaction_state.transition_to!(TransactionStateMachine::READY)
@logger.info "Transaction #{@transactional_id} is initialized, Producer ID: #{@producer_id} (Epoch #{@producer_epoch})"
nil
rescue
@transaction_state.transition_to!(TransactionStateMachine::ERROR)
raise
end
def add_partitions_to_transaction(topic_partitions)
force_transactional!
if @transaction_state.uninitialized?
raise Kafka::InvalidTxnStateError, 'Transaction is uninitialized'
end
# Extract newly created partitions
new_topic_partitions = {}
topic_partitions.each do |topic, partitions|
partitions.each do |partition|
@transaction_partitions[topic] ||= {}
if !@transaction_partitions[topic][partition]
new_topic_partitions[topic] ||= []
new_topic_partitions[topic] << partition
@logger.info "Adding parition #{topic}/#{partition} to transaction #{@transactional_id}, Producer ID: #{@producer_id} (Epoch #{@producer_epoch})"
end
end
end
unless new_topic_partitions.empty?
response = transaction_coordinator.add_partitions_to_txn(
transactional_id: @transactional_id,
producer_id: @producer_id,
producer_epoch: @producer_epoch,
topics: new_topic_partitions
)
# Update added topic partitions
response.errors.each do |tp|
tp.partitions.each do |p|
Protocol.handle_error(p.error_code)
@transaction_partitions[tp.topic] ||= {}
@transaction_partitions[tp.topic][p.partition] = true
end
end
end
nil
rescue
@transaction_state.transition_to!(TransactionStateMachine::ERROR)
raise
end
def begin_transaction
force_transactional!
raise Kafka::InvalidTxnStateError, 'Transaction has already started' if @transaction_state.in_transaction?
raise Kafka::InvalidTxnStateError, 'Transaction is not ready' unless @transaction_state.ready?
@transaction_state.transition_to!(TransactionStateMachine::IN_TRANSACTION)
@logger.info "Begin transaction #{@transactional_id}, Producer ID: #{@producer_id} (Epoch #{@producer_epoch})"
nil
rescue
@transaction_state.transition_to!(TransactionStateMachine::ERROR)
raise
end
def commit_transaction
force_transactional!
if @transaction_state.committing_transaction?
@logger.warn("Transaction is being committed")
return
end
unless @transaction_state.in_transaction?
raise Kafka::InvalidTxnStateError, 'Transaction is not valid to commit'
end
@transaction_state.transition_to!(TransactionStateMachine::COMMITTING_TRANSACTION)
@logger.info "Commiting transaction #{@transactional_id}, Producer ID: #{@producer_id} (Epoch #{@producer_epoch})"
response = transaction_coordinator.end_txn(
transactional_id: @transactional_id,
producer_id: @producer_id,
producer_epoch: @producer_epoch,
transaction_result: TRANSACTION_RESULT_COMMIT
)
Protocol.handle_error(response.error_code)
@logger.info "Transaction #{@transactional_id} is committed, Producer ID: #{@producer_id} (Epoch #{@producer_epoch})"
complete_transaction
nil
rescue
@transaction_state.transition_to!(TransactionStateMachine::ERROR)
raise
end
def abort_transaction
force_transactional!
if @transaction_state.aborting_transaction?
@logger.warn("Transaction is being aborted")
return
end
unless @transaction_state.in_transaction?
@logger.warn('Aborting transaction that was never opened on brokers')
return
end
@transaction_state.transition_to!(TransactionStateMachine::ABORTING_TRANSACTION)
@logger.info "Aborting transaction #{@transactional_id}, Producer ID: #{@producer_id} (Epoch #{@producer_epoch})"
response = transaction_coordinator.end_txn(
transactional_id: @transactional_id,
producer_id: @producer_id,
producer_epoch: @producer_epoch,
transaction_result: TRANSACTION_RESULT_ABORT
)
Protocol.handle_error(response.error_code)
@logger.info "Transaction #{@transactional_id} is aborted, Producer ID: #{@producer_id} (Epoch #{@producer_epoch})"
complete_transaction
nil
rescue
@transaction_state.transition_to!(TransactionStateMachine::ERROR)
raise
end
def send_offsets_to_txn(offsets:, group_id:)
force_transactional!
unless @transaction_state.in_transaction?
raise Kafka::InvalidTxnStateError, 'Transaction is not valid to send offsets'
end
add_response = transaction_coordinator.add_offsets_to_txn(
transactional_id: @transactional_id,
producer_id: @producer_id,
producer_epoch: @producer_epoch,
group_id: group_id
)
Protocol.handle_error(add_response.error_code)
send_response = group_coordinator(group_id: group_id).txn_offset_commit(
transactional_id: @transactional_id,
group_id: group_id,
producer_id: @producer_id,
producer_epoch: @producer_epoch,
offsets: offsets
)
send_response.errors.each do |tp|
tp.partitions.each do |partition|
Protocol.handle_error(partition.error_code)
end
end
nil
rescue
@transaction_state.transition_to!(TransactionStateMachine::ERROR)
raise
end
def in_transaction?
@transaction_state.in_transaction?
end
def error?
@transaction_state.error?
end
def ready?
@transaction_state.ready?
end
def close
if in_transaction?
@logger.warn("Aborting pending transaction ...")
abort_transaction
elsif @transaction_state.aborting_transaction? || @transaction_state.committing_transaction?
@logger.warn("Transaction is finishing. Sleeping until finish!")
sleep 5
end
end
private
def force_transactional!
unless transactional?
raise Kafka::InvalidTxnStateError, 'Please turn on transactional mode to use transaction'
end
if @transactional_id.nil? || @transactional_id.empty?
raise Kafka::InvalidTxnStateError, 'Please provide a transaction_id to use transactional mode'
end
end
def transaction_coordinator
@cluster.get_transaction_coordinator(
transactional_id: @transactional_id
)
end
def group_coordinator(group_id:)
@cluster.get_group_coordinator(
group_id: group_id
)
end
def complete_transaction
@transaction_state.transition_to!(TransactionStateMachine::READY)
@transaction_partitions = {}
end
end
end