• @keccsx
    link
    63 months ago

    Aren’t time series databases like Prometheus pretty good at storing this kind of data?

    • @nik9000
      link
      33 months ago

      I don’t believe Prometheus supports geospatial data. Two minutes of googling though, so I could be wrong.

      • @keccsx
        link
        13 months ago

        They’re just storing doubles in their own format too. I’m not sure if they even need any spatial lookups on the data, they didn’t mention anything about that in the article. Maybe they do that in-memory?

        • @nik9000
          link
          13 months ago

          I imagine a delta encoding scheme similar to what the time series DBs use would work well for the geo points. Maybe even a delta-of-delta encoding for things like ships which move very consistently.

          It’s probably not worth it given how small they’ve already go their data. But it is fun.