Subscription from InfluxDB in Rpi to endpoint InfluxDB in Personal Computer

I had the same kind of requirements in my head a few years back (Delayed replication to an InfluxDB available intermittently). I might be wrong but I don’t believe it is implemented (at least the community version).

You can always try to perform checks that both your DB are in sync with a tool of yours that would run periodically and keep tabs on what is already synced or not. Then export the missing time range and import it on your PC.

The data collection you do write directly into InfluxDB? Do you query the InfluxDB running on your Pi? If not, you could consider ditching InfluxDB from the Pi and collect into anything that has a disk persistence (like a message queue implementation of your choice for example). Then when the link Pi-PC is working, the broker can forward to the PC (or your PC can pull depending on networking limitations) and it is a matter of having an adapter to get the Pi message and insert it into InfluxDB on your PC. Telegraf can probably be that adapter if you pick something compatible with one of its input plugins.