Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update configuration files to use new placeholder variables delimiter #51

Merged
merged 1 commit into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Content-Type: text/plain
A metadata store that supports Open Metadata Access Services (OMASs) without event notifications.

###
# Set up the local repository-old to use the in-memory implementation.
# Set up the local repository to use the in-memory implementation.
POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/simple-metadata-store/local-repository/mode/in-memory-repository

###
Expand Down Expand Up @@ -51,30 +51,62 @@ Content-Type: text/plain
A metadata store that supports Open Metadata Access Services (OMASs) with event notifications. It provides metadata to view-server, engine-host and integration-daemon.

###
# Set up the local repository-old to use the XTDB KV implementation.
# Set up the local repository to use the XTDB KV implementation.
POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/active-metadata-store/local-repository/mode/xtdb-local-kv-repository

###
# Set up the common properties needed to call your event bus. The value of {{kafkaEndpoint}} is resolved in the
# @name Enable the PostgreSQL Repository
# Set up the local repository to use the PostgreSQL Repository implementation.
POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/active-metadata-store/local-repository/mode/postgres-repository
Content-Type: application/json

{
"databaseURL": "~{postgreSQLDatabaseURL}~?currentSchema=repository_active_metadata_store",
"databaseSchema": "repository_active_metadata_store",
"secretsStore": "~{secretsStore}~",
"secretsCollectionName": "~{postgreSQLServerCollectionName}~"
}

###

@activeMetadataStoreMetadataCollectionId=61400a70-8c49-4635-b221-a8b11872ae16

###
# group: Configuring OMAG Servers / Configuration for Cohort Members / Configuration for Metadata Access Points / Configuration for Metadata Servers
# @name Set local metadata collection id
# Set up a human friendly name for the collection of metadata that originates from this metadata server. This name is used in events and messages to help people diagnose problems in the cohort.
POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/active-metadata-store/local-repository/metadata-collection-id
Content-Type: text/plain

{{activeMetadataStoreMetadataCollectionId}}


###
# Set up the common properties needed to call your event bus. The value of ~{kafkaEndpoint}~ is resolved in the
# application.properties file using the `platform.placeholder.variables` property.
POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/active-metadata-store/event-bus
Content-Type: application/json

{
"producer":
{
"bootstrap.servers":"{{kafkaEndpoint}}"
"bootstrap.servers":"~{kafkaEndpoint}~"
},
"consumer":
{
"bootstrap.servers":"{{kafkaEndpoint}}"
"bootstrap.servers":"~{kafkaEndpoint}~"
}
}


###
# Set up all of the registered, undeprecated Open Metadata Access Services (OMASs) with kafka notifications enabled.
POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/active-metadata-store/access-services
Content-Type: application/json

{
"KarmaPointIncrement" : "1"
}

###
# Add the file name for an open Metadata Archive that should be loaded each time the server starts.
Expand Down Expand Up @@ -108,7 +140,7 @@ Content-Type: application/json
{
"class": "ViewServiceRequestBody",
"omagserverName": "active-metadata-store",
"omagserverPlatformRootURL": "{{egeriaEndpoint}}"
"omagserverPlatformRootURL": "~{egeriaEndpoint}~"
}

###
Expand All @@ -135,18 +167,6 @@ Content-Type: application/json
{
"class": "EngineHostServicesConfig",
"engineList": [
{
"class": "EngineConfig",
"engineId": "4fe58760-ec4c-4f23-89c2-f7ae979e0e8b",
"engineQualifiedName": "AssetSurveys",
"engineUserId": "generalnpa"
},
{
"class": "EngineConfig",
"engineId": "a80b17a8-ce6f-4cbc-b8bc-ff71b594f175",
"engineQualifiedName": "FileProvisioning",
"engineUserId": "generalnpa"
},
{
"class": "EngineConfig",
"engineId": "6a86651a-c9c1-4aee-8a83-4c028d89f775",
Expand Down Expand Up @@ -194,9 +214,45 @@ Content-Type: application/json
"engineId": "4a8f28dc-5257-49e3-bfab-6605d83537dd",
"engineQualifiedName": "PostgreSQLGovernanceServices",
"engineUserId": "generalnpa"
},
{
"class": "EngineConfig",
"engineId": "9b7a1da6-7882-41c7-b838-0e297787972f",
"engineQualifiedName": "ApacheAtlasSurveys",
"engineUserId": "generalnpa"
},
{
"class": "EngineConfig",
"engineId": "f5c3b142-0e10-44ae-a160-a1e4d2f32e13",
"engineQualifiedName": "ApacheAtlasGovernanceServices",
"engineUserId": "generalnpa"
},
{
"class": "EngineConfig",
"engineId": "6e04ff1b-1ba3-4eaf-a821-0d52951cc3c4",
"engineQualifiedName": "EgeriaSurveys",
"engineUserId": "generalnpa"
},
{
"class": "EngineConfig",
"engineId": "d1d36d25-1176-4cd7-a46c-4dcc62990047",
"engineQualifiedName": "EgeriaGovernanceServices",
"engineUserId": "generalnpa"
},
{
"class": "EngineConfig",
"engineId": "5f30c642-ceb4-4374-901f-1990572aa109",
"engineQualifiedName": "ApacheKafkaSurveys",
"engineUserId": "generalnpa"
},
{
"class": "EngineConfig",
"engineId": "e107c6ea-7fbe-407b-b51f-e35a488ef49d",
"engineQualifiedName": "ApacheKafkaGovernanceServices",
"engineUserId": "generalnpa"
}
],
"omagserverPlatformRootURL": "{{egeriaEndpoint}}",
"omagserverPlatformRootURL": "~{egeriaEndpoint}~",
"omagserverName": "active-metadata-store"
}

Expand All @@ -218,14 +274,52 @@ A server that runs integration connectors that synchronize and exchange metadata
###
# Set up the qualified name of the integration group that this server supports and the location of the
# metadata access store active-metadata-store
POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/integration-daemon/integration-groups/configuration
POST {{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/integration-daemon/integration-groups/configuration/all
Content-Type: application/json

{
"class": "IntegrationGroupConfig",
"omagserverPlatformRootURL": "{{egeriaEndpoint}}",
"omagserverName" : "active-metadata-store",
"integrationGroupQualifiedName" : "Egeria:IntegrationGroup:DefaultIntegrationGroup"
}
[
{
"class": "IntegrationGroupConfig",
"omagserverPlatformRootURL": "~{egeriaEndpoint}~",
"omagserverName" : "active-metadata-store",
"integrationGroupQualifiedName" : "Egeria:IntegrationGroup:Default"
},
{
"class": "IntegrationGroupConfig",
"omagserverPlatformRootURL": "~{egeriaEndpoint}~",
"omagserverName" : "active-metadata-store",
"integrationGroupQualifiedName" : "Egeria:IntegrationGroup:ApacheAtlas"
},
{
"class": "IntegrationGroupConfig",
"omagserverPlatformRootURL": "~{egeriaEndpoint}~",
"omagserverName" : "active-metadata-store",
"integrationGroupQualifiedName" : "Egeria:IntegrationGroup:ApacheKafka"
},
{
"class": "IntegrationGroupConfig",
"omagserverPlatformRootURL": "~{egeriaEndpoint}~",
"omagserverName" : "active-metadata-store",
"integrationGroupQualifiedName" : "Egeria:IntegrationGroup:OpenAPIs"
},
{
"class": "IntegrationGroupConfig",
"omagserverPlatformRootURL": "~{egeriaEndpoint}~",
"omagserverName" : "active-metadata-store",
"integrationGroupQualifiedName" : "Egeria:IntegrationGroup:OpenMetadataObservability"
},
{
"class": "IntegrationGroupConfig",
"omagserverPlatformRootURL": "~{egeriaEndpoint}~",
"omagserverName" : "active-metadata-store",
"integrationGroupQualifiedName" : "Egeria:IntegrationGroup:PostgreSQL"
},
{
"class": "IntegrationGroupConfig",
"omagserverPlatformRootURL": "~{egeriaEndpoint}~",
"omagserverName" : "active-metadata-store",
"integrationGroupQualifiedName" : "Egeria:IntegrationGroup:UnityCatalog"
}
]

###

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"class":"OMAGServerConfig","versionId":"V2.0","localServerId":"6e4f4ba4-cda8-4001-abdf-78a8c5fa13bb","localServerName":"engine-host","localServerDescription":"A server that runs governance service requests, triggered by engine actions created in active-metadata-store.","localServerURL":"{{egeriaEndpoint}}","localServerUserId":"enginenpa","maxPageSize":1000,"repositoryServicesConfig":{"class":"RepositoryServicesConfig","auditLogConnections":[{"class":"Connection","headerVersion":0,"qualifiedName":"Console- default","displayName":"Console","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.auditlogstore.console.ConsoleAuditLogStoreProvider"},"configurationProperties":{"supportedSeverities":["Unknown","Information","Decision","Action","Error","Exception","Security","Startup","Shutdown","Asset","Cohort"]}}]},"engineHostServicesConfig":{"class":"EngineHostServicesConfig","engineList":[{"class":"EngineConfig","engineId":"6a86651a-c9c1-4aee-8a83-4c028d89f775","engineQualifiedName":"AssetOnboarding","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"947248ee-a6eb-4f99-8376-7ff488b6281e","engineQualifiedName":"Stewardship","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"d91b91c2-e019-4eca-870d-d88f7caae696","engineQualifiedName":"FileSurveys","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"8be68bbe-54ac-4358-aeb9-90782d4e544c","engineQualifiedName":"FileGovernanceServices","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"f71a3abb-6d61-4338-8caf-6124a07e35d2","engineQualifiedName":"UnityCatalogSurveys","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"d4d86ff2-0654-4616-a5f2-3c15c07865b6","engineQualifiedName":"UnityCatalogGovernanceServices","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"c0cf5da9-7725-4bdc-ae6e-6f69b4ce3ba2","engineQualifiedName":"PostgreSQLSurveys","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"4a8f28dc-5257-49e3-bfab-6605d83537dd","engineQualifiedName":"PostgreSQLGovernanceServices","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"9b7a1da6-7882-41c7-b838-0e297787972f","engineQualifiedName":"ApacheAtlasSurveys","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"f5c3b142-0e10-44ae-a160-a1e4d2f32e13","engineQualifiedName":"ApacheAtlasGovernanceServices","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"6e04ff1b-1ba3-4eaf-a821-0d52951cc3c4","engineQualifiedName":"EgeriaSurveys","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"d1d36d25-1176-4cd7-a46c-4dcc62990047","engineQualifiedName":"EgeriaGovernanceServices","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"5f30c642-ceb4-4374-901f-1990572aa109","engineQualifiedName":"ApacheKafkaSurveys","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"e107c6ea-7fbe-407b-b51f-e35a488ef49d","engineQualifiedName":"ApacheKafkaGovernanceServices","engineUserId":"generalnpa"}],"omagserverPlatformRootURL":"{{egeriaEndpoint}}","omagserverName":"active-metadata-store"},"auditTrail":["Wed Sep 25 09:34:48 BST 2024 garygeeke updated configuration for local server's userId to enginenpa.","Wed Sep 25 09:34:51 BST 2024 garygeeke updated configuration for local server's description to A server that runs governance service requests, triggered by engine actions created in active-metadata-store.."]}
{"class":"OMAGServerConfig","versionId":"V2.0","localServerId":"6e4f4ba4-cda8-4001-abdf-78a8c5fa13bb","localServerName":"engine-host","localServerDescription":"A server that runs governance service requests, triggered by engine actions created in active-metadata-store.","localServerURL":"~{egeriaEndpoint}~","localServerUserId":"enginenpa","maxPageSize":1000,"repositoryServicesConfig":{"class":"RepositoryServicesConfig","auditLogConnections":[{"class":"Connection","headerVersion":0,"qualifiedName":"Console- default","displayName":"Console","connectorType":{"class":"ConnectorType","headerVersion":0,"connectorProviderClassName":"org.odpi.openmetadata.adapters.repositoryservices.auditlogstore.console.ConsoleAuditLogStoreProvider"},"configurationProperties":{"supportedSeverities":["Unknown","Information","Decision","Action","Error","Exception","Security","Startup","Shutdown","Asset","Cohort"]}}]},"engineHostServicesConfig":{"class":"EngineHostServicesConfig","engineList":[{"class":"EngineConfig","engineId":"6a86651a-c9c1-4aee-8a83-4c028d89f775","engineQualifiedName":"AssetOnboarding","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"947248ee-a6eb-4f99-8376-7ff488b6281e","engineQualifiedName":"Stewardship","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"d91b91c2-e019-4eca-870d-d88f7caae696","engineQualifiedName":"FileSurveys","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"8be68bbe-54ac-4358-aeb9-90782d4e544c","engineQualifiedName":"FileGovernanceServices","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"f71a3abb-6d61-4338-8caf-6124a07e35d2","engineQualifiedName":"UnityCatalogSurveys","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"d4d86ff2-0654-4616-a5f2-3c15c07865b6","engineQualifiedName":"UnityCatalogGovernanceServices","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"c0cf5da9-7725-4bdc-ae6e-6f69b4ce3ba2","engineQualifiedName":"PostgreSQLSurveys","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"4a8f28dc-5257-49e3-bfab-6605d83537dd","engineQualifiedName":"PostgreSQLGovernanceServices","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"9b7a1da6-7882-41c7-b838-0e297787972f","engineQualifiedName":"ApacheAtlasSurveys","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"f5c3b142-0e10-44ae-a160-a1e4d2f32e13","engineQualifiedName":"ApacheAtlasGovernanceServices","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"6e04ff1b-1ba3-4eaf-a821-0d52951cc3c4","engineQualifiedName":"EgeriaSurveys","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"d1d36d25-1176-4cd7-a46c-4dcc62990047","engineQualifiedName":"EgeriaGovernanceServices","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"5f30c642-ceb4-4374-901f-1990572aa109","engineQualifiedName":"ApacheKafkaSurveys","engineUserId":"generalnpa"},{"class":"EngineConfig","engineId":"e107c6ea-7fbe-407b-b51f-e35a488ef49d","engineQualifiedName":"ApacheKafkaGovernanceServices","engineUserId":"generalnpa"}],"omagserverPlatformRootURL":"~{egeriaEndpoint}~","omagserverName":"active-metadata-store"},"auditTrail":["Wed Sep 25 09:34:48 BST 2024 garygeeke updated configuration for local server's userId to enginenpa.","Wed Sep 25 09:34:51 BST 2024 garygeeke updated configuration for local server's description to A server that runs governance service requests, triggered by engine actions created in active-metadata-store.."]}
Loading