Sha256: 87b4367724b5cfac06682da7c5a0c454f03aa747c10421accde01996335ff0c0
Contents?: true
Size: 1.22 KB
Versions: 1
Compression:
Stored size: 1.22 KB
Contents
require 'chronicle/etl' module Chronicle module ETL # Abstract class representing an Extractor for an ETL job class Extractor extend Chronicle::ETL::Catalog # Construct a new instance of this extractor. Options are passed in from a Runner # == Paramters: # options:: # Options for configuring this Extractor def initialize(options = {}) @options = options.transform_keys!(&:to_sym) handle_continuation end # Entrypoint for this Extractor. Called by a Runner. Expects a series of records to be yielded def extract raise NotImplementedError end # An optional method to calculate how many records there are to extract. Used primarily for # building the progress bar def results_count; end private def handle_continuation return unless @options[:continuation] @options[:load_since] = @options[:continuation].highest_timestamp if @options[:continuation].highest_timestamp @options[:load_after_id] = @options[:continuation].last_id if @options[:continuation].last_id end end end end require_relative 'csv_extractor' require_relative 'file_extractor' require_relative 'stdin_extractor'
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
chronicle-etl-0.2.4 | lib/chronicle/etl/extractors/extractor.rb |