Module: ElasticGraph::SchemaDefinition::Indexing::EventEnvelope Private
- Defined in:
- elasticgraph-schema_definition/lib/elastic_graph/schema_definition/indexing/event_envelope.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Contains logic related to “event envelope”–the layer of metadata that wraps all indexing events.
Class Method Summary collapse
-
.json_schema(indexed_type_names, json_schema_version) ⇒ Hash<String, Object>
private
The JSON schema for the ElasticGraph event envelope for the given
indexed_type_names
.
Class Method Details
.json_schema(indexed_type_names, json_schema_version) ⇒ Hash<String, Object>
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns the JSON schema for the ElasticGraph event envelope for the given indexed_type_names
.
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'elasticgraph-schema_definition/lib/elastic_graph/schema_definition/indexing/event_envelope.rb', line 21 def self.json_schema(indexed_type_names, json_schema_version) { "type" => "object", "description" => "Required by ElasticGraph to wrap every data event.", "properties" => { "op" => { "description" => "Indicates what type of operation the event represents. For now, only `upsert` is supported, but we plan to support other operations in the future.", "type" => "string", "enum" => %w[upsert] }, "type" => { "description" => "The type of object present in `record`.", "type" => "string", # Sorting doesn't really matter here, but it's nice for the output in the schema artifact to be consistent. "enum" => indexed_type_names.sort }, "id" => { "description" => "The unique identifier of the record.", "type" => "string", "maxLength" => DEFAULT_MAX_KEYWORD_LENGTH }, "version" => { "description" => 'Used to handle duplicate and out-of-order events. When ElasticGraph ingests multiple events for the same `type` and `id`, the one with the largest `version` will "win".', "type" => "integer", "minimum" => 0, "maximum" => (2**63) - 1 }, "record" => { "description" => "The record of this event. The payload of this field must match the JSON schema of the named `type`.", "type" => "object" }, "latency_timestamps" => { "description" => "Timestamps from which ElasticGraph measures indexing latency. The `ElasticGraphIndexingLatencies` log message produced for each event will include a measurement from each timestamp included in this map.", "type" => "object", "additionalProperties" => false, "patternProperties" => { "description" => "A timestamp from which ElasticGraph will measure indexing latency. The timestamp name must end in `_at`.", "^\\w+_at$" => {"type" => "string", "format" => "date-time"} } }, JSON_SCHEMA_VERSION_KEY => { "description" => "The version of the JSON schema the publisher was using when the event was published. ElasticGraph will use the JSON schema matching this version to process the event.", "const" => json_schema_version }, "message_id" => { "description" => "The optional ID of the message containing this event from whatever messaging system is being used between the publisher and the ElasticGraph indexer.", "type" => "string" } }, "additionalProperties" => false, "required" => ["op", "type", "id", "version", JSON_SCHEMA_VERSION_KEY], "if" => { "properties" => { "op" => {"const" => "upsert"} } }, "then" => {"required" => ["record"]} } end |