Skip to content

Commit

Permalink
Work in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
ncharles committed Nov 15, 2017
1 parent 10d4396 commit 364e7f6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion 42_advanced_configuration_management/40_node_properties.txt
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,13 @@ The resulting properties will be:
`"sysctls_postgresql":{"kernel.shmmax":"5368709120"}` and
`"vm":{"vm.dirty_ratio":"10"}`

`sysctls_postgresql` has been overriden by local property, and `vm` has been left untouched
`sysctls_postgresql` has been overriden by local property, and `vm` has been left untouched.
Note that it is an override, as the semantic of merging is not deterministic with literal values, and it does not allow to unset values. If you need to merge, please refer to the next paragraph.


==== Merging properties

If you want to merge server defined properties with local defined properties, rather than override them, you will need to use the generic method variable_dict_merge_tolerant to define how to merge properties.


==== Under the hood
Expand Down

0 comments on commit 364e7f6

Please sign in to comment.