Simple automation working but generating log errors

I have a set of very simple automations that is generation more errors that I can believe. The job is to generate a simple html command send. It works often, but fails often as well. The errors seemed to start with either 64.3 or 65.0, not sure which. I am currently running on 65.2.

I have imaged 3 different cards and the issue persists. 2 of the cards were new Sandisk Ultra 16gb cards. I have a couple more cards on the way and a much more modern writer. Running on an RPi 2 with no lag or performance issues apparent.

These update 1 ESPEasy device that displays the data and passes it on to others via ESPEasy global sync. I have staggered the trigger times thinking that maybe it was just to much i/o in one burst. This did not change the behavior at all. They all execute perfectly on the command line. I am seeing a second error in conjunction with these errors, see below.

- id: "Broadcast Real Temp HTTP"
  alias: 'Broadcast Real Temp HTTP'
  initial_state: 'on'
  hide_entity: false
  trigger:
    - platform: time
      minutes: '/2'
      seconds: '30'
  action:
    - service: shell_command.wu_temp_http
      data_template:
        state: '{{ states.sensor.pws_temp_f.state }}'

- id: "Broadcast Feels Like Temp HTTP"
  alias: 'Broadcast Feels Like Temp HTTP'
  initial_state: 'on'
  hide_entity: false
  trigger:
    - platform: time
      minutes: '/2'
      seconds: '45'
  action:
    - service: shell_command.wu_fl_http
      data_template:
        state: '{{ states.sensor.pws_feelslike_f.state }}'

- id: "Broadcast Humidity HTTP"
  alias: 'Broadcast Humidity HTTP'
  initial_state: 'on'
  hide_entity: false
  trigger:
    - platform: time
      minutes: '/3'
      seconds: '0'
  action:
    - service: shell_command.wu_humidity_http
      data_template:
        state: '{{ states.sensor.pws_relative_humidity.state }}'

- id: "Broadcast Wind HTTP"
  alias: 'Broadcast Wind HTTP'
  initial_state: 'on'
  hide_entity: false
  trigger:
    - platform: time
      minutes: '/3'
      seconds: '15'
  action:
    - service: shell_command.wu_wind_http
      data_template:
        state: '{{ states.sensor.pws_wind_mph.state }}'

- id: "Broadcast Gust HTTP"
  alias: 'Broadcast Gust HTTP'
  initial_state: 'on'
  hide_entity: false
  trigger:
    - platform: time
      minutes: '/3'
Error running command: `/usr/bin/curl "http://192.168.1.121/control?cmd=event,FeelsLike={{state}}"`, return code: -11
7:30 PM /usr/lib/python3.6/site-packages/homeassistant/components/shell_command.py (ERROR)
Error running command: `/usr/bin/curl "http://192.168.1.121/control?cmd=event,WindDeg={{state}}"`, return code: -11
7:27 PM /usr/lib/python3.6/site-packages/homeassistant/components/shell_command.py (ERROR)
Error running command: `/usr/bin/curl "http://192.168.1.121/control?cmd=event,Wind={{state}}"`, return code: -11
7:27 PM /usr/lib/python3.6/site-packages/homeassistant/components/shell_command.py (ERROR)
```

```
Error in database connectivity: (sqlite3.OperationalError) disk I/O error (Background on this error at: http://sqlalche.me/e/e3q8). (retrying in 3 seconds)
7:12 PM components/recorder/__init__.py (ERROR)
Error executing query: (sqlite3.OperationalError) disk I/O error (Background on this error at: http://sqlalche.me/e/e3q8)
7:12 PM components/recorder/util.py (ERROR)
```