Data from InfluxDB OSS local to Another Server

I have a doubt. Is it possible to Sync my local host InfluxDB OSS 1.8 with another InfluxDB OSS 1.8 on another server? I’m using Python to write data into InfluxDB OSS 1.8. It may be an invalid question. But, if it is possible, kindly help me out.

It means, If the internet is not there, I will write the data into the localhost and when the internet comes, I will take the data from the localhost and push it into another server to which the data suppose to be sent.

Hi @Sreevalsan_Jeyakrish,
Sadly you cannot achieve this with 1.8 but you can with 2.2! You can use Edge data replication to connect InfluxDB OSS instances together. See my example here: GitHub - Jayclifford345/mqtt-emergency-generator: Demo for InfluxDB roadshow training

You will just have your other InfluxDB OSS node as your “remote” node rather than cloud.

1 Like

Hi @Jay_Clifford,

Thank you very much for the information.