[jira] [Created] (ATLAS-2519) OMRS Kafka Topic Connector not being initialized

2018-03-27 Thread Mark Ottesen (JIRA)
Mark Ottesen created ATLAS-2519:
---

 Summary: OMRS Kafka Topic Connector not being initialized
 Key: ATLAS-2519
 URL: https://issues.apache.org/jira/browse/ATLAS-2519
 Project: Atlas
  Issue Type: Bug
  Components: atlas-intg
Reporter: Mark Ottesen


Adding two OMRS Repository Proxy Servers to a cohort using patch attached to 
ATLAS-2122, the producer side of the KafkaOMRSTopicConnector is initalized but 
not the consumer side. 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Created] (ATLAS-2518) Add Producer to OMRS Kafka Topic Connector

2018-03-27 Thread Mark Ottesen (JIRA)
Mark Ottesen created ATLAS-2518:
---

 Summary: Add Producer to OMRS Kafka Topic Connector
 Key: ATLAS-2518
 URL: https://issues.apache.org/jira/browse/ATLAS-2518
 Project: Atlas
  Issue Type: Improvement
  Components: atlas-intg
Reporter: Mark Ottesen


Need to implement the producer side of the OMRS Kafka Topic Connector described 
in ATLAS-2465



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (ATLAS-2122) OMAG Server

2018-03-16 Thread Mark Ottesen (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-2122?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16401709#comment-16401709
 ] 

Mark Ottesen commented on ATLAS-2122:
-

Regarding the event adapter provider, should the OMRS framework be calling the 
initialize method on that object when we call the "instance" method in the REST 
API?  Today it calls the 2-argument initialize method in ConnectorBase from 
getConnector, but the 7-argument initialize method in 
OMRSRepositoryEventMapperBase (which extends ConnectorBase) never gets called, 
so the event mapper isn't getting connected properly on our side.  We're 
(trying to) work around that by adding that call ourselves in the 
LocalOMRSRepositoryConnector constructor in OMRS, which is getting us a bit 
further, as we try to set up the 2-IGC system cohort that Cassio mentions above 
- is that the right place to be trying to do that?

> OMAG Server
> ---
>
> Key: ATLAS-2122
> URL: https://issues.apache.org/jira/browse/ATLAS-2122
> Project: Atlas
>  Issue Type: New Feature
>Affects Versions: 1.0.0
>Reporter: Mandy Chessell
>Assignee: Mandy Chessell
>Priority: Major
> Attachments: 0002-ATLAS-2122-initial-OMAG-Server-implementation.patch
>
>
> This Jira Assembles the Open Metadata and Governance components into a 
> configurable server to support the OMAS Access Layer, Repository or native 
> metadata repository.
> The OMAG server is a Spring Boot Application with a simple REST API. It takes 
> the user Id of the administrator, the server name and cohort name as path 
> variables, other parameters are passed as request parameters. These are 
> examples of the commands to set up the server using defaults. 
> Query configuration 
> GET http://localhost:8080/omag/admin/{userId}/{serverName}/configuration/ 
> Set server type name: 
> POST 
> http://localhost:8080/omag/admin/{userId}/{serverName}/server-type?typeName={name}
>  
> Set organization name: 
> POST 
> http://localhost:8080/omag/admin//{userId}/{serverName}/organization-name?name={organizationName}
>  
> Enable the access services: 
> POST 
> http://localhost:8080/omag/admin//{userId}/{serverName}/access-services/mode?serviceMode=ENABLED
>  
> Enable the Atlas graph repository: 
> POST 
> http://localhost:8080/omag/admin//{userId}/{serverName}/local-repository/mode?repositoryMode=LOCAL_GRAPH_REPOSITORY
>  
> Enable the in-memory repository: 
> POST 
> http://localhost:8080/omag/admin//{userId}/{serverName}/local-repository/mode?repositoryMode=IN_MEMORY_REPOSITORY
>  
> Enable server as a repository proxy: 
> POST 
> http://localhost:8080/omag/admin//{userId}/{serverName}/local-repository/mode?repositoryMode=REPOSITORY_PROXY
>  
> To add the local repository connection for the repository proxy 
> POST 
> http://localhost:8080/omag/admin//{userId}/{serverName}/local-repository/proxy-details?connectorProvider={javaClassName}={nativeServerURL}
>  
> To add the local repository's event mapper: 
> POST 
> http://localhost:8080/omag/admin//{userId}/{serverName}/local-repository/event-mapper-details?connectorProvider={javaClassName}={resourceName}
>  
> To enable access to a cohort 
> POST 
> http://localhost:8080/omag/admin//{userId}/{serverName}/cohort/{cohortName}/mode?serviceMode=ENABLED
>  
> To remove the local repository 
> POST 
> http://localhost:8080/omag/admin//{userId}/{serverName}/local-repository/mode?repositoryMode=NO_LOCAL_REPOSITORY
>  
> To disable the access services 
> POST 
> http://localhost:8080/omag/admin//{userId}/{serverName}/access-services/mode?serviceMode=DISABLED
>  
> To disconnect from a cohort 
> POST 
> http://localhost:8080/omag/admin//{userId}/{serverName}/cohort/{cohortName}/mode?serviceMode=DISABLED
>  
> To start up OMRS/OMAS services 
> POST http://localhost:8080/omag/admin//{userId}/{serverName}/instance 
> To shutdown OMRS/OMAS services 
> DELETE 
> http://localhost:8080/omag/admin//{userId}/{serverName}/instance?permanent=false
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)