Sha256: 11a56002f6cfcc1819f724eefe6936b14176efa2f4ca020b94ebf8761d59347c
Contents?: true
Size: 1.19 KB
Versions: 2
Compression:
Stored size: 1.19 KB
Contents
require 'avro_turf' require 'avro_turf/confluent_schema_registry' require 'avro-resolution_canonical_form' module Avromatic module CacheableSchemaRegistration # Override register to first check if a schema is registered by fingerprint def register(subject, schema) return super unless Avromatic.use_cacheable_schema_registration begin lookup_subject_schema(subject, schema) rescue Excon::Errors::NotFound data = post("/subjects/#{subject}/versions", body: { schema: schema.to_s }.to_json) id = data.fetch('id') @logger.info("Registered schema for subject `#{subject}`; id = #{id}") id end end def lookup_subject_schema(subject, schema) schema_object = if schema.is_a?(String) Avro::Schema.parse(schema) else schema end data = get("/subjects/#{subject}/fingerprints/#{schema_object.sha256_resolution_fingerprint.to_s(16)}") id = data.fetch('id') @logger.info("Found schema for subject `#{subject}`; id = #{id}") id end end end AvroTurf::ConfluentSchemaRegistry.prepend(Avromatic::CacheableSchemaRegistration)
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
avromatic-0.20.0 | lib/avromatic/schema_registry_patch.rb |
avromatic-0.19.0 | lib/avromatic/schema_registry_patch.rb |