is there an API to update the helix config and ver...
# troubleshooting
x
is there an API to update the helix config and verify that the changes have taken place? i’ve looked through the swagger API and
Copy code
POST /cluster/configs
seems to be the most likely candidate, but it’s not working for me
k
which config are you trying to change
x
controller.dimTable.maxSize
k
some of them are dynamic (no need of restart) and some of them require restart
x
can i restart via the REST api?
k
this one looks like it requires restarting controller
x
some of them are dynamic (no need of restart) and some of them require restart
how do i differentiate between these 2 categories?
k
unfortunately, we dont have a good way to do that.. most of them can be made dynamic if someone asks for it and we see the need in production
for e.g. this one should have been dynamic
controller already gets notified when config changes
but that the code is reading it only at startup and caching it
x
ah ok! let me try restarting it now
it works, thanks!