[mapserver-users] Mapserver installation in cloud environments (kubernetes)

Wouter Visscher wouter.visscher at gmail.com
Wed Apr 28 07:48:15 PDT 2021


While we are moving a bit away from specific mapserver questions :) ...
Maybe we can do a MS Teams call (or something) if you have additional
questions. It is probably also more practical in communicating over these
topics.

But to answer your questions:

"Do you have more to share regarding this proxy service?"
Sure I can share a bit about our progress so far. At this moment there
are 2 projects:
- ogc-webservice-proxy
- ogc-specifications
The ogc-webservice-proxy is still a private repo (because it is far from
finished) but the https://github.com/PDOK/ogc-specifications is publicly
available. Both are written in golang, the ogc-webservice-proxy is a http
proxy application and the ogc-specifications is a package containing the
"latest" OGC specifications so one is able to (un)marshall OGC XML/KVP
requests to code. This is also still a work in progress especially how to
implement everything and keeping it "readable"/usable.

"What is the purpose of it and how does it work? /you mention for
determining the size/duration/location"
The useage of our NGDI has matured, people used to be happy they got
'something' now they start looking more at the metadata, quality,
performance, capabilities...
This led to discrepancies between what and how the NGDI was initially
deployed (the underlying software) and advertised (or rather what was not
advertised) and what it has become through the vast amount of fixes/patches
and so on.
One of the first challenges we identified are the differences between
vendor capabilities <> ogc capabilities <> inspire capabilities.
What was/is missing in that equation are our own NGDI (PDOK) capabilities.
Because for example maybe we want to disable POST requests, not allowing
certain FILTERS with more than X filter options, or BBOX with a footprint
larger then X. Basically we want/need to intercept the request

"Do you also separate short-running requests (e.g. GetFeatureInfo or
GetLegendGraphics) vs long-running requests (GetMap, printing services,
report generation)?"
Yes and No, for a lot of GetCapabilities requests we are routing them to
'static' XML-files instead of letting the backend generate them every time,
and printing services have their own services (with higher timeouts). But
this has been an artifact of the 'fixing' specific dataset/service issues,
instead of a concrete plan in fixing the handling of all of our requests.
And that is what we are trying to do with the ogc-webservices-proxy.

"Is your "traefik" load balancer using "round robin" load balancing or
something more advanced based on system load or even by using an
estimate/prediction how long a request might take based on the parameters
submitted?"
Yes it is using a 'simple' rrb, and how we are looking at it, that it is
going to be like that. Getting specific OGC logic into
traefik/NGINX/apache/lua-scripting is something we are not going to do any
more. This specific logic will be moved toward the ogc-webservice-proxy.
Regarding system load, if it are valid requests we will depend upon the k8s
node and pod autoscaling. But we are also now in a modus that: not every
request has to be successful, as long that the handling is done properly.

On Tue, Apr 27, 2021 at 5:39 PM Andreas Neumann <andreas at qgis.org> wrote:

> Hi all,
>
> Thanks for your reactions and replies to my request if there is experience
> in running UMN MapServer in the cloud. Sorry about the delay in responding.
>
> I had a look at the MapServerless AWS Lambda Layer project and
> corresponding video. Thanks for sharing this work!
>
> Pre-rendered tiles are of course good for background maps, but for other
> layers, esp. frequently updated layers and layers where we want to allow
> custom styling, feature info, etc. map tiles are not good alternatives.
>
> Interesting to me was the feedback from Wouter about the Dutch NGDI
> (PDOK), which seems to be more similar to our GDIs (province level and
> national level OGC services in Switzerland). Interesting to hear that you
> are copying data as close as possible to the pods (Geopackage or by
> bringing Postgis really close to the Pods).
>
> In the case of QGIS Server it is also interesting to see that the
> different vector data seem to matter substantially. We have a QGIS Server
> performance suite published at http://test.qgis.org/perf_test/graffiti/
> --> scroll to the latest date. In the performance test suite there is a
> section comparing different vector data sources. See f.e.
> http://test.qgis.org/perf_test/graffiti/2021_04_27_01_00/report.html#c395b4ae16b447f1b3e6fc127a4531da
> where Postgis and SpatiaLite data sources are substantially faster than
> Shapefile and Geopackage is clearly the looser. Not sure if the same
> applies for UMN MapServer? Maybe that is a pattern that applies to QGIS
> Server only ...
>
> Wouter: I would be interested in learning more about the
> "ogc-webservice-proxy" you mention for determining the
> size/duration/location. Do you have more to share regarding this proxy
> service? What is the purpose of it and how does it work? Do you also
> separate short-running requests (e.g. GetFeatureInfo or GetLegendGraphics)
> vs long-running requests (GetMap, printing services, report generation)?
>
> Is your "traefik" load balancer using "round robin" load balancing or
> something more advanced based on system load or even by using an
> estimate/prediction how long a request might take based on the parameters
> submitted?
>
> Thanks all for the interesting discussion!
>
> Andreas
>
>
>
> On Fri, 23 Apr 2021 at 22:07, Wouter Visscher <wouter.visscher at gmail.com>
> wrote:
>
>> Hi Andreas,
>>
>> To answer your question: "Do you know of any work ...."
>>
>> For the Dutch National Geodata Infrastructure (PDOK) we are running now
>> (over a year) hundreds of OGC WMS/WMTS/WFS servers (primarily Mapserver and
>> Mapproxy) on aks (Azure kubernetes).
>>
>> The challenges you are describing sound very similar to ours :)
>>
>> To give some small inside on some of our solutions regarding:
>> deployment: kustomize and operators
>> cloud optimization: (regarding data) geohashes over GPKG and PostGIS
>> tables and getting the data as close to the pods as possible.
>> load balancing: (infrastructure wise) 'standaard'
>> loadbalancing with traefik, (OGC wise) we are working on a
>> 'ogc-webservice-proxy' for determining the size/duration/location,
>> basically what is going to be the impact of a request.
>> resource sharing: (infrastructure) ScaleSets for nodes, and ReplicaSets
>> based on load, (data) because we have most of the data in GPKG we 'copy'
>> the data around. So for a service that scales up to 4 pods we have 4 of the
>> same GPKG copied to that node.
>>
>> I will share your knowledge with my colleagues, but it seems you reached
>> a lot of the same conclusions (so far I have read) we have.
>>
>> On Fri, Apr 23, 2021 at 5:20 PM Andreas Neumann <andreas at qgis.org> wrote:
>>
>>> Hi,
>>>
>>> For a small project as part of the Swiss National Geodata Infrastructure
>>> (grant project) several people worked on a study document called
>>> "Cloud-optimized OGC WMS Server" where we analyzed problems that can arise
>>> when you install an OGC web server in the cloud (e.g. docker image deployed
>>> via Kubernetes, OpenShift or the likes). This work had a focus on QGIS
>>> Server with it's own set of problems - but some of the issues studied in
>>> this document also matter for other OGC WMS servers, such as UMN Mapserver
>>> or Geoserver, such as the load balancing problem, how to share resources,
>>> etc.
>>>
>>> Here is the link to the document (not in final form yet, but close to
>>> being final):
>>> https://docs.google.com/document/d/1cOUWgzalRx7CHWTFgHz6-uyScsCcoaEmYC0VBHdZShQ/edit#heading=h.c7gq4lie7ys2
>>>
>>> I wonder if any similar work has been done specifically around problems,
>>> challenges and solutions when you deploy UMN Mapserver in cloud
>>> environments? Do you know of any work?
>>>
>>> One major problem that probably all installations of an OGC WMS server
>>> have is how to deploy a more intelligent load balancing system? Often, the
>>> default load balancer is some kind of round robin load balancer system, but
>>> often this leads to inferior results where "cheap and short" requests (such
>>> as a simple GetFeatureInfo or GetLegendGraphics request) can be queued
>>> behind a long-running GetMap request (potentially with many layers, many
>>> features and a high-dpi, such as 600dpi, where the request can take several
>>> seconds to process.
>>>
>>> In our production system we are currently separating the requests to
>>> dedicated instances for short requests and potentially long requests, to
>>> avoid the above mentioned scenario, but we are not so satisfied with the
>>> solution, as it is  a bit inflexible and also a bit harder to maintain.
>>> Ideally, we would like to have a more intelligent load balancer with
>>> incoming queue that holds back requests as long as all WMS server instances
>>> are busy. This would avoid the situation where a "less intelligent" load
>>> balancer would simply forward the requests to instances based on
>>> Round-Robin principle.
>>>
>>> Do you know of any work in the UMN Mapserver community regarding cloud
>>> deployment, cloud optimization, load balancing and resource sharing?
>>>
>>> In our study document I'd like to also include the perspective of other
>>> WMS servers besides QGIS server, so any input would be welcome.
>>>
>>> Thanks,
>>> Andreas
>>>
>>> --
>>> Andreas Neumann
>>> QGIS.ORG board member (treasurer)
>>> _______________________________________________
>>> mapserver-users mailing list
>>> mapserver-users at lists.osgeo.org
>>> https://lists.osgeo.org/mailman/listinfo/mapserver-users
>>>
>> _______________________________________________
>> mapserver-users mailing list
>> mapserver-users at lists.osgeo.org
>> https://lists.osgeo.org/mailman/listinfo/mapserver-users
>>
>
>
> --
>
> --
> Andreas Neumann
> QGIS.ORG board member (treasurer)
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osgeo.org/pipermail/mapserver-users/attachments/20210428/582dced0/attachment.html>


More information about the mapserver-users mailing list