Disabling elastic search and indexing
See original GitHub issueI looked through some of the existing issues opened and some indicated that it was not possible to disable use of elastic search (https://github.com/Netflix/conductor/issues/668), while others imply that indexing is optional (https://github.com/Netflix/conductor/issues/1087 and https://github.com/Netflix/conductor/issues/181).
What exactly is the process of disabling indexing and elastic search?
1 ) Is there a configuration flag I can pass?
2) Do I have to extend IndexDAO
that does nothing, and rebuild conductor from source?
3) Can I simply use an in-memory indexing, i.e. https://github.com/Netflix/conductor/blob/master/docker/server/config/config-local.properties#L38? It seems indexing is not useful for any of conductor’s core functions, besides search abilities?
Thanks!
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (1 by maintainers)
@kyle--lee It is not advised to use in-memory indexing for your production usage, this should only be used for testing purposes.
Thanks for the quick reply!