activewarehouse-etl 0.9.1 → 0.9.5.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (135) hide show
  1. data/.gitignore +7 -0
  2. data/0.9-UPGRADE +6 -0
  3. data/CHANGELOG +182 -150
  4. data/Gemfile +4 -0
  5. data/HOW_TO_RELEASE +9 -0
  6. data/README +18 -2
  7. data/Rakefile +35 -91
  8. data/active_support_logger.patch +78 -0
  9. data/activewarehouse-etl.gemspec +30 -0
  10. data/lib/etl.rb +10 -2
  11. data/lib/etl/batch/directives.rb +11 -1
  12. data/lib/etl/control/control.rb +2 -2
  13. data/lib/etl/control/destination.rb +27 -7
  14. data/lib/etl/control/destination/database_destination.rb +8 -6
  15. data/lib/etl/control/destination/excel_destination.rb +91 -0
  16. data/lib/etl/control/destination/file_destination.rb +6 -4
  17. data/lib/etl/control/destination/insert_update_database_destination.rb +133 -0
  18. data/lib/etl/control/destination/update_database_destination.rb +109 -0
  19. data/lib/etl/control/source.rb +3 -2
  20. data/lib/etl/control/source/database_source.rb +14 -10
  21. data/lib/etl/control/source/file_source.rb +2 -2
  22. data/lib/etl/engine.rb +17 -15
  23. data/lib/etl/execution.rb +0 -1
  24. data/lib/etl/execution/batch.rb +3 -1
  25. data/lib/etl/execution/migration.rb +5 -0
  26. data/lib/etl/parser/delimited_parser.rb +20 -1
  27. data/lib/etl/parser/excel_parser.rb +112 -0
  28. data/lib/etl/processor/bulk_import_processor.rb +4 -2
  29. data/lib/etl/processor/database_join_processor.rb +68 -0
  30. data/lib/etl/processor/escape_csv_processor.rb +77 -0
  31. data/lib/etl/processor/filter_row_processor.rb +51 -0
  32. data/lib/etl/processor/ftp_downloader_processor.rb +68 -0
  33. data/lib/etl/processor/ftp_uploader_processor.rb +65 -0
  34. data/lib/etl/processor/imapattachment_downloader_processor.rb +91 -0
  35. data/lib/etl/processor/pop3attachment_downloader_processor.rb +90 -0
  36. data/lib/etl/processor/sftp_downloader_processor.rb +63 -0
  37. data/lib/etl/processor/sftp_uploader_processor.rb +63 -0
  38. data/lib/etl/processor/zip_file_processor.rb +27 -0
  39. data/lib/etl/transform/calculation_transform.rb +71 -0
  40. data/lib/etl/transform/foreign_key_lookup_transform.rb +25 -7
  41. data/lib/etl/transform/ordinalize_transform.rb +3 -1
  42. data/lib/etl/transform/split_fields_transform.rb +27 -0
  43. data/lib/etl/version.rb +1 -7
  44. data/test-matrix.yml +10 -0
  45. data/test/.gitignore +1 -0
  46. data/test/.ignore +2 -0
  47. data/test/all.ebf +6 -0
  48. data/test/apache_combined_log.ctl +11 -0
  49. data/test/batch_test.rb +41 -0
  50. data/test/batch_with_error.ebf +6 -0
  51. data/test/batched1.ctl +0 -0
  52. data/test/batched2.ctl +0 -0
  53. data/test/block_processor.ctl +6 -0
  54. data/test/block_processor_error.ctl +1 -0
  55. data/test/block_processor_pre_post_process.ctl +4 -0
  56. data/test/block_processor_remove_rows.ctl +5 -0
  57. data/test/block_processor_test.rb +38 -0
  58. data/test/config/Gemfile.rails-2.3.x +3 -0
  59. data/test/config/Gemfile.rails-2.3.x.lock +38 -0
  60. data/test/config/Gemfile.rails-3.0.x +3 -0
  61. data/test/config/Gemfile.rails-3.0.x.lock +49 -0
  62. data/test/config/common.rb +21 -0
  63. data/test/connection/mysql/connection.rb +9 -0
  64. data/test/connection/mysql/schema.sql +36 -0
  65. data/test/connection/postgresql/connection.rb +13 -0
  66. data/test/connection/postgresql/schema.sql +39 -0
  67. data/test/control_test.rb +43 -0
  68. data/test/data/apache_combined_log.txt +3 -0
  69. data/test/data/bulk_import.txt +3 -0
  70. data/test/data/bulk_import_with_empties.txt +3 -0
  71. data/test/data/decode.txt +3 -0
  72. data/test/data/delimited.txt +3 -0
  73. data/test/data/encode_source_latin1.txt +2 -0
  74. data/test/data/excel.xls +0 -0
  75. data/test/data/excel2.xls +0 -0
  76. data/test/data/fixed_width.txt +3 -0
  77. data/test/data/multiple_delimited_1.txt +3 -0
  78. data/test/data/multiple_delimited_2.txt +3 -0
  79. data/test/data/people.txt +3 -0
  80. data/test/data/sax.xml +14 -0
  81. data/test/data/xml.xml +16 -0
  82. data/test/date_dimension_builder_test.rb +96 -0
  83. data/test/delimited.ctl +30 -0
  84. data/test/delimited_absolute.ctl +33 -0
  85. data/test/delimited_destination_db.ctl +25 -0
  86. data/test/delimited_excel.ctl +31 -0
  87. data/test/delimited_insert_update.ctl +34 -0
  88. data/test/delimited_update.ctl +34 -0
  89. data/test/delimited_with_bulk_load.ctl +34 -0
  90. data/test/destination_test.rb +275 -0
  91. data/test/directive_test.rb +23 -0
  92. data/test/encode_processor_test.rb +32 -0
  93. data/test/engine_test.rb +32 -0
  94. data/test/errors.ctl +24 -0
  95. data/test/etl_test.rb +42 -0
  96. data/test/excel.ctl +24 -0
  97. data/test/excel2.ctl +25 -0
  98. data/test/fixed_width.ctl +35 -0
  99. data/test/generator_test.rb +14 -0
  100. data/test/inline_parser.ctl +17 -0
  101. data/test/mocks/mock_destination.rb +26 -0
  102. data/test/mocks/mock_source.rb +25 -0
  103. data/test/model_source.ctl +14 -0
  104. data/test/multiple_delimited.ctl +22 -0
  105. data/test/multiple_source_delimited.ctl +39 -0
  106. data/test/parser_test.rb +224 -0
  107. data/test/performance/delimited.ctl +30 -0
  108. data/test/processor_test.rb +44 -0
  109. data/test/row_processor_test.rb +17 -0
  110. data/test/sax.ctl +26 -0
  111. data/test/scd/1.txt +1 -0
  112. data/test/scd/2.txt +1 -0
  113. data/test/scd/3.txt +1 -0
  114. data/test/scd_test.rb +257 -0
  115. data/test/scd_test_type_1.ctl +43 -0
  116. data/test/scd_test_type_2.ctl +34 -0
  117. data/test/screen_test.rb +9 -0
  118. data/test/screen_test_error.ctl +3 -0
  119. data/test/screen_test_fatal.ctl +3 -0
  120. data/test/source_test.rb +139 -0
  121. data/test/test_helper.rb +34 -0
  122. data/test/transform_test.rb +101 -0
  123. data/test/vendor/adapter_extensions-0.5.0/CHANGELOG +26 -0
  124. data/test/vendor/adapter_extensions-0.5.0/LICENSE +16 -0
  125. data/test/vendor/adapter_extensions-0.5.0/README +7 -0
  126. data/test/vendor/adapter_extensions-0.5.0/Rakefile +158 -0
  127. data/test/vendor/adapter_extensions-0.5.0/lib/adapter_extensions.rb +12 -0
  128. data/test/vendor/adapter_extensions-0.5.0/lib/adapter_extensions/connection_adapters/abstract_adapter.rb +44 -0
  129. data/test/vendor/adapter_extensions-0.5.0/lib/adapter_extensions/connection_adapters/mysql_adapter.rb +63 -0
  130. data/test/vendor/adapter_extensions-0.5.0/lib/adapter_extensions/connection_adapters/postgresql_adapter.rb +52 -0
  131. data/test/vendor/adapter_extensions-0.5.0/lib/adapter_extensions/connection_adapters/sqlserver_adapter.rb +44 -0
  132. data/test/vendor/adapter_extensions-0.5.0/lib/adapter_extensions/version.rb +10 -0
  133. data/test/xml.ctl +31 -0
  134. metadata +229 -70
  135. data/lib/etl/execution/record.rb +0 -18
@@ -0,0 +1,30 @@
1
+ # puts "executing delimited.ctl"
2
+
3
+ source :in, {
4
+ :file => 'delimited.txt',
5
+ :parser => :delimited
6
+ },
7
+ [
8
+ :first_name,
9
+ :last_name,
10
+ :ssn,
11
+ {
12
+ :name => :age,
13
+ :type => :integer
14
+ },
15
+ :sex
16
+ ]
17
+
18
+ transform :ssn, :sha1
19
+ transform(:ssn){ |v| v[0,24] }
20
+ transform :sex, :decode, {:decode_table_path => 'delimited_decode.txt'}
21
+
22
+ destination :out, {
23
+ :file => 'delimited.out.txt'
24
+ },
25
+ {
26
+ :order => [:first_name, :last_name, :name, :ssn, :age, :sex],
27
+ :virtual => {
28
+ :name => Proc.new { |row| "#{row[:first_name]} #{row[:last_name]}" }
29
+ }
30
+ }
@@ -0,0 +1,44 @@
1
+ require File.dirname(__FILE__) + '/test_helper'
2
+
3
+ class Person < ActiveRecord::Base
4
+ end
5
+
6
+ # Test pre- and post-processors
7
+ class ProcessorTest < Test::Unit::TestCase
8
+ # Test bulk import functionality
9
+
10
+ context "the bulk import processor" do
11
+ should "should import successfully" do
12
+ assert_nothing_raised { do_bulk_import }
13
+ assert_equal 3, Person.count
14
+ assert_equal "Foxworthy", Person.find(2).last_name
15
+ end
16
+ end
17
+
18
+ def test_bulk_import_with_empties
19
+ # this test ensure that one column with empty value will still allow
20
+ # the row to be imported
21
+ # this doesn't apply to the id column though - untested
22
+ assert_nothing_raised { do_bulk_import('bulk_import_with_empties.txt') }
23
+ assert_equal 3, Person.count
24
+ assert Person.find(2).last_name.blank?
25
+ end
26
+
27
+ def test_truncate
28
+ # TODO: implement test
29
+ end
30
+
31
+ private
32
+
33
+ def do_bulk_import(file = 'bulk_import.txt')
34
+ control = ETL::Control::Control.new(File.join(File.dirname(__FILE__), 'delimited.ctl'))
35
+ configuration = {
36
+ :file => "data/#{file}",
37
+ :truncate => true,
38
+ :target => :data_warehouse,
39
+ :table => 'people'
40
+ }
41
+ processor = ETL::Processor::BulkImportProcessor.new(control, configuration)
42
+ processor.process
43
+ end
44
+ end
@@ -0,0 +1,17 @@
1
+ require File.dirname(__FILE__) + '/test_helper'
2
+
3
+ # Test row processors
4
+ class RowProcessorTest < Test::Unit::TestCase
5
+ def test_copy_field_processor
6
+
7
+ end
8
+ def test_hierarchy_exploder_processor
9
+
10
+ end
11
+ def test_rename_processor
12
+
13
+ end
14
+ def test_sequence_processor
15
+
16
+ end
17
+ end
@@ -0,0 +1,26 @@
1
+ # puts "executing fixed_width.ctl"
2
+
3
+ source :in, {
4
+ :file => 'data/sax.xml',
5
+ :parser => :sax
6
+ },
7
+ {
8
+ :write_trigger => 'people/person',
9
+ :fields => {
10
+ :first_name => 'people/person/first_name',
11
+ :last_name => 'people/person/last_name',
12
+ :ssn => 'people/person/social_security_number',
13
+ :age => 'people/person[age]'
14
+ }
15
+ }
16
+
17
+ transform :ssn, :sha1
18
+ transform(:ssn){ |v| v[0,24] }
19
+ transform :age, :type, {:type => :number}
20
+
21
+ destination :out, {
22
+ :file => 'output/sax.out.txt'
23
+ },
24
+ {
25
+ :order => [:first_name, :last_name, :ssn, :age]
26
+ }
@@ -0,0 +1 @@
1
+ Bob,Smith,200 South Drive,Boston,MA,32123
@@ -0,0 +1 @@
1
+ Bob,Smith,1010 SW 23rd St,Los Angeles,CA,90392
@@ -0,0 +1 @@
1
+ Bob,Smith,280 Pine Street,Los Angeles,CA,90392
@@ -0,0 +1,257 @@
1
+ require File.dirname(__FILE__) + '/test_helper'
2
+
3
+ class ScdTest < Test::Unit::TestCase
4
+ context "when working with a slowly changing dimension" do
5
+ setup do
6
+ @connection = ETL::Engine.connection(:data_warehouse)
7
+ @connection.delete("DELETE FROM person_dimension")
8
+ @end_of_time = DateTime.parse('9999-12-31 00:00:00')
9
+ end
10
+ context "of type 1" do
11
+ context "on run 1" do
12
+ setup do
13
+ do_type_1_run(1)
14
+ end
15
+ should "insert record" do
16
+ assert_equal 1, count_bobs
17
+ end
18
+ should "set the original address" do
19
+ assert_boston_address(find_bobs.first)
20
+ end
21
+ should "set the original id" do
22
+ assert_equal 1, find_bobs.first.id
23
+ end
24
+ should "skip the load if there is no change" do
25
+ do_type_1_run(1)
26
+ lines = lines_for('scd_test_type_1.txt')
27
+ assert lines.empty?, "scheduled load expected to be empty, was #{lines.size} records"
28
+ end
29
+ end
30
+ context "on run 2" do
31
+ setup do
32
+ do_type_1_run(1)
33
+ do_type_1_run(2)
34
+ end
35
+ should "delete the old record" do
36
+ assert_equal 1, count_bobs, "new record created, but old not deleted: #{find_bobs.inspect}"
37
+ end
38
+ should "update the address" do
39
+ assert_los_angeles_address(find_bobs.last)
40
+ end
41
+ should "keep id" do
42
+ assert_equal 1, find_bobs.first.id
43
+ end
44
+ should "only change once even if run again" do
45
+ do_type_1_run(2)
46
+ assert_equal 1, count_bobs
47
+ lines = lines_for('scd_test_type_1.txt')
48
+ assert lines.empty?, "scheduled load expected to be empty, was #{lines.size} records"
49
+ end
50
+ should "revert address on new record" do
51
+ do_type_1_run(1)
52
+ assert_boston_address(find_bobs.first)
53
+ end
54
+ should "keep record on revert" do
55
+ do_type_1_run(1)
56
+ assert_equal 1, count_bobs
57
+ end
58
+ end
59
+ end
60
+ context "of type 2" do
61
+ context "on run 1" do
62
+ setup do
63
+ do_type_2_run(1)
64
+ end
65
+ should "insert record" do
66
+ assert_equal 1, count_bobs
67
+ end
68
+ should "set the original record" do
69
+ assert_boston_address(find_bobs.first)
70
+ end
71
+ should "set the original id" do
72
+ assert_equal 1, find_bobs.first.id
73
+ end
74
+ should "set the effective date" do
75
+ # doing comparison on strings, as comparison on objects
76
+ # doesn't consider things equal for some yet to be understood
77
+ # reason
78
+ assert_equal current_datetime.to_s, find_bobs.first.effective_date.to_s
79
+ end
80
+ should "set the end date" do
81
+ assert_equal @end_of_time, find_bobs.first.end_date
82
+ end
83
+ should "set the latest version flag" do
84
+ assert find_bobs.first.latest_version?
85
+ end
86
+ should "skip the load if there is no change" do
87
+ do_type_2_run(1)
88
+ assert_equal 1, find_bobs.last.id, "scheduled load expected to be empty"
89
+ end
90
+
91
+ end
92
+ context "on run 2" do
93
+ setup do
94
+ do_type_2_run(1)
95
+ do_type_2_run(2)
96
+ end
97
+ should "insert new record" do
98
+ assert_equal 2, count_bobs
99
+ end
100
+ should "keep the primary key of the original version" do
101
+ assert_not_nil find_bobs.detect { |bob| 1 == bob.id }
102
+ end
103
+ should "increment the primary key for the new version" do
104
+ assert_not_nil find_bobs.detect { |bob| 2 == bob.id }
105
+ end
106
+ should "expire the old record" do
107
+ original_bob = find_bobs.detect { |bob| 1 == bob.id }
108
+ new_bob = find_bobs.detect { |bob| 2 == bob.id }
109
+ assert_equal new_bob.effective_date, original_bob.end_date
110
+ end
111
+ should "keep the address for the expired record" do
112
+ assert_boston_address(find_bobs.detect { |bob| 1 == bob.id })
113
+ end
114
+ should "update the address on the new record" do
115
+ assert_los_angeles_address(find_bobs.detect { |bob| 2 == bob.id })
116
+ end
117
+ should "activate the new record" do
118
+ # doing comparison on strings, as comparison on objects
119
+ # doesn't consider things equal for some yet to be understood
120
+ # reason
121
+ assert_equal current_datetime.to_s, find_bobs.detect { |bob| 2 == bob.id }.effective_date.to_s
122
+ end
123
+ should "set the end date for the new record" do
124
+ assert_equal @end_of_time, find_bobs.detect { |bob| 2 == bob.id }.end_date
125
+ end
126
+ should "shift the latest version" do
127
+ original_bob = find_bobs.detect { |bob| 1 == bob.id }
128
+ new_bob = find_bobs.detect { |bob| 2 == bob.id }
129
+ assert !original_bob.latest_version?
130
+ assert new_bob.latest_version?
131
+ end
132
+ should "only execute a change once" do
133
+ do_type_2_run(2)
134
+ assert_equal 2, count_bobs, "scheduled load expected to be empty"
135
+ end
136
+ should "insert new records on revert" do
137
+ do_type_2_run(1)
138
+ assert_equal 3, count_bobs
139
+ end
140
+ should "update address on new record on revert" do
141
+ do_type_2_run(1)
142
+ assert_boston_address(find_bobs.detect { |bob| 3 == bob.id })
143
+ end
144
+ should "only delete one row on an scd change" do
145
+ # Two records right now
146
+ assert_equal 2, count_bobs
147
+ do_type_2_run(1) # put third version in (same as first version, but that's irrelevant)
148
+ # was failing because first and second versions were being deleted.
149
+ assert_equal 3, count_bobs
150
+ end
151
+ end
152
+ context "on non sdc fields that change" do
153
+ setup do
154
+ do_type_2_run_with_only_city_state_zip_scd(1)
155
+ do_type_2_run_with_only_city_state_zip_scd(2)
156
+ end
157
+ should "not create an extra record" do
158
+ do_type_2_run_with_only_city_state_zip_scd(3)
159
+ assert_equal 2, count_bobs
160
+ end
161
+ should "keep id" do
162
+ do_type_2_run_with_only_city_state_zip_scd(3)
163
+ assert_not_nil find_bobs.detect { |bob| 2 == bob.id }
164
+ end
165
+ should "keep dates" do
166
+ old_bob = find_bobs.detect { |bob| 2 == bob.id }
167
+ do_type_2_run_with_only_city_state_zip_scd(3)
168
+ new_bob = find_bobs.detect { |bob| 2 == bob.id }
169
+ assert_equal old_bob.end_date, new_bob.end_date
170
+ assert_equal old_bob.effective_date, new_bob.effective_date
171
+ end
172
+ should "keep the latest version flag" do
173
+ do_type_2_run_with_only_city_state_zip_scd(3)
174
+ assert find_bobs.detect { |bob| 2 == bob.id }.latest_version?
175
+ end
176
+ should "treat non scd fields like type 1 fields" do
177
+ do_type_2_run_with_only_city_state_zip_scd(3)
178
+ assert_los_angeles_address(find_bobs.detect { |bob| 2 == bob.id }, "280 Pine Street")
179
+ end
180
+ should "skip load when there is no change" do
181
+ do_type_2_run_with_only_city_state_zip_scd(2)
182
+ assert_equal 2, count_bobs, "scheduled load expected to be empty"
183
+ end
184
+ end
185
+ end
186
+ end
187
+
188
+ def do_type_2_run(run_num)
189
+ ENV['run_number'] = run_num.to_s
190
+ assert_nothing_raised do
191
+ run_ctl_file("scd_test_type_2.ctl")
192
+ end
193
+ end
194
+
195
+ def do_type_2_run_with_only_city_state_zip_scd(run_num)
196
+ ENV['type_2_scd_fields'] = Marshal.dump([:city, :state, :zip_code])
197
+ do_type_2_run(run_num)
198
+ end
199
+
200
+ def do_type_1_run(run_num)
201
+ ENV['run_number'] = run_num.to_s
202
+ assert_nothing_raised do
203
+ run_ctl_file("scd_test_type_1.ctl")
204
+ end
205
+ end
206
+
207
+ def lines_for(file)
208
+ File.readlines(File.dirname(__FILE__) + "/output/#{file}")
209
+ end
210
+
211
+ def run_ctl_file(file)
212
+ ETL::Engine.process(File.dirname(__FILE__) + "/#{file}")
213
+ end
214
+
215
+ def count_bobs
216
+ @connection.select_value(
217
+ "SELECT count(*) FROM person_dimension WHERE first_name = 'Bob' and last_name = 'Smith'").to_i
218
+ end
219
+
220
+ def find_bobs
221
+ bobs = @connection.select_all(
222
+ "SELECT * FROM person_dimension WHERE first_name = 'Bob' and last_name = 'Smith'")
223
+ bobs.each do |bob|
224
+ def bob.id
225
+ self["id"].to_i
226
+ end
227
+ def bob.effective_date
228
+ DateTime.parse(self["effective_date"])
229
+ end
230
+ def bob.end_date
231
+ DateTime.parse(self["end_date"])
232
+ end
233
+ def bob.latest_version?
234
+ ActiveRecord::ConnectionAdapters::Column.value_to_boolean(self["latest_version"])
235
+ end
236
+ end
237
+ bobs
238
+ end
239
+
240
+ def current_datetime
241
+ DateTime.parse(Time.now.to_s(:db))
242
+ end
243
+
244
+ def assert_boston_address(bob, street = "200 South Drive")
245
+ assert_equal street, bob['address'], bob.inspect
246
+ assert_equal "Boston", bob['city'], bob.inspect
247
+ assert_equal "MA", bob['state'], bob.inspect
248
+ assert_equal "32123", bob['zip_code'], bob.inspect
249
+ end
250
+
251
+ def assert_los_angeles_address(bob, street = "1010 SW 23rd St")
252
+ assert_equal street, bob['address'], bob.inspect
253
+ assert_equal "Los Angeles", bob['city'], bob.inspect
254
+ assert_equal "CA", bob['state'], bob.inspect
255
+ assert_equal "90392", bob['zip_code'], bob.inspect
256
+ end
257
+ end
@@ -0,0 +1,43 @@
1
+ source :in, {
2
+ :file => "scd/#{ENV['run_number']}.txt",
3
+ :parser => :delimited
4
+ },
5
+ [
6
+ :first_name,
7
+ :last_name,
8
+ :address,
9
+ :city,
10
+ :state,
11
+ :zip_code
12
+ ]
13
+
14
+ # NOTE: These are not usually required for a type 1 SCD dimension, but since
15
+ # we're sharing this table with the type 2 tests, they're necessary.
16
+ transform :effective_date, :default, :default_value => Time.now.to_s(:db)
17
+ transform :end_date, :default, :default_value => '9999-12-31 00:00:00'
18
+ transform :latest_version, :default, :default_value => true
19
+
20
+ destination :out, {
21
+ :file => 'output/scd_test_type_1.txt',
22
+ :natural_key => [:first_name, :last_name],
23
+ :scd => {
24
+ :type => 1,
25
+ :dimension_target => :data_warehouse,
26
+ :dimension_table => 'person_dimension'
27
+ },
28
+ :scd_fields => [:address, :city, :state, :zip_code]
29
+ },
30
+ {
31
+ :order => [
32
+ :id, :first_name, :last_name, :address, :city, :state, :zip_code, :effective_date, :end_date, :latest_version
33
+ ],
34
+ :virtual => {
35
+ :id => ETL::Generator::SurrogateKeyGenerator.new(:target => :data_warehouse, :table => 'person_dimension')
36
+ }
37
+ }
38
+
39
+ post_process :bulk_import, {
40
+ :file => 'output/scd_test_type_1.txt',
41
+ :target => :data_warehouse,
42
+ :table => 'person_dimension'
43
+ }
@@ -0,0 +1,34 @@
1
+ source :in, {
2
+ :file => "scd/#{ENV['run_number']}.txt",
3
+ :parser => :delimited
4
+ },
5
+ [
6
+ :first_name,
7
+ :last_name,
8
+ :address,
9
+ :city,
10
+ :state,
11
+ :zip_code
12
+ ]
13
+
14
+ destination :out, {
15
+ :type => :database,
16
+ :target => :data_warehouse,
17
+ :database => 'etl_unittest',
18
+ :table => 'person_dimension',
19
+ :natural_key => [:first_name, :last_name],
20
+ :scd => {
21
+ :type => 2,
22
+ :dimension_target => :data_warehouse,
23
+ :dimension_table => 'person_dimension'
24
+ },
25
+ :scd_fields => ENV['type_2_scd_fields'] ? Marshal.load(ENV['type_2_scd_fields']) : [:address, :city, :state, :zip_code]
26
+ },
27
+ {
28
+ :order => [
29
+ :id, :first_name, :last_name, :address, :city, :state, :zip_code, :effective_date, :end_date, :latest_version
30
+ ],
31
+ :virtual => {
32
+ :id => ETL::Generator::SurrogateKeyGenerator.new(:target => :data_warehouse, :table => 'person_dimension')
33
+ }
34
+ }