Skip to content

Commit 1d2498f

Browse files
committed
README update
1 parent 62f6262 commit 1d2498f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
This microservice processes kafka events related to challenge resources and updates data in ElasticSearch
44

5+
**NOTE** - This service does not appear to do anything. Currently resource roles are read from DynamoDB in the resources API. The index that this repository was pointing to (resource_roles), does not exist in ES, even before the migration to OS.
6+
57
### Development deployment status
68
[![CircleCI](https://circleci.com/gh/topcoder-platform/resource-processor-es/tree/develop.svg?style=svg)](https://circleci.com/gh/topcoder-platform/resource-processor-es/tree/develop)
79
### Production deployment status

config/default.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,9 @@ module.exports = {
1616
RESOURCE_ROLE_CREATE_TOPIC: process.env.RESOURCE_ROLE_CREATE_TOPIC || 'challenge.action.resource.role.create',
1717
RESOURCE_ROLE_UPDATE_TOPIC: process.env.RESOURCE_ROLE_UPDATE_TOPIC || 'challenge.action.resource.role.update',
1818

19-
ES: {
20-
HOST: process.env.ES_HOST || 'localhost:9200',
19+
OS: {
20+
HOST: process.env.OS_HOST || 'localhost:9200',
2121
AWS_REGION: process.env.AWS_REGION || 'us-east-1', // AWS Region to be used if we use AWS ES
22-
API_VERSION: process.env.ES_API_VERSION || '6.8',
2322
RESOURCE_INDEX: process.env.RESOURCE_INDEX || 'resources',
2423
RESOURCE_TYPE: process.env.RESOURCE_TYPE || '_doc',
2524
RESOURCE_ROLE_INDEX: process.env.RESOURCE_ROLE_INDEX || 'resource_roles',

0 commit comments

Comments
 (0)