Class: Fluent::BigQueryOutput::RecordSchema

Inherits:
FieldSchema
  • Object
show all
Defined in:
lib/fluent/plugin/out_bigquery.rb

Constant Summary collapse

FIELD_TYPES =
{
  string: StringFieldSchema,
  integer: IntegerFieldSchema,
  float: FloatFieldSchema,
  boolean: BooleanFieldSchema,
  timestamp: TimestampFieldSchema,
  record: RecordSchema
}.freeze

Instance Attribute Summary

Attributes inherited from FieldSchema

#mode, #name

Instance Method Summary collapse

Methods inherited from FieldSchema

#format

Constructor Details

#initialize(name, mode = :nullable) ⇒ RecordSchema

Returns a new instance of RecordSchema.



664
665
666
667
# File 'lib/fluent/plugin/out_bigquery.rb', line 664

def initialize(name, mode = :nullable)
  super(name, mode)
  @fields = {}
end

Instance Method Details

#[](name) ⇒ Object



673
674
675
# File 'lib/fluent/plugin/out_bigquery.rb', line 673

def [](name)
  @fields[name]
end

#format_one(record) ⇒ Object



730
731
732
733
734
735
736
737
738
739
# File 'lib/fluent/plugin/out_bigquery.rb', line 730

def format_one(record)
  out = {}
  @fields.each do |key, schema|
    value = record[key]
    formatted = schema.format(value)
    next if formatted.nil? # field does not exists, or null value
    out[key] = formatted
  end
  out
end

#load_schema(schema, allow_overwrite = true) ⇒ Object



692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
# File 'lib/fluent/plugin/out_bigquery.rb', line 692

def load_schema(schema, allow_overwrite=true)
  schema.each do |field|
    raise ConfigError, 'field must have type' unless field.key?('type')

    name = field['name']
    mode = (field['mode'] || 'nullable').downcase.to_sym

    type = field['type'].downcase.to_sym
    field_schema_class = FIELD_TYPES[type]
    raise ConfigError, "Invalid field type: #{field['type']}" unless field_schema_class

    next if @fields.key?(name) and !allow_overwrite

    field_schema = field_schema_class.new(name, mode)
    @fields[name] = field_schema
    if type == :record
      raise ConfigError, "record field must have fields" unless field.key?('fields')
      field_schema.load_schema(field['fields'], allow_overwrite)
    end
  end
end

#register_field(name, type) ⇒ Object



714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
# File 'lib/fluent/plugin/out_bigquery.rb', line 714

def register_field(name, type)
  if @fields.key?(name) and @fields[name].type != :timestamp
    raise ConfigError, "field #{name} is registered twice"
  end
  if name[/\./]
    recordname = $`
    fieldname = $'
    register_record_field(recordname)
    @fields[recordname].register_field(fieldname, type)
  else
    schema = FIELD_TYPES[type]
    raise ConfigError, "[Bug] Invalid field type #{type}" unless schema
    @fields[name] = schema.new(name)
  end
end

#to_aObject



677
678
679
680
681
# File 'lib/fluent/plugin/out_bigquery.rb', line 677

def to_a
  @fields.map do |_, field_schema|
    field_schema.to_h
  end
end

#to_hObject



683
684
685
686
687
688
689
690
# File 'lib/fluent/plugin/out_bigquery.rb', line 683

def to_h
  {
    :name => name,
    :type => type.to_s.upcase,
    :mode => mode.to_s.upcase,
    :fields => self.to_a,
  }
end

#typeObject



669
670
671
# File 'lib/fluent/plugin/out_bigquery.rb', line 669

def type
  :record
end