MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    Too many API calls in default weather module after update

    Scheduled Pinned Locked Moved Unsolved Troubleshooting
    8 Posts 5 Posters 38 Views 5 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • P Offline
      Perilax
      last edited by

      Hello together,

      Since the April update, I have an issue where the default weather module sends too many requests to the OpenWeathermap API. I reach the free limit of 1,000 requests after just a few hours.

      Here’s an extract from my config.js:

       {
                              module: "weather",
                              position: "top_right",
                              config: {
                                      weatherProvider: "openweathermap",
                                      apiVersion: "3.0",
                                      weatherEndpoint: "/onecall",
                                      lat: "XXXXXX",
                                      lon: "XXXXXX",
                                      location: "XXXXXX",
                                      showSun: true,
                                      type: "current",
                                      appendLocationNameToHeader: false,
                                      apiKey: "XXXXXXX",
                                      updateInterval: 10*60*1000, // Update every 10 minutes
                              }
                      },
                      {
                              module: "weather",
                              position: "top_right",
                              header: "Wetter Vorschau",
                              config: {
                                      weatherProvider: "openweathermap",
                                      type: "forecast",
                                      location: "XXXXXX",
                                      apiVersion: "3.0",
                                      weatherEndpoint: "/onecall",
                                      lat: "XXXXXX",
                                      lon: "XXXXX",
                                      appendLocationNameToHeader: false,
                                      apiKey: "XXXXX",
                                      updateInterval: 10*60*1000, // Update every 10 minutes
                                      fade: false,
                                      roundTemp: true,
                                      ignoreToday: true,
                              }
                      },
      

      Has anyone a solution to solve this problem ?

      S S 2 Replies Last reply Reply Quote 0
      • S Do not disturb
        sdetweil @Perilax
        last edited by

        @Perilax @kristjanesperanto will have to answer, there was a big rewrite of the data collector side of weather.

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        1 Reply Last reply Reply Quote 1
        • S Offline
          stephanvdplas @Perilax
          last edited by

          @Perilax

          I think you need these parameters:

          			updateInterval: 60 * 60 * 1000,
          			retryDelay: 60 * 60 * 1000,          // retry only once per hour
          
          P 1 Reply Last reply Reply Quote 0
          • P Offline
            Perilax @stephanvdplas
            last edited by

            @stephanvdplas

            Is „retryDelay“ really working ? I can‘t find it in the documentation.

            I have two modules where I request the API every 10 minutes. So it should be around 300 requests per day.
            By far less than 1000.

            KristjanESPERANTOK 1 Reply Last reply Reply Quote 0
            • KristjanESPERANTOK Offline
              KristjanESPERANTO Module Developer @Perilax
              last edited by KristjanESPERANTO

              Sam is right, that was caused by the big rewrite (which resolved other issues, particularly a fundamental architectural one).

              A fix is already in the develop branch: https://github.com/MagicMirrorOrg/MagicMirror/pull/4092

              Are you familiar enough with Git to test the develop branch?

              evroomE P 2 Replies Last reply Reply Quote 0
              • evroomE Offline
                evroom @KristjanESPERANTO
                last edited by

                @perilax
                Or just a quick work-around as the default for updateInterval for openweathermap is 10 minutes anyway.
                Try to comment out those 2 lines with //.

                @kristjanesperanto
                Quick response; quick fix 👍

                MagicMirror version: 2.35.0
                Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
                Raspbian GNU/Linux 12 (bookworm)

                Test environment:
                MagicMirror version: v2.33.0
                Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
                Raspbian GNU/Linux 12 (bookworm)

                1 Reply Last reply Reply Quote 0
                • P Offline
                  Perilax @KristjanESPERANTO
                  last edited by

                  @KristjanESPERANTO

                  I’ll test the develop branch tomorrow.
                  Thanks for the quick reply.

                  @evroom I added updateInterval to my config.js only after the problem occurred, because I thought it might be causing the issue.

                  S 1 Reply Last reply Reply Quote 0
                  • S Do not disturb
                    sdetweil @Perilax
                    last edited by

                    @Perilax see this link for how to get the develop branch
                    https://forum.magicmirror.builders/post/86422

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    1 Reply Last reply Reply Quote 0

                    Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                    Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                    With your input, this post could be even better 💗

                    Register Login
                    • 1 / 1
                    • First post
                      Last post
                    Enjoying MagicMirror? Please consider a donation!
                    MagicMirror created by Michael Teeuw.
                    Forum managed by Sam, technical setup by Karsten.
                    This forum is using NodeBB as its core | Contributors
                    Contact | Privacy Policy