factorylabs-activewarehouse-etl 0.9.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +198 -0
- data/LICENSE +7 -0
- data/README +85 -0
- data/Rakefile +153 -0
- data/TODO +28 -0
- data/bin/etl +28 -0
- data/bin/etl.cmd +8 -0
- data/examples/database.example.yml +16 -0
- data/lib/etl.rb +78 -0
- data/lib/etl/batch.rb +2 -0
- data/lib/etl/batch/batch.rb +111 -0
- data/lib/etl/batch/directives.rb +55 -0
- data/lib/etl/builder.rb +2 -0
- data/lib/etl/builder/date_dimension_builder.rb +96 -0
- data/lib/etl/builder/time_dimension_builder.rb +31 -0
- data/lib/etl/commands/etl.rb +89 -0
- data/lib/etl/control.rb +3 -0
- data/lib/etl/control/control.rb +405 -0
- data/lib/etl/control/destination.rb +420 -0
- data/lib/etl/control/destination/database_destination.rb +95 -0
- data/lib/etl/control/destination/file_destination.rb +124 -0
- data/lib/etl/control/source.rb +109 -0
- data/lib/etl/control/source/database_source.rb +220 -0
- data/lib/etl/control/source/enumerable_source.rb +11 -0
- data/lib/etl/control/source/file_source.rb +90 -0
- data/lib/etl/control/source/model_source.rb +39 -0
- data/lib/etl/core_ext.rb +1 -0
- data/lib/etl/core_ext/time.rb +5 -0
- data/lib/etl/core_ext/time/calculations.rb +42 -0
- data/lib/etl/engine.rb +556 -0
- data/lib/etl/execution.rb +20 -0
- data/lib/etl/execution/base.rb +9 -0
- data/lib/etl/execution/batch.rb +8 -0
- data/lib/etl/execution/job.rb +8 -0
- data/lib/etl/execution/migration.rb +85 -0
- data/lib/etl/execution/record.rb +18 -0
- data/lib/etl/generator.rb +2 -0
- data/lib/etl/generator/generator.rb +20 -0
- data/lib/etl/generator/surrogate_key_generator.rb +39 -0
- data/lib/etl/http_tools.rb +139 -0
- data/lib/etl/parser.rb +11 -0
- data/lib/etl/parser/apache_combined_log_parser.rb +49 -0
- data/lib/etl/parser/delimited_parser.rb +74 -0
- data/lib/etl/parser/fixed_width_parser.rb +65 -0
- data/lib/etl/parser/parser.rb +41 -0
- data/lib/etl/parser/sax_parser.rb +218 -0
- data/lib/etl/parser/xml_parser.rb +65 -0
- data/lib/etl/processor.rb +11 -0
- data/lib/etl/processor/block_processor.rb +14 -0
- data/lib/etl/processor/bulk_import_processor.rb +81 -0
- data/lib/etl/processor/check_exist_processor.rb +80 -0
- data/lib/etl/processor/check_unique_processor.rb +35 -0
- data/lib/etl/processor/copy_field_processor.rb +26 -0
- data/lib/etl/processor/encode_processor.rb +55 -0
- data/lib/etl/processor/hierarchy_exploder_processor.rb +55 -0
- data/lib/etl/processor/print_row_processor.rb +12 -0
- data/lib/etl/processor/processor.rb +25 -0
- data/lib/etl/processor/rename_processor.rb +24 -0
- data/lib/etl/processor/require_non_blank_processor.rb +26 -0
- data/lib/etl/processor/row_processor.rb +17 -0
- data/lib/etl/processor/sequence_processor.rb +23 -0
- data/lib/etl/processor/surrogate_key_processor.rb +53 -0
- data/lib/etl/processor/truncate_processor.rb +35 -0
- data/lib/etl/row.rb +20 -0
- data/lib/etl/screen.rb +14 -0
- data/lib/etl/screen/row_count_screen.rb +20 -0
- data/lib/etl/transform.rb +2 -0
- data/lib/etl/transform/block_transform.rb +13 -0
- data/lib/etl/transform/date_to_string_transform.rb +20 -0
- data/lib/etl/transform/decode_transform.rb +51 -0
- data/lib/etl/transform/default_transform.rb +20 -0
- data/lib/etl/transform/foreign_key_lookup_transform.rb +151 -0
- data/lib/etl/transform/hierarchy_lookup_transform.rb +49 -0
- data/lib/etl/transform/ordinalize_transform.rb +12 -0
- data/lib/etl/transform/sha1_transform.rb +13 -0
- data/lib/etl/transform/string_to_date_transform.rb +16 -0
- data/lib/etl/transform/string_to_datetime_transform.rb +14 -0
- data/lib/etl/transform/string_to_time_transform.rb +11 -0
- data/lib/etl/transform/transform.rb +61 -0
- data/lib/etl/transform/trim_transform.rb +26 -0
- data/lib/etl/transform/type_transform.rb +35 -0
- data/lib/etl/util.rb +59 -0
- data/lib/etl/version.rb +9 -0
- metadata +195 -0
data/CHANGELOG
ADDED
@@ -0,0 +1,198 @@
|
|
1
|
+
0.1.0 - Dec 6, 2006
|
2
|
+
* Initial release
|
3
|
+
|
4
|
+
0.2.0 - Dec 7, 2006
|
5
|
+
* Added an XML parser for source parsing
|
6
|
+
* Added support for compound key constraints in destinations via the
|
7
|
+
:unique => [] option
|
8
|
+
* Added ability to declare explicit columns in bulk import
|
9
|
+
* Added support for generators in destinations
|
10
|
+
* Added a SurrogateKeyGenerator for cases where the database doesn't support
|
11
|
+
auto generated surrogate keys
|
12
|
+
|
13
|
+
0.3.0 - Dec 19, 2006
|
14
|
+
* Added support for calculated values in virtual fields with Proc
|
15
|
+
|
16
|
+
0.4.0 - Jan 11, 2006
|
17
|
+
* Added :skip_lines option to file source configurations, which can be used
|
18
|
+
to skip the first n lines in the source data file
|
19
|
+
* Added better error handling in delimited parser - an error is now raised
|
20
|
+
if the expected and actual field lengths do not match
|
21
|
+
* Added :truncate option for database destination. Set to true to truncate
|
22
|
+
before importing data.
|
23
|
+
* Added support for :unique => [] option and virtual fields for the database
|
24
|
+
destination
|
25
|
+
|
26
|
+
0.5.0 - Feb 17, 2007
|
27
|
+
* Changed require_gem to gem and added alias to allow for older versions of
|
28
|
+
rubygems.
|
29
|
+
* Added support for Hash in the source configuration where :name => :parser_name
|
30
|
+
defines the parser to use and :options => {} defines options to pass to the
|
31
|
+
parser.
|
32
|
+
* Added support for passing a custom Parser class in the source configuration.
|
33
|
+
* Removed the need to include Enumerable in each parser implementation.
|
34
|
+
* Added new date_to_string and string_to_date transformers.
|
35
|
+
* Implemented foreign_key_lookup transform including an ActiveRecordResolver.
|
36
|
+
* Added real time activity logging which is called when the etl bin script is
|
37
|
+
invoked.
|
38
|
+
* Improved error handling.
|
39
|
+
* Default logger level is now WARN.
|
40
|
+
|
41
|
+
0.5.1 - Feb 18, 2007
|
42
|
+
* Fixed up truncate processor.
|
43
|
+
* Updated HOW_TO_RELEASE doc.
|
44
|
+
|
45
|
+
0.5.2 - Feb 19, 2007
|
46
|
+
* Added error threshold.
|
47
|
+
* Fixed problem with transform error handling.
|
48
|
+
|
49
|
+
0.6.0 - Mar 8, 2007
|
50
|
+
* Fixed missing method problem in validate in Control class.
|
51
|
+
* Removed control validation for now (source could be code in the control file).
|
52
|
+
* Transform interface now defined as taking 3 arguments, the field name, field
|
53
|
+
value and the row. This is not backwards compatible.
|
54
|
+
* Added HierarchyLookupTransform.
|
55
|
+
* Added DefaultTransform which will return a specified value if the initial
|
56
|
+
value is blank.
|
57
|
+
* Added row-level processing.
|
58
|
+
* Added HierarchyExploderProcessor which takes a single hierarchy row and
|
59
|
+
explodes it to multiple rows as used in a hierarchy bridge.
|
60
|
+
* Added ApacheCombinedLogParser which parses Apache Combined Log format,
|
61
|
+
including parsing of the
|
62
|
+
user agent string and the URI, returning a Hash.
|
63
|
+
* Fixed bug in SAX parser so that attributes are now set when the start_element
|
64
|
+
event is received.
|
65
|
+
* Added an HttpTools module which provides some parsing methods (for user agent
|
66
|
+
and URI).
|
67
|
+
* Database source now uses its own class for establishing an ActiveRecord
|
68
|
+
connection.
|
69
|
+
* Log files are now timestamped.
|
70
|
+
* Source files are now archived automatically during the extraction process
|
71
|
+
* Added a :condition option to the destination configuration Hash that accepts
|
72
|
+
a Proc with a single argument passed to it (the row).
|
73
|
+
* Added an :append_rows option to the destination configuration Hash that
|
74
|
+
accepts either a Hash (to append a single row) or an Array of Hashes (to
|
75
|
+
append multiple rows).
|
76
|
+
* Only print the read and written row counts if there is at least one source
|
77
|
+
and one destination respectively.
|
78
|
+
* Added a depends_on directive that accepts a list of arguments of either strings
|
79
|
+
or symbols. Each symbol is converted to a string and .ctl is appended;
|
80
|
+
strings are passed through directly. The dependencies are executed in the order
|
81
|
+
they are specified.
|
82
|
+
* The default field separator in the bulk loader is now a comma (was a tab).
|
83
|
+
|
84
|
+
0.6.1 - Mar 22, 2007
|
85
|
+
* Added support for absolute paths in file sources
|
86
|
+
* Added CopyFieldProcessor
|
87
|
+
|
88
|
+
0.7 - Apr 8, 2007
|
89
|
+
* Job execution is now tracked in a database. This means that ActiveRecord is
|
90
|
+
required regardless of the sources being used in the ETL scripts. An example
|
91
|
+
database configuration for the etl can be found in test/database.example.yml.
|
92
|
+
This file is loaded from either a.) the current working directory or b.) the
|
93
|
+
location specified using the -c command line argument when running the etl
|
94
|
+
command.
|
95
|
+
* etl script now supports the following command line arguments:
|
96
|
+
** -h or --help: Prints the usage
|
97
|
+
** -l or --limit: Specifies a limit for the number of source rows to read,
|
98
|
+
useful for testing your control files before executing a full ETL process
|
99
|
+
** -o or --offset: Specified a start offset for reading from the source, useful
|
100
|
+
for testing your control files before executing a full ETL process
|
101
|
+
** -c or --config: Specify the database.yml file to configure the ETL
|
102
|
+
execution data store
|
103
|
+
** -n or --newlog: Write to the logfile rather than appending to it
|
104
|
+
* Database source now supports specifying the select, join and order parts of
|
105
|
+
the query.
|
106
|
+
* Database source understands the limit argument specified on the etl command
|
107
|
+
line
|
108
|
+
* Added CheckExistProcessor
|
109
|
+
* Added CheckUniqueProcessor
|
110
|
+
* Added SurrogateKeyProcessor. The SurrogateKey processor should be used in
|
111
|
+
conjunction with the CheckExistProcessor and CheckUniqueProcessor to provide
|
112
|
+
surrogate keys for all dimension records.
|
113
|
+
* Added SequenceProcessor
|
114
|
+
* Added OrdinalizeTransform
|
115
|
+
* Fixed a bug in the trim transform
|
116
|
+
* Sources now provide a trigger file which can be used to indicate that the
|
117
|
+
original source data has been completely extracted to the local file system.
|
118
|
+
This is useful if you need to recover from a failed ETL process.
|
119
|
+
* Updated README
|
120
|
+
|
121
|
+
0.7.1 - Apr 8, 2007
|
122
|
+
* Fixed source caching
|
123
|
+
|
124
|
+
0.7.2 - Apr 8, 2007
|
125
|
+
* Fixed quoting bug in CheckExistProcessor
|
126
|
+
|
127
|
+
0.8.0 - Apr 12, 2007
|
128
|
+
* Source now available through the current row source accessor.
|
129
|
+
* Added new_rows_only configuration option to DatabaseSource. A date field must
|
130
|
+
be specified and only records that are greater than the date value in that
|
131
|
+
field, relative to the last successful
|
132
|
+
execution, will be returned from the source.
|
133
|
+
* Added an (untested) count feature which returns the number of rows for
|
134
|
+
processing.
|
135
|
+
* If no natural key is defined then an empty array will now be used, resulting
|
136
|
+
in the row being written to the output without going through change checks.
|
137
|
+
* Mapping argument in destination is now optional. An empty hash will be used
|
138
|
+
if the mapping hash is not specified. If the mapping hash is not specified
|
139
|
+
then the order will be determined using the originating source's order.
|
140
|
+
* ActiveRecord configurations loaded from database.yml by the etl tool will be
|
141
|
+
merged with ActiveRecord::Base.configurations.
|
142
|
+
* Fixed several bugs in how record change detection was implemented.
|
143
|
+
* Fixed how the read_locally functionality was implemented so that it will find
|
144
|
+
that last completed local source copy using the source's trigger file (untested).
|
145
|
+
|
146
|
+
0.8.1 - Apr 12, 2007
|
147
|
+
* Added EnumerableSource
|
148
|
+
* Added :type configuration option to the source directive, allowing the source
|
149
|
+
type to be explicitly specified. The source type can be a string or symbol
|
150
|
+
(in which case the class will be constructed by appending Source to the type
|
151
|
+
name), a class (which will be instantiate and passed the control,
|
152
|
+
configuration and mapping) and finally an actual Source instance.
|
153
|
+
|
154
|
+
0.8.2 - April 15, 2007
|
155
|
+
* Fixed bug with premature destination closing.
|
156
|
+
* Added indexes to execution records table.
|
157
|
+
* Added a PrintRowProcessor.
|
158
|
+
* Added support for conditions and "group by" in the database source.
|
159
|
+
* Added after_initialize hook in Processor base class.
|
160
|
+
* Added examples directory
|
161
|
+
|
162
|
+
0.8.3 - May 13, 2007
|
163
|
+
* Added patches from Andy Triboletti
|
164
|
+
|
165
|
+
0.8.4 - May 24, 2007
|
166
|
+
* Added fix for backslash in file writer
|
167
|
+
|
168
|
+
0.9.0 - August 9, 2007
|
169
|
+
* Added support for batch processing through .ebf files. These files are
|
170
|
+
essentially control files that apply settings to an entire ETL process.
|
171
|
+
* Implemented support for screen blocks. These blocks can be used to test
|
172
|
+
the data and raise an error if the screens do not pass.
|
173
|
+
* Connections are now cached in a Hash available through
|
174
|
+
ETL::Engine.connection(name). This should be used rather than including
|
175
|
+
connection information in the control files.
|
176
|
+
* Implemented temp table support throughout.
|
177
|
+
* DateDimensionBuilder now included in ActiveWarehouse ETL directly.
|
178
|
+
* Time calculations for fiscal year now included in ActiveWarehouse ETL.
|
179
|
+
|
180
|
+
0.9.1 -
|
181
|
+
* SQLResolver now uses ETL::Engine.table so it may utilize temp tables. (aeden)
|
182
|
+
* Added Thibaut Barrère's encode processor.
|
183
|
+
* Added MockSource and MockDestination test helpers (thbar)
|
184
|
+
* Added the block processor. Can call a block once (pre/post processor)
|
185
|
+
or once for each row (after_read/before_write row processor) (thbar)
|
186
|
+
* Changed temp table to use new AdapterExtension copy_table method (aeden)
|
187
|
+
* Added bin/etl.cmd windows batch - just add the bin folder to your PATH
|
188
|
+
and it will let you call etl on an unpacked/pistoned version of AW-ETL (thbar)
|
189
|
+
* Upgraded to support Rails 2.1. No longer compatible with older versions of Rails.
|
190
|
+
* Added ETL::Builder::TimeDimensionBuilder
|
191
|
+
* Added :default option to ForeignKeyLookupTransform that will be used if no
|
192
|
+
foreign key is found.
|
193
|
+
* Added :cache option to ForeignKeyLookupTransform that will preload the FK
|
194
|
+
mappings if the underlying resolver supports it. Currently supported by
|
195
|
+
SQLResolver.
|
196
|
+
* A Class extending ETL::Transform::Transform may now be passed as a transformer.
|
197
|
+
For example, in the control file you would define the transform as:
|
198
|
+
transform :a_field, MyTransform, {:option1 => 'option1'}.
|
data/LICENSE
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
Copyright (c) 2006-2007 Anthony Eden
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
4
|
+
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
6
|
+
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README
ADDED
@@ -0,0 +1,85 @@
|
|
1
|
+
Ruby Extract-Transform-Load (ETL) tool.
|
2
|
+
|
3
|
+
== Requirements
|
4
|
+
|
5
|
+
* Ruby 1.8.5 or higher
|
6
|
+
* Rubygems
|
7
|
+
|
8
|
+
== Online Documentation
|
9
|
+
|
10
|
+
Available at http://activewarehouse.rubyforge.org/docs/activewarehouse-etl.html
|
11
|
+
|
12
|
+
== Features
|
13
|
+
|
14
|
+
Current supported features:
|
15
|
+
|
16
|
+
* ETL Domain Specific Language (DSL) - Control files are specified in a Ruby-based DSL
|
17
|
+
* Multiple source types. Current supported types:
|
18
|
+
* Fixed-width and delimited text files
|
19
|
+
* XML files through SAX
|
20
|
+
* Apache combined log format
|
21
|
+
* Multiple destination types - file and database destinations
|
22
|
+
* Support for extracting from multiple sources in a single job
|
23
|
+
* Support for writing to multiple destinations in a single job
|
24
|
+
* A variety of built-in transformations are included:
|
25
|
+
* Date-to-string, string-to-date, string-to-datetime, string-to-timestamp
|
26
|
+
* Type transformation supporting strings, integers, floats and big decimals
|
27
|
+
* Trim
|
28
|
+
* SHA-1
|
29
|
+
* Decode from an external decode file
|
30
|
+
* Default replacement for empty values
|
31
|
+
* Ordinalize
|
32
|
+
* Hierarchy lookup
|
33
|
+
* Foreign key lookup
|
34
|
+
* Ruby blocks
|
35
|
+
* Any custom transformation class
|
36
|
+
* A variety of build-in row-level processors
|
37
|
+
* Check exists processor to determine if the record already exists in the destination database
|
38
|
+
* Check unique processor to determine whether a matching record was processed during this job execution
|
39
|
+
* Copy field
|
40
|
+
* Rename field
|
41
|
+
* Hierarchy exploder which takes a tree structure defined through a parent id and explodes it into a hierarchy bridge table
|
42
|
+
* Surrogate key generator including support for looking up the last surrogate key from the target table using a custom query
|
43
|
+
* Sequence generator including support for context-sensitive sequences where the context can be defined as a combination of fields from the source data
|
44
|
+
* New row-level processors can easily be defined and applied
|
45
|
+
* Pre-processing
|
46
|
+
* Truncate processor
|
47
|
+
* Post-processing
|
48
|
+
* Bulk import using native RDBMS bulk loader tools
|
49
|
+
* Virtual fields - Add a field to the destination data which doesn't exist in the source data
|
50
|
+
* Built in job and record meta data
|
51
|
+
* Support for type 1 and type 2 slowly changing dimensions
|
52
|
+
* Automated effective date and end date time stamping for type 2
|
53
|
+
* CRC checking
|
54
|
+
|
55
|
+
== Dependencies
|
56
|
+
ActiveWarehouse ETL depends on the following gems:
|
57
|
+
* ActiveSupport Gem
|
58
|
+
* ActiveRecord Gem
|
59
|
+
* FasterCSV Gem
|
60
|
+
* AdapterExtensions Gem
|
61
|
+
|
62
|
+
== Usage
|
63
|
+
Once the ActiveWarehouse ETL gem is installed jobs can be invoked using the
|
64
|
+
included `etl` script. The etl script includes several command line options
|
65
|
+
and can process multiple control files at a time.
|
66
|
+
|
67
|
+
Command line options:
|
68
|
+
* <tt>--help, -h</tt>: Display the usage message.
|
69
|
+
* <tt>--config, -c</tt>: Specify a database.yml configuration file to use.
|
70
|
+
* <tt>--limit, -l</tt>: Specify a limit to the number of rows to process. This option is currently only applicable to database sources.
|
71
|
+
* <tt>--offset, -o</tt>: Specify the start offset for reading from the source. This option is currently only applicable to database sources.
|
72
|
+
* <tt>--newlog, -n</tt>: Instruct the engine to create a new ETL log rather than append to the last ETL log.
|
73
|
+
* <tt>--skip-bulk-import, -s</tt>: Skip any bulk imports.
|
74
|
+
* <tt>--read-locally</tt>: Read from the local cache (skip source extraction)
|
75
|
+
|
76
|
+
== Control File Examples
|
77
|
+
Control file examples can be found in the examples directory.
|
78
|
+
|
79
|
+
== Running Tests
|
80
|
+
The tests require Shoulda 1.x.
|
81
|
+
|
82
|
+
== Feedback
|
83
|
+
This is a work in progress. Comments should be made on the
|
84
|
+
activewarehouse-discuss mailing list at the moment. Contributions are always
|
85
|
+
welcome.
|
data/Rakefile
ADDED
@@ -0,0 +1,153 @@
|
|
1
|
+
require 'rake'
|
2
|
+
require 'rake/testtask'
|
3
|
+
require 'rake/rdoctask'
|
4
|
+
require 'rake/packagetask'
|
5
|
+
require 'rake/gempackagetask'
|
6
|
+
require 'rake/contrib/rubyforgepublisher'
|
7
|
+
|
8
|
+
require File.join(File.dirname(__FILE__), 'lib/etl', 'version')
|
9
|
+
|
10
|
+
module AWETL
|
11
|
+
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
|
12
|
+
PKG_NAME = 'activewarehouse-etl'
|
13
|
+
PKG_VERSION = ETL::VERSION::STRING + PKG_BUILD
|
14
|
+
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
|
15
|
+
PKG_DESTINATION = ENV["PKG_DESTINATION"] || "../#{PKG_NAME}"
|
16
|
+
end
|
17
|
+
|
18
|
+
desc 'Default: run unit tests.'
|
19
|
+
task :default => :test
|
20
|
+
|
21
|
+
desc 'Test the ETL application.'
|
22
|
+
Rake::TestTask.new(:test) do |t|
|
23
|
+
t.libs << 'lib'
|
24
|
+
t.pattern = 'test/**/*_test.rb'
|
25
|
+
t.verbose = true
|
26
|
+
# TODO: reset the database
|
27
|
+
end
|
28
|
+
|
29
|
+
desc 'Generate documentation for the ETL application.'
|
30
|
+
Rake::RDocTask.new(:rdoc) do |rdoc|
|
31
|
+
rdoc.rdoc_dir = 'rdoc'
|
32
|
+
rdoc.title = 'ActiveWarehouse ETL'
|
33
|
+
rdoc.options << '--line-numbers' << '--inline-source'
|
34
|
+
rdoc.rdoc_files.include('README')
|
35
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
36
|
+
end
|
37
|
+
|
38
|
+
namespace :rcov do
|
39
|
+
desc 'Measures test coverage'
|
40
|
+
task :test do
|
41
|
+
rm_f 'coverage.data'
|
42
|
+
mkdir 'coverage' unless File.exist?('coverage')
|
43
|
+
rcov = "rcov --aggregate coverage.data --text-summary -Ilib"
|
44
|
+
system("#{rcov} test/*_test.rb")
|
45
|
+
# system("open coverage/index.html") if PLATFORM['darwin']
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
# Gem Spec
|
50
|
+
|
51
|
+
module AWETL
|
52
|
+
def self.package_files(package_prefix)
|
53
|
+
FileList[
|
54
|
+
"#{package_prefix}CHANGELOG",
|
55
|
+
"#{package_prefix}LICENSE",
|
56
|
+
"#{package_prefix}README",
|
57
|
+
"#{package_prefix}TODO",
|
58
|
+
"#{package_prefix}Rakefile",
|
59
|
+
"#{package_prefix}bin/**/*",
|
60
|
+
"#{package_prefix}doc/**/*",
|
61
|
+
"#{package_prefix}lib/**/*",
|
62
|
+
"#{package_prefix}examples/**/*",
|
63
|
+
] - [ "#{package_prefix}test" ]
|
64
|
+
end
|
65
|
+
|
66
|
+
def self.spec(package_prefix = '')
|
67
|
+
Gem::Specification.new do |s|
|
68
|
+
s.name = 'activewarehouse-etl'
|
69
|
+
s.version = AWETL::PKG_VERSION
|
70
|
+
s.summary = "Pure Ruby ETL package."
|
71
|
+
s.description = <<-EOF
|
72
|
+
ActiveWarehouse ETL is a pure Ruby Extract-Transform-Load application for loading data into a database.
|
73
|
+
EOF
|
74
|
+
|
75
|
+
s.add_dependency('rake', '>= 0.7.1')
|
76
|
+
s.add_dependency('activesupport', '>= 1.3.1')
|
77
|
+
s.add_dependency('activerecord', '>= 1.14.4')
|
78
|
+
s.add_dependency('fastercsv', '>= 1.2.0')
|
79
|
+
s.add_dependency('adapter_extensions', '>= 0.1.0')
|
80
|
+
|
81
|
+
s.rdoc_options << '--exclude' << '.'
|
82
|
+
s.has_rdoc = false
|
83
|
+
|
84
|
+
s.files = package_files(package_prefix).to_a.delete_if {|f| f.include?('.svn')}
|
85
|
+
s.require_path = 'lib'
|
86
|
+
|
87
|
+
s.bindir = "#{package_prefix}bin" # Use these for applications.
|
88
|
+
s.executables = ['etl']
|
89
|
+
s.default_executable = "etl"
|
90
|
+
|
91
|
+
s.author = "Anthony Eden"
|
92
|
+
s.email = "anthonyeden@gmail.com"
|
93
|
+
s.homepage = "http://activewarehouse.rubyforge.org/etl"
|
94
|
+
s.rubyforge_project = "activewarehouse"
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
Rake::GemPackageTask.new(AWETL.spec) do |pkg|
|
100
|
+
pkg.gem_spec = AWETL.spec
|
101
|
+
pkg.need_tar = true
|
102
|
+
pkg.need_zip = true
|
103
|
+
end
|
104
|
+
|
105
|
+
desc "Generate code statistics"
|
106
|
+
task :lines do
|
107
|
+
lines, codelines, total_lines, total_codelines = 0, 0, 0, 0
|
108
|
+
|
109
|
+
for file_name in FileList["lib/**/*.rb"]
|
110
|
+
next if file_name =~ /vendor/
|
111
|
+
f = File.open(file_name)
|
112
|
+
|
113
|
+
while line = f.gets
|
114
|
+
lines += 1
|
115
|
+
next if line =~ /^\s*$/
|
116
|
+
next if line =~ /^\s*#/
|
117
|
+
codelines += 1
|
118
|
+
end
|
119
|
+
puts "L: #{sprintf("%4d", lines)}, LOC #{sprintf("%4d", codelines)} | #{file_name}"
|
120
|
+
|
121
|
+
total_lines += lines
|
122
|
+
total_codelines += codelines
|
123
|
+
|
124
|
+
lines, codelines = 0, 0
|
125
|
+
end
|
126
|
+
|
127
|
+
puts "Total: Lines #{total_lines}, LOC #{total_codelines}"
|
128
|
+
end
|
129
|
+
|
130
|
+
desc "Publish the release files to RubyForge."
|
131
|
+
task :release => [ :package ] do
|
132
|
+
`rubyforge login`
|
133
|
+
|
134
|
+
for ext in %w( gem tgz zip )
|
135
|
+
release_command = "rubyforge add_release activewarehouse #{AWETL::PKG_NAME} 'REL #{AWETL::PKG_VERSION}' pkg/#{AWETL::PKG_NAME}-#{AWETL::PKG_VERSION}.#{ext}"
|
136
|
+
puts release_command
|
137
|
+
system(release_command)
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
141
|
+
desc "Publish the API documentation"
|
142
|
+
task :pdoc => [:rdoc] do
|
143
|
+
Rake::SshDirPublisher.new("aeden@rubyforge.org", "/var/www/gforge-projects/activewarehouse/etl/rdoc", "rdoc").upload
|
144
|
+
end
|
145
|
+
|
146
|
+
desc "Reinstall the gem from a local package copy"
|
147
|
+
task :reinstall => [:package] do
|
148
|
+
windows = RUBY_PLATFORM =~ /mswin/
|
149
|
+
sudo = windows ? '' : 'sudo'
|
150
|
+
gem = windows ? 'gem.bat' : 'gem'
|
151
|
+
`#{sudo} #{gem} uninstall #{AWETL::PKG_NAME} -x`
|
152
|
+
`#{sudo} #{gem} install pkg/#{AWETL::PKG_NAME}-#{AWETL::PKG_VERSION}`
|
153
|
+
end
|
data/TODO
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
TODO
|
2
|
+
|
3
|
+
* Add build-in support for audit_dimension
|
4
|
+
* Do not rerun the processing if it isn't needed, i.e. the source and control files have not been modified (allow forced override)
|
5
|
+
* Provide greater control in error handling
|
6
|
+
** Allow a error threshold
|
7
|
+
** Don't die completely if a parse error, just stop processing that specific file if error threshold is reached
|
8
|
+
** Allow mismatch row length error in delimited parser to be ignored
|
9
|
+
* Improve error messages throughout, but especially in problems with the control files
|
10
|
+
* Add support for paritioned views during the insert process. Use specifiable columns as the trigger columns for determining the data output destination.
|
11
|
+
* Check if a temp table exists and the last job run was successful, in which case skip during the current run
|
12
|
+
* Create models for each of the tables in each of the databases defined in ETL::Engine.connections
|
13
|
+
|
14
|
+
Audit Record
|
15
|
+
|
16
|
+
Process-Level
|
17
|
+
* Start Time
|
18
|
+
* End Time
|
19
|
+
* (Duration)
|
20
|
+
* Rows Read
|
21
|
+
* Rows Written
|
22
|
+
* Rows Rejected
|
23
|
+
* Errors
|
24
|
+
* Destination
|
25
|
+
Record-Level
|
26
|
+
* Source
|
27
|
+
* Timestamp
|
28
|
+
* Transformation Log
|