I am getting "Deploy failed: No response from server" when I am trying to Insert the data coming from real-time sensors in JSON format.
All the other queries except the Insert query is running fine.
Below is the Insert query I am using inside my template node:
INSERT INTO aress_support_sensor (mac_id, timestamp, temperature, humidity, air_quality, air_quality_value, loudness, sensor_buzzed)
VALUES ("{{{payload.0}}}","{{{payload.1}}}","{{{payload.2}}}","{{{payload.3}}}","{{{payload.4}}}","{{{payload.5}}}","{{{payload.6}}}","{{{payload.7}}}");
This query ran once and the deployment was successful. But immediately after 10 15 minutes, when I updated the flow and deployed it, the deployment was failing with this error: " [Deploy failed: no response from server]"
I am unable to figure out the issue as I have tried all the possible ways to use the Insert query.