One more from me as well! If I am using metadata ...
# troubleshooting
a
One more from me as well! If I am using metadata like this to set all streams to one value except for the
crm_namespaces
which needs a different setting.
Copy code
metadata:
      "*":
        replication-method: FULL_TABLE
        view-key-properties: ["id"]
      "*crm_namespaces*":
        view-key-properties: ["uuid"]
*Does the specific one need to be after the general
"*"
one in the file?* I tried following the docs where the specific one came first and then general, but that didn't work. I needed the specific streams to be after the general in
meltano.yml
This is with melt3.6.0 and following docs here: https://docs.meltano.com/guide/integration/#setting-metadata
e
That's right. At the moment, the rules are applied in the order they appear in the
metadata
mapping. It means that bit of the docs needs to be updated, and also maybe Meltano needs to change so it sorts the metadata rules under the hood in increasing order of specificity.
🙌 1
a
Was going to change the docs but you have beaten me to it as ever! Thanks for that.
np 1