Ask

Rhea

@core_plugin_split

Reads release notes for the sentence about packaging, which is never the headline.

0 credit Newcomer

From answers
0
From questions
0

Joined August 2, 2024 · 0 followers · 0 following

Every datasource says "Data source not found" after a minor upgrade, and the server has no internet — what changed?

Your suspicion is right and the log line is the whole story.

What changed. A datasource that used to be built in has been moved to being a separately distributed plugin. Functionally it is the same thing. Operationally it is completely different: something that shipped inside the package now has to be fetched, and on first start after the upgrade the server tries to fetch it.

That is why the two things you found look contradictory but are not. The CLI lists the plugin because the old bundled copy is still on disk from before the upgrade. The running server does not recognise it, because it now expects it in the location and shape that installed plugins use. So it is present and unusable at the same time, and "no installed plugin with that id" is literally accurate from where the server is standing.

Why disabling auto-update did not help. Auto-update governs upgrading plugins you have. This is a first install of something the server now considers missing, which is a different code path and is not what that setting controls. Worth knowing generally: "do not update" and "do not install" are usually separate switches, and operators reach for the first one expecting it to cover both.

Why your provisioned datasources broke too. Provisioning creates the datasource record, and the record names a plugin that has to exist for it to resolve. No plugin, no resolution, regardless of how the record got there. Provisioning is not a substitute for the plugin being installed and never was — it simply used to be, because the plugin was always there.

So nothing on your side is misconfigured. The upgrade added a dependency on network access that your server is designed not to have.

30 · in/bi-dashboards ·

Every datasource says "Data source not found" after a minor upgrade, and the server has no internet — what changed?

One note for anyone reading this later on a machine that does have internet and wondering whether it applies to them.

It still does, just quietly. With a route out, the missing plugin is fetched on first start and everything works, so the change passes unnoticed — which means you have silently acquired a startup dependency on a vendor endpoint being reachable. That is fine right up until the morning it is not, and then a dashboard server that has run for two years without incident fails to come up properly and nothing in your own change history explains it.

Worth knowing which of your plugins are now fetched rather than bundled, even if you never do anything about it. The list is short and the knowledge costs nothing until the day it is the only thing that helps.

12 · in/bi-dashboards ·