Class: Fluent::BigQueryOutput::FieldSchema
- Inherits:
-
Object
- Object
- Fluent::BigQueryOutput::FieldSchema
- Defined in:
- lib/fluent/plugin/out_bigquery.rb
Direct Known Subclasses
BooleanFieldSchema, FloatFieldSchema, IntegerFieldSchema, RecordSchema, StringFieldSchema, TimestampFieldSchema
Instance Attribute Summary collapse
-
#mode ⇒ Object
readonly
Returns the value of attribute mode.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
- #format(value) ⇒ Object
- #format_one(value) ⇒ Object
-
#initialize(name, mode = :nullable) ⇒ FieldSchema
constructor
A new instance of FieldSchema.
- #to_h ⇒ Object
Constructor Details
#initialize(name, mode = :nullable) ⇒ FieldSchema
559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 |
# File 'lib/fluent/plugin/out_bigquery.rb', line 559 def initialize(name, mode = :nullable) unless [:nullable, :required, :repeated].include?(mode) raise ConfigError, "Unrecognized mode for #{name}: #{mode}" end ### https://developers.google.com/bigquery/docs/tables # Each field has the following properties: # # name - The name must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_), # and must start with a letter or underscore. The maximum length is 128 characters. # https://cloud.google.com/bigquery/docs/reference/v2/tables#schema.fields.name unless name =~ /^[_A-Za-z][_A-Za-z0-9]{,127}$/ raise Fluent::ConfigError, "invalid bigquery field name: '#{name}'" end @name = name @mode = mode end |
Instance Attribute Details
#mode ⇒ Object (readonly)
Returns the value of attribute mode.
577 578 579 |
# File 'lib/fluent/plugin/out_bigquery.rb', line 577 def mode @mode end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
577 578 579 |
# File 'lib/fluent/plugin/out_bigquery.rb', line 577 def name @name end |
Instance Method Details
#format(value) ⇒ Object
579 580 581 582 583 584 585 586 587 588 589 |
# File 'lib/fluent/plugin/out_bigquery.rb', line 579 def format(value) case @mode when :nullable format_one(value) unless value.nil? when :required raise "Required field #{name} cannot be null" if value.nil? format_one(value) when :repeated value.nil? ? [] : value.map {|v| format_one(v) } end end |
#format_one(value) ⇒ Object
591 592 593 |
# File 'lib/fluent/plugin/out_bigquery.rb', line 591 def format_one(value) raise NotImplementedError, "Must implement in a subclass" end |
#to_h ⇒ Object
595 596 597 598 599 600 601 |
# File 'lib/fluent/plugin/out_bigquery.rb', line 595 def to_h { :name => name, :type => type.to_s.upcase, :mode => mode.to_s.upcase, } end |