trabox 0.1.1 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 44bcd5a8b174aa887c7cdbd415aeeba5f1af25a11e10a8a23543967ba2f4fd84
4
- data.tar.gz: 0b2d81b7a826f457dd24763bf5eb39278d14061293cf75f225b54639e13057e4
3
+ metadata.gz: e7d6e1156090efc8e33e9618f6f449dc7363d67e58aff81324dc7300ab4d644a
4
+ data.tar.gz: b898fedf626581cee69767ea4f2a810e3fc242e6a6d955d6c0f284ace31d779c
5
5
  SHA512:
6
- metadata.gz: 02b16217802b7beaa2c2f87e6bf60681556554c458f839c34ed7cfc049c80107be7a5646b2ae2d42de76159e4973776701cb4020987d9d2462dcad75e4183f14
7
- data.tar.gz: 3b45467e241f3339de38f6502121347bc569d3b0ac9f29ff286befbbcd9d4866dd348c6a650e4fa63d901c6ba0eb3c8bfe90244bd7b812568c498366c82d4dcb
6
+ metadata.gz: e22b0f8227e22ac12f5605671ffbd030e9fbc1bf30b38c38194e2f8e6936b8dc6844b09078ea7e3c648e265d0b04c7f0faeb5636765a5f66515d9dbf11b29eb3
7
+ data.tar.gz: b47485d03057b4781b4dafd4fd9cf6668814ee58141c253f5b206a7402027cf925d0e676bc2c17e0c8d817c8878ef8516a548f724a217d231bb5abd34dbd1d48
data/README.md CHANGED
@@ -1,10 +1,27 @@
1
1
  # Trabox
2
2
 
3
+ \[[Japanese](README.ja.md)]\[[English](README.md)]
4
+
3
5
  Transactional-Outbox for Rails.
4
6
 
5
- ## Usage
7
+ ![](./docs/images/architecture.jpg)
8
+
9
+ ## Features
10
+
11
+ - Publishing event data in transactional-outbox pattern
12
+ - Polling multiple databases and outbox tables
13
+ - Can use your own publisher/subscriber
14
+ - Custom Metrics with dogstatsd
15
+ - Ensure message ordering
16
+
17
+ **Supported publisher**
6
18
 
7
- How to use my plugin.
19
+ - Google Cloud Pub/Sub
20
+
21
+ ## Requirements
22
+
23
+ - Ruby 2.6+
24
+ - Rails 6.0+
8
25
 
9
26
  ## Installation
10
27
 
@@ -17,18 +34,160 @@ gem 'trabox'
17
34
  And then execute:
18
35
 
19
36
  ```bash
20
- bundle
37
+ bundle install
38
+ bin/rails g trabox:configure
39
+ ```
40
+
41
+ This will generate config file `config/initializers/trabox.rb`.
42
+
43
+ **Optional**:
44
+
45
+ ```bash
46
+ bundle binstubs trabox
47
+ ```
48
+
49
+ ## Usage
50
+
51
+ ### Generate outbox tables
52
+
53
+ ```bash
54
+ # generate model
55
+ bin/rails g trabox:model <NAME>
56
+
57
+ # Help
58
+ bin/rails g trabox:model --help
59
+ Usage:
60
+ rails generate trabox:model NAME [field[:type][:index] field[:type][:index]] [options]
61
+ ...
62
+ ```
63
+
64
+ **additional option: --polymorphic=\<NAME>**
65
+ This option is inserted references column in generated outbox model.
66
+ This use to associate event record with outbox record when the application is designed immutable data model.
67
+
68
+ example:`bin/rails g trabox:model event --polymorphic=event`
69
+
70
+ ```ruby
71
+ class CreateEvents < ActiveRecord::Migration[6.1]
72
+ def change
73
+ create_table :events do |t|
74
+ t.references :event, polymorphic: true, null: false # additional column
75
+ t.binary :event_data
76
+ t.string :message_id
77
+ t.datetime :published_at
78
+
79
+ t.timestamps
80
+ end
81
+ end
82
+ end
83
+ ```
84
+
85
+ ### Registering event data
86
+
87
+ Insert events to publish into the generated outbox table as part of the local transaction.
88
+
89
+ ```ruby
90
+ # Your rails application
91
+ ActiveRecord::Base.transaction do
92
+ user = User.create! name: 'hoge'
93
+
94
+ Event.create! event_data: <serialized_user_event>
95
+ end
21
96
  ```
22
97
 
23
- Or install it yourself as:
98
+ ### Running relayer
24
99
 
25
100
  ```bash
26
- gem install trabox
101
+ bin/trabox relay
102
+
103
+ # Help
104
+ bin/trabox relay -h
105
+ Usage: trabox relay [OPTIONS]
106
+
107
+ Overwrite configuration
108
+
109
+ -l, --limit NUM
110
+ -i, --interval SEC
111
+ -L, --[no-]lock
112
+ --log-level LEVEL
113
+
114
+
27
115
  ```
28
116
 
117
+ ### Running subscriber
118
+
119
+ ```bash
120
+ bin/trabox subscribe
121
+
122
+ # Help
123
+ bin/trabox subscribe -h
124
+ Usage: trabox subscribe [OPTIONS]
125
+
126
+ Overwrite configuration
127
+
128
+ --log-level LEVEL
129
+ ```
130
+
131
+ ## Metrics
132
+
133
+ The default namespace of metrics is `trabox`.
134
+ The namespace can be changed with `TRABOX_METRIC_NAMESPACE` environment variable.
135
+
136
+ | name | description |
137
+ | ------------------------------- | -------------------------------------------- |
138
+ | unpublished_event_count | Number of events that will be published |
139
+ | published_event_count | Number of published events |
140
+ | find_events_error_count | Number of errors that find events to publish |
141
+ | publish_event_error_count | Number of publication errors |
142
+ | update_event_record_error_count | Number of record update errors |
143
+
144
+ ### Health check
145
+
146
+ | command | metric name |
147
+ | --------- | ----------------------- |
148
+ | relay | relay.service.check |
149
+ | subscribe | subscribe.service.check |
150
+
151
+ ## Sequence diagram
152
+
153
+ ![](./docs/images/sequence-diagram.svg)
154
+
29
155
  ## Contributing
30
156
 
31
- Contribution directions go here.
157
+ Bug reports and pull requests are welcome.
158
+
159
+ ## Development
160
+
161
+ ### Install gems
162
+
163
+ ```bash
164
+ bundle install
165
+ ```
166
+
167
+ ### Start mysql / pubsub emulator
168
+
169
+ ```bash
170
+ docker-compose up
171
+ ```
172
+
173
+ **setup db**
174
+
175
+ ```bash
176
+ cd spec/rails_app
177
+ bin/rails db:setup
178
+ ```
179
+
180
+ **create topic / subscribe**
181
+
182
+ ```bash
183
+ rake trabox:pubsub_setup
184
+ ```
185
+
186
+ ### Test
187
+
188
+ ```bash
189
+ bin/rspec
190
+ ```
32
191
 
33
192
  ## License
34
193
 
data/Rakefile CHANGED
@@ -1,3 +1,49 @@
1
- require "bundler/setup"
1
+ require 'bundler/setup'
2
2
 
3
- require "bundler/gem_tasks"
3
+ require 'bundler/gem_tasks'
4
+
5
+ namespace :trabox do
6
+ desc 'create topic/subscribe'
7
+ task :pubsub_setup do
8
+ require 'google/cloud/pubsub'
9
+ require 'logger'
10
+
11
+ ENV['PUBSUB_EMULATOR_HOST'] ||= 'localhost:8085'
12
+ ENV['GOOGLE_CLOUD_PROJECT'] ||= 'trabox'
13
+
14
+ logger = Logger.new($stdout)
15
+
16
+ topic_id = ENV['PUBSUB_TOPIC_ID'] || 'trabox'
17
+ subscription_id = ENV['PUBSUB_SUBSCRIPTION_ID'] || 'trabox-sub'
18
+
19
+ pubsub = Google::Cloud::Pubsub.new
20
+
21
+ ##################
22
+ # create topic #
23
+ ##################
24
+
25
+ logger.info 'Create Topic'
26
+
27
+ topic = pubsub.topic topic_id
28
+
29
+ topic&.delete
30
+
31
+ topic = pubsub.create_topic topic_id
32
+
33
+ puts "Topic #{topic.name} created."
34
+
35
+ #########################
36
+ # create subscription #
37
+ #########################
38
+
39
+ logger.info 'Create Subscription'
40
+
41
+ subscription = topic.subscription subscription_id
42
+
43
+ subscription&.delete
44
+
45
+ topic.subscribe subscription_id, message_ordering: true
46
+
47
+ puts "Pull subscription #{subscription_id} created with message ordering."
48
+ end
49
+ end
data/lib/trabox/metric.rb CHANGED
@@ -11,7 +11,7 @@ module Trabox
11
11
  # - publish_event_error_count: イベントのパブリッシュに失敗した数
12
12
  # - update_event_record_error_count: パブリッシュしたイベントのカラム更新に失敗した数
13
13
  module Metric
14
- NAMESPACE = ENV.fetch('METRIC_NAMESPACE', 'trabox')
14
+ NAMESPACE = ENV.fetch('TRABOX_METRIC_NAMESPACE', 'trabox')
15
15
  LOG_PREFIX = '[metric]'
16
16
  SERVICE_OK = Datadog::Statsd::OK
17
17
  SERVICE_CRITICAL = Datadog::Statsd::CRITICAL
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Trabox
2
- VERSION = '0.1.1'
4
+ VERSION = '0.1.3'
3
5
  end
metadata CHANGED
@@ -1,85 +1,111 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trabox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - kosay
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-12-06 00:00:00.000000000 Z
11
+ date: 2025-03-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dogstatsd-ruby
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: '5.5'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ">="
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '0'
26
+ version: '5.5'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: google-cloud-pubsub
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '0'
33
+ version: '2.13'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ">="
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '0'
40
+ version: '2.13'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: mysql2
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.5'
45
48
  - - ">="
46
49
  - !ruby/object:Gem::Version
47
- version: '0'
50
+ version: 0.5.4
48
51
  type: :runtime
49
52
  prerelease: false
50
53
  version_requirements: !ruby/object:Gem::Requirement
51
54
  requirements:
55
+ - - "~>"
56
+ - !ruby/object:Gem::Version
57
+ version: '0.5'
52
58
  - - ">="
53
59
  - !ruby/object:Gem::Version
54
- version: '0'
60
+ version: 0.5.4
55
61
  - !ruby/object:Gem::Dependency
56
62
  name: optparse
57
63
  requirement: !ruby/object:Gem::Requirement
58
64
  requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '0.2'
59
68
  - - ">="
60
69
  - !ruby/object:Gem::Version
61
- version: '0'
70
+ version: 0.2.0
62
71
  type: :runtime
63
72
  prerelease: false
64
73
  version_requirements: !ruby/object:Gem::Requirement
65
74
  requirements:
75
+ - - "~>"
76
+ - !ruby/object:Gem::Version
77
+ version: '0.2'
66
78
  - - ">="
67
79
  - !ruby/object:Gem::Version
68
- version: '0'
80
+ version: 0.2.0
69
81
  - !ruby/object:Gem::Dependency
70
82
  name: rails
71
83
  requirement: !ruby/object:Gem::Requirement
72
84
  requirements:
73
85
  - - ">="
74
86
  - !ruby/object:Gem::Version
75
- version: '0'
87
+ version: 6.0.0
76
88
  type: :runtime
77
89
  prerelease: false
78
90
  version_requirements: !ruby/object:Gem::Requirement
79
91
  requirements:
80
92
  - - ">="
81
93
  - !ruby/object:Gem::Version
82
- version: '0'
94
+ version: 6.0.0
95
+ - !ruby/object:Gem::Dependency
96
+ name: appraisal
97
+ requirement: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - "~>"
100
+ - !ruby/object:Gem::Version
101
+ version: '2.5'
102
+ type: :development
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - "~>"
107
+ - !ruby/object:Gem::Version
108
+ version: '2.5'
83
109
  description: Transactional-Outbox for Rails
84
110
  email:
85
111
  - ekr59uv25@gmail.com
@@ -132,14 +158,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
132
158
  requirements:
133
159
  - - ">="
134
160
  - !ruby/object:Gem::Version
135
- version: '0'
161
+ version: '2.6'
136
162
  required_rubygems_version: !ruby/object:Gem::Requirement
137
163
  requirements:
138
164
  - - ">="
139
165
  - !ruby/object:Gem::Version
140
166
  version: '0'
141
167
  requirements: []
142
- rubygems_version: 3.3.7
168
+ rubygems_version: 3.1.6
143
169
  signing_key:
144
170
  specification_version: 4
145
171
  summary: Transactional-Outbox for Rails