This message was deleted.
# troubleshooting
s
This message was deleted.
b
b
I don't know of any metrics, but in my experience, URI-based lookups do better than jdbc-based, in case that helps.
1
m
Thank @Brandon Tan , what about retry policy? how it handled ? Any metrics fired?
b
Let me dig into this. If it’s not in the docs, it does not exist.
How about these : https://druid.apache.org/docs/latest/querying/lookups.html#saving-configuration-across-restarts 1.
druid.lookup.coordinatorFetchRetries
2.
druid.lookup.lookupStartRetries
Some more info here: When you update the lookup, the following happens: 1) The coordinator updates the lookup in the DB 2) The coordinator periodically syncs the latest version of each lookup to all nodes 3) Alternatively, a node may choose to sync to the coordinator on start-up itself We can control the period with which the coordinator syncs the latest version of the lookups to all nodes by setting
druid.manager.lookups.period
. The default period is 2 mins. Kindly set
druid.manager.lookups.period
to 30000 ms (30 Sec) to update the lookups bit faster.
1
m
Thanks @Brandon Tan !