json.schema.entity.services.connections.database.druidConnection.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/entity/services/connections/database/druidConnection.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "DruidConnection",
"description": "Druid Connection Config",
"type": "object",
"javaType": "org.openmetadata.schema.services.connections.database.DruidConnection",
"definitions": {
"druidType": {
"description": "Service type.",
"type": "string",
"enum": ["Druid"],
"default": "Druid"
},
"druidScheme": {
"description": "SQLAlchemy driver scheme options.",
"type": "string",
"enum": ["druid"],
"default": "druid"
}
},
"properties": {
"type": {
"title": "Service Type",
"description": "Service Type",
"$ref": "#/definitions/druidType",
"default": "Druid"
},
"scheme": {
"title": "Connection Scheme",
"description": "SQLAlchemy driver scheme options.",
"$ref": "#/definitions/druidScheme",
"default": "druid"
},
"username": {
"title": "Username",
"description": "Username to connect to Druid. This user should have privileges to read all the metadata in Druid.",
"type": "string"
},
"password": {
"title": "Password",
"description": "Password to connect to Druid.",
"type": "string",
"format": "password"
},
"hostPort": {
"title": "Host and Port",
"description": "Host and port of the Druid service.",
"type": "string"
},
"databaseName": {
"title": "Database Name",
"description": "Optional name to give to the database in OpenMetadata. If left blank, we will use default as the database name.",
"type": "string"
},
"connectionOptions": {
"title": "Connection Options",
"$ref": "../connectionBasicType.json#/definitions/connectionOptions"
},
"connectionArguments": {
"title": "Connection Arguments",
"$ref": "../connectionBasicType.json#/definitions/connectionArguments"
},
"supportsMetadataExtraction": {
"title": "Supports Metadata Extraction",
"$ref": "../connectionBasicType.json#/definitions/supportsMetadataExtraction"
},
"supportsProfiler": {
"title": "Supports Profiler",
"$ref": "../connectionBasicType.json#/definitions/supportsProfiler"
},
"supportsQueryComment": {
"title": "Supports Query Comment",
"$ref": "../connectionBasicType.json#/definitions/supportsQueryComment"
},
"supportsDBTExtraction": {
"$ref": "../connectionBasicType.json#/definitions/supportsDBTExtraction"
},
"sampleDataStorageConfig": {
"title": "Storage Config for Sample Data",
"$ref": "../connectionBasicType.json#/definitions/sampleDataStorageConfig"
},
"supportsViewLineageExtraction": {
"$ref": "../connectionBasicType.json#/definitions/supportsViewLineageExtraction"
}
},
"additionalProperties": false,
"required": ["hostPort"]
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy