You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Ekaterina Dimitrova (Jira)" <ji...@apache.org> on 2022/02/14 02:07:00 UTC

[jira] [Created] (CASSANDRA-17379) Emit a warning when the same parameter exists more than once in cassandra.yaml

Ekaterina Dimitrova created CASSANDRA-17379:
-----------------------------------------------

             Summary: Emit a warning when the same parameter exists more than once in cassandra.yaml 
                 Key: CASSANDRA-17379
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-17379
             Project: Cassandra
          Issue Type: Improvement
            Reporter: Ekaterina Dimitrova


The way that SnakeYAML works, if someone has added the same parameter more than once - the last occurrence will be the one that will take precedence. 

Noew after CASSANDRA-15234 we can even add the parameter with the old name and with the new name and the occurrences will replace each other. Again, whatever is last in cassandra.yaml will take precedence. Example:

If you add the following in cassandra.yaml

 
{code:java}
hinted_handoff_enabled: true
enabled_hinted_handolff: false
{code}
 

you will get loaded in Config - 

hinted_handoff_enabled: false //there is backward compatibility from the old name to load into the new one

Currently Cassandra prints in the logs what config was loaded but it is good also to detect the case mentioned and emit a warning for the user so they can verify that the value they wanted was loaded in config.

To do that you might want to look at the PropertiesChecker and the way we emit other warnings in [check()|https://github.com/apache/cassandra/blob/trunk/src/java/org/apache/cassandra/config/YamlConfigurationLoader.java#L376] in YamlConfigurationLoader. 



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org