You are browsing a read-only backup copy of Wikitech. The live site can be found at wikitech.wikimedia.org

Event Platform/Schemas/Guidelines: Difference between revisions

From Wikitech-static
Jump to navigation Jump to search
imported>Ottomata
imported>Ottomata
(→‎Common Mediawiki event fields: linked to schema.wikimedia.org)
Line 12: Line 12:


; <tt>meta.dt</tt> : Event date timestamp of the event, in ISO-8601 format.  This is the 'event time'.  This field will be used as the Kafka message timestamp and for Hive table time based partitioning.
; <tt>meta.dt</tt> : Event date timestamp of the event, in ISO-8601 format.  This is the 'event time'.  This field will be used as the Kafka message timestamp and for Hive table time based partitioning.
; <tt>meta.id</tt> : UUID of this event.  This field is used for deduplication, so every event (and especially every event in the same stream) needs a unique id.


=== No union types ===
=== No union types ===
Line 136: Line 134:
Your schema does not need to set all of these fields in the <tt>http</tt> object,  e.g. if you don't need <tt>http.response_headers</tt>, then leave it out.
Your schema does not need to set all of these fields in the <tt>http</tt> object,  e.g. if you don't need <tt>http.response_headers</tt>, then leave it out.
While this convention does have a convenient place to store common request headers like 'User-Agent' and 'Content-Type', you are not required to do so. If it is more useful for you to have a top level <tt>user_agent</tt> field, feel free to do so.
While this convention does have a convenient place to store common request headers like 'User-Agent' and 'Content-Type', you are not required to do so. If it is more useful for you to have a top level <tt>user_agent</tt> field, feel free to do so.
There is a [https://schema.wikimedia.org/#!//primary/jsonschema/fragment/http fragment http schema] you may <tt>$ref</tt> to include this in your schema if you don't mind having all of these fields defined.


(See [https://phabricator.wikimedia.org/T214093#4918832 this discussion] for more context.)
(See [https://phabricator.wikimedia.org/T214093#4918832 this discussion] for more context.)


=== Common Mediawiki event fields ===
=== Common Mediawiki event fields ===
In the mediawiki/event-schemas repository, we have several common subschemas for Mediawiki related entity (page, revision, etc.) events.
In the [https://schema.wikimedia.org/#!/primary/jsonschema schemas/event/primary] repository, there are several [https://schema.wikimedia.org/#!//primary/jsonschema/fragment fragment] subschemas for Mediawiki related entity (page, revision, etc.) events.


==== [https://github.com/wikimedia/mediawiki-event-schemas/blob/master/jsonschema/mediawiki/common/current.yaml mediawiki/common] ====
==== [https://schema.wikimedia.org/#!//primary/jsonschema/fragment/mediawiki/common mediawiki/common] ====
; <tt>database</tt> : Mediawiki database name, e.g. enwiki, dewiki, etc.
; <tt>database</tt> : Mediawiki database name, e.g. enwiki, dewiki, etc.
; <tt>perfomer</tt> : Information about the user that triggered the event
; <tt>perfomer</tt> : Information about the user that triggered the event


==== [https://github.com/wikimedia/mediawiki-event-schemas/blob/master/jsonschema/mediawiki/page/common/current.yaml mediawiki/page/common] ====
==== [https://schema.wikimedia.org/#!/primary/jsonschema/fragment/mediawiki/page/common mediawiki/page/common] ====
Includes all of mediawiki/common and
Includes all of mediawiki/common and


Line 155: Line 155:
; <tt>rev_id</tt> : The head revision of a page at the time of the page event
; <tt>rev_id</tt> : The head revision of a page at the time of the page event


==== [https://github.com/wikimedia/mediawiki-event-schemas/blob/master/jsonschema/mediawiki/revision/common/current.yaml mediawiki/revision/common] ====
==== [https://schema.wikimedia.org/#!/primary/jsonschema/fragment/mediawiki/revision/common mediawiki/revision/common] ====
Includes all of mediawiki/common and  
Includes all of mediawiki/common and  
; <tt>page_id</tt> : page_id the revision belongs to
; <tt>page_id</tt> : page_id the revision belongs to

Revision as of 13:33, 16 March 2020

This page intends to document conventions, guidelines and rules for designing and evolving Event Schemas.

Rules

Required fields

All event schemas must have the following fields.

$schema
A URI identifying the JSONSchema for this event. This should match an event schema $id in a schema repository. E.g. /schema_name/1.0.0
meta
Event meta data sub-object. This field contains common meta data fields for an event.
meta.stream
Name of the stream/queue that this event belongs in. This is used for routing incoming events to specific streams and downstream 'datasets'. This will likely correspond with a Kafka topic and a Hive table.
meta.dt
Event date timestamp of the event, in ISO-8601 format. This is the 'event time'. This field will be used as the Kafka message timestamp and for Hive table time based partitioning.

No union types

Union types are not allowed. E.g. type: [string, integer] and type: [string, null] are not allowed. This means that null JSON values in data are not useful, as to set a field to null, it's type would have to be exactly type: "null", which means that all values are null. See the Optional Fields Guidelines documentation below. See also https://json-schema.org/understanding-json-schema/reference/null.html.

No object additionalProperties

The full structure of your data must be known ahead of time. The exception to this is map type fields (see below), since maps fully specify the data types of keys and values.

arrays

Arrays must specify their items type.

array_field:
  type: array
  items:
    type: string

Backwards compatible modifications only

This basically means that the only allowed schema modification is to add new optional fields.

No type changes

Type changes are the worst kind of backwards incompatible change. They can severely break downstream data consumers.

Do not remove fields

Field removals may cause downstream components to break. While field removals may be possible if they are done carefully, the best practice is just not to do them.

Do not rename fields

Renaming a field is the same as removing a field and adding a new one, and removing fields is not allowed.

Conventions

No Capital letters - Use snake_case

All field names should be in snake_case and should be all lower case. Event fields are often imported into case-insensitive RDBMS SQL systems. Mixing captial and lower case letters in e.g. Hive or MySQL table and field names can be confusing and cause issues in systems and code that access those SQL systems.

Optional / Missing fields

As long as a field is not in the list of required fields, it is 'optional'. There may be times when you don't want to set a field's value. To do so, just leave the field out of the event data when you send it. In downstream SQL systems (i.e. Hive), missing fields will be set to NULL during ingestion.

datetimes / timestamps

All date time / timestamps should be serialized in JSON data as ISO-8601 datetime strings, ideally in UTC time, suffixed with the 'Z' (Zero) timezone qualifier. E.g. 2015-12-20T09:10:56Z.

Datetime fields should be named suffixed with '_dt'.

session_start_dt:
  type: string
  format: date-time
  maxLength: 128

Note the maxLength: 128. This is a security constraint that limits the amount of work a JSONSchema validator has to do in order to validate a format (all fields that use format or pattern will need to specify maxLength.

There may be cases where sending an integer unix epoch timestamp instead of an ISO-8601 string is required. In this case the field type should be integer, the timestamp should be sent as integer milliseconds, and the field name should be suffixed with '_ts_ms'. If you must send seconds instead of milliseconds, then you should suffix your field name with '_ts_s'.

session_start_ts_ms:
  type: integer
  description: Unix epoch in milliseconds

Elapsed time fields

If possible, time duration fields should be sent as integer milliseconds. Please suffix these fields with the time unit, e.g. '_ms', '_ns', '_s', etc.

page_preview_visible_time_ms:
  type: integer
  description: Time the page preview popup was shown to the user


map types

There may be times when you don't know all field names ahead of time. Since neither union types or arbitrary object (AKA structs) are supported, you'll want to use a 'map type'. JSON serialization does not differentiate between a 'map' and an 'object', but downstream systems need to know the difference. A map type in JSONSchema can be represented by an object with additionalProperties allowed, but for which all properties have the same type.

map_field:
  type: object
  additionalProperties:
    type: string

Frequently used fields

This section documents some fields that may appear in many different schemas. These fields may DRYed up into a $ref-able subschemas, and/or they may be moved into a 'Data Dictionary'.

http information

Events are often associated with a HTTP request/response. It can be useful for the event to record some information about the HTTP session. If you need to do this, for consistency we suggest the following:

http:
  type: object
  properties:

    uri:
      type: string
      description: The full URI of this HTTP request
    
    method:
      type: string
      description: The HTTP request method (GET, POST, etc.)

    client_ip:
      type: string
      description: The http client's IP address

    request_headers:
      type: object
      description: Request headers sent by the client.
      additionalProperties:
        type: string

    response_headers:
      type: object
      description: Response headers sent by the server.
      additionalProperties:
        type: string

    has_cookies:
      type: boolean
      description: True if the http request has any cookies set

Your schema does not need to set all of these fields in the http object, e.g. if you don't need http.response_headers, then leave it out. While this convention does have a convenient place to store common request headers like 'User-Agent' and 'Content-Type', you are not required to do so. If it is more useful for you to have a top level user_agent field, feel free to do so.

There is a fragment http schema you may $ref to include this in your schema if you don't mind having all of these fields defined.

(See this discussion for more context.)

Common Mediawiki event fields

In the schemas/event/primary repository, there are several fragment subschemas for Mediawiki related entity (page, revision, etc.) events.

mediawiki/common

database
Mediawiki database name, e.g. enwiki, dewiki, etc.
perfomer
Information about the user that triggered the event

mediawiki/page/common

Includes all of mediawiki/common and

page_id
(database) id of page
page_title
textual page title
page_namespace
wiki namespace
page_is_redirect
boolean if the head revision of the page is a redirect
rev_id
The head revision of a page at the time of the page event

mediawiki/revision/common

Includes all of mediawiki/common and

page_id
page_id the revision belongs to
page_title
page_title the revision belongs to
page_namespace
namespace of page the revision belongs to
page_is_redirect
boolean if this revision is a redirect
rev_id
(database) rev_id
rev_parent_id
revision id of this revision's parent
rev_timestamp
revision create time in ISO-8601 format. This does not end in '_dt' to better match the naming convention in the Mediawiki database.