All Downloads are FREE. Search and download functionalities are using the official Maven repository.

json.schema.entity.services.connections.metadata.metadataESConnection.json Maven / Gradle / Ivy

There is a newer version: 1.6.1
Show newest version
{
  "$id": "https://open-metadata.org/schema/entity/services/connections/metadata/metadataESConnection.json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "MetadataESConnection",
  "description": "Metadata to ElasticSearch Connection Config",
  "type": "object",
  "javaType": "org.openmetadata.schema.services.connections.metadata.MetadataESConnection",
  "definitions": {
    "metadataESType": {
      "description": "Metadata to Elastic Search type",
      "type": "string",
      "enum": [
        "MetadataES"
      ],
      "default": "MetadataES"
    }
  },
  "properties": {
    "type": {
      "description": "Service Type",
      "$ref": "#/definitions/metadataESType",
      "default": "MetadataES"
    },
    "entities": {
      "title": "Entities",
      "description": "List of entities that you need to reindex",
      "type": "array",
      "items": {
        "type": "string"
      },
      "default": [
        "table",
        "topic",
        "dashboard",
        "pipeline",
        "mlmodel",
        "user",
        "team",
        "glossaryTerm",
        "tag",
        "entityReportData",
        "webAnalyticEntityViewReportData",
        "webAnalyticUserActivityReportData",
        "container",
        "query"
      ],
      "uniqueItems": true
    },
    "recreateIndex": {
      "title": "Recreate Indexes",
      "type": "boolean",
      "default": true
    },
    "runMode": {
      "$ref": "../../../../system/eventPublisherJob.json#/definitions/runMode"
    },
    "searchIndexMappingLanguage": {
      "description": "Recreate Indexes with updated Language",
      "$ref": "../../../../configuration/elasticSearchConfiguration.json#/definitions/searchIndexMappingLanguage"
    },
    "batchSize": {
      "title": "Batch Size",
      "description": "Maximum number of events sent in a batch (Default 100).",
      "type": "integer",
      "default": 100
    },
    "supportsMetadataExtraction": {
      "$ref": "../connectionBasicType.json#/definitions/supportsMetadataExtraction"
    }
  },
  "additionalProperties": false
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy