Login| Sign Up| Help| Contact|

Patent Searching and Data


Title:
FAAS IN-MEMORY CHECKPOINT RESTORE
Document Type and Number:
WIPO Patent Application WO/2019/145053
Kind Code:
A1
Abstract:
A method for use in a computing device (100) for executing a FaaS process, said computing device (100) comprising a processor arrangement (110) and a memory (120), wherein the method comprises: receiving an event associated with a trigger, whereby an associated function is selected; obtaining page references to existing physical memory pages; initiating a process virtual memory table for a corresponding process; and executing the process based on the virtual memory table. And a method for use in a computing device (100) for performing a FaaS checkpoint operation, said computing device (100) comprising a processor arrangement (110) and a memory (120), wherein the method comprises: initiating a checkpoint is initiated; obtaining page references and storing them in a database virtual memory table in an in- memory database; replicating the page tables and indexes through a network; and storing changes to the in-memory database.

Inventors:
GUSTAFSSON HARALD (SE)
Application Number:
PCT/EP2018/052146
Publication Date:
August 01, 2019
Filing Date:
January 29, 2018
Export Citation:
Click for automatic bibliography generation   Help
Assignee:
ERICSSON TELEFON AB L M (SE)
International Classes:
G06F12/08; G06F11/14
Domestic Patent References:
WO2006026403A22006-03-09
Foreign References:
US20170134518A12017-05-11
US20050050295A12005-03-03
US7779295B12010-08-17
Other References:
OAKES EDWARD ET AL: "Pipsqueak: Lean Lambdas with Large Libraries", 2017 IEEE 37TH INTERNATIONAL CONFERENCE ON DISTRIBUTED COMPUTING SYSTEMS WORKSHOPS (ICDCSW), IEEE, 5 June 2017 (2017-06-05), pages 395 - 400, XP033122912, DOI: 10.1109/ICDCSW.2017.32
GREG GAGNE, PETER BAER GALVIN, ABRAHAM SILBERSCHATZ: "Operating System Concepts, 8th Edition", 2010, JOHN WILEY & SONS, ISBN: 9780470128725, pages: 1 - 971, XP002785316
HUANG CHENG-HAO ET AL: "Enhancing the Availability of Docker Swarm Using Checkpoint-and-Restore", 2017 14TH INTERNATIONAL SYMPOSIUM ON PERVASIVE SYSTEMS, ALGORITHMS AND NETWORKS & 2017 11TH INTERNATIONAL CONFERENCE ON FRONTIER OF COMPUTER SCIENCE AND TECHNOLOGY & 2017 THIRD INTERNATIONAL SYMPOSIUM OF CREATIVE COMPUTING (ISPAN-FCST-ISCC), IEEE, 21 June 2017 (2017-06-21), pages 357 - 362, XP033273591, DOI: 10.1109/ISPAN-FCST-ISCC.2017.69
Attorney, Agent or Firm:
ERICSSON (SE)
Download PDF:
Claims:
CLAIMS

1. A method for use in a computing device (100) for executing a FaaS process, said computing device (100) comprising a processor arrangement (110) and a memory (120), wherein the method comprises:

receiving an event associated with a trigger, whereby an associated function is selected;

obtaining page references to existing physical memory pages;

initiating a process virtual memory table for a corresponding process; and executing the process based on the process virtual memory table

2. The method of claim 1, wherein the physical memory pages are stored in the in-memory database in an aligned manner and are thus ready to be used, without having to be copied.

3. The method of claim 1 or 2, wherein the initiation of the process virtual memory table is made by compiling the physical page memory references from at least one layer based on the requested indexes.

4. The method of claim 1, 2 or 3, wherein the process virtual memory table is initiated with references to the existing physical memory pages.

5. The method of any preceding claim, wherein the method further comprises determining if the process is a stateful process, and if so perform a checkpoint procedure.

6. A method for use in a computing device (100) for performing a FaaS checkpoint operation, said computing device (100) comprising a processor arrangement (110) and a memory (120), wherein the method comprises:

initiating a checkpoint is initiated;

obtaining page references and storing them in a database virtual memory table in an in-memory database;

replicating the page tables and indexes through a network; and storing changes to the in-memory database.

7 The method of claim 6, wherein the page references are arranged in layers and stored in the in-memory database.

8. A computer readable storage medium (10) encoded with instructions (11) that, when executed on a processor, perform the method according to any of claims 1 to 7.

9. A computing device (100) for executing a FaaS process, said computing device (100) comprising a processor arrangement (110) and a memory (120), wherein processor arrangement (110) is configured for:

receiving an event associated with a trigger, whereby an associated function is selected;

obtaining page references to existing physical memory pages;

initiating a process virtual memory table for a corresponding process; and executing the process based on the virtual memory table

10. A computing device (100) for performing a FaaS checkpoint operation, said computing device (100) comprising a processor arrangement (110) and a memory (120), wherein processor arrangement (110) is configured for:

initiating a checkpoint is initiated;

obtaining page references and storing them in a database virtual memory table in an in-memory database;

replicating the page tables and indexes through a network; and

storing changes to the in-memory database.

Description:
FaaS IN-MEMORY CHECKPOINT RESTORE

TECHNICAL FIELD

This application relates to a computing device, a method and a computer-readable storage medium for improved memory management, and in particular to a cloud-enabled computing device, a method and a computer-readable storage medium for improved memory management for FaaS functions.

BACKGROUND

Function as a service (FaaS) is a category of cloud computing services that provides a platform allowing customers to develop, run, and manage application functionalities without the complexity of building and maintaining the infrastructure typically associated with developing and launching an application (commonly referred to as an app). Building an application following this model is one way of achieving a "serverless" architecture, and is typically used when building microservices applications or other applications using a service- oriented architecture (SOA) architectural style that structures an application as a collection of loosely coupled services.

Function as a Service (FaaS) is thus a method of offering developers a service where they only need to specify the function that is to be executed when a trigger event happens. The cloud service provider will manage the infrastructure and underlying support of virtual machines, containers, operating systems, language frameworks, etc.

A function typically only operated during a relatively short time period, ranging from a few milliseconds to a few seconds, and the setup time can therefore make up a large or major portion of the total time from receiving the trigger event until the application has executed.

Checkpointing is a method to freeze a running process and store the information (place a checkpoint) onto a larger memory, such as a memory disc, and then later restoring the process from the checkpoint by retrieving the execution status and data from the checkpoint. In computing, kernel same-page merging (abbreviated as KSM, and also known as kernel shared memory and memory merging) is a kernel feature that makes it possible for a hypervisor system to share identical memory pages amongst different processes or virtualized guests. While not directly linked, Kernel-based Virtual Machine (KVM) can use KSM to merge memory pages occupied by virtual machines. KSM performs the memory sharing by scanning through the main memory and finding duplicate pages. Each detected duplicate pair is then merged into a single page, and mapped into both original locations. The page is also marked as "copy-on- write" (COW), so the kernel will automatically separate them again should one process modify its data. For example, the Linux kernel periodically scans memory pages to identify if they are equal and then can merge them by have the virtual memory pages reference to only one of the physical memory pages. It also marks them as copy-on-write, so that if one of the virtual memory pages should be modified, it is first copied into a unique physical memory page. Physical memory pages can be shared between any processes when identical independent of authentication and authorization without security issues.

The inventors have realized, after insightful and inventive reasoning, that there are problems with these techniques.

For FaaS solutions having so-called“warm” and“cold” starts of functions, similar to hard and soft booting of a computer, i.e. at first event the setup time is long due to a cold start of the environment and then subsequent events that happens within a time window will utilize the same started environment and hence get a warm start. Still this start gives a long latency compared with using a permanent service that handles events. The problem with warm- started environments is that they consume memory resources even when not in use and when many functions in the FaaS are used they add up and use too much memory. There is thus a trade-off between memory use and latency.

The inventors have also realized that the kernel same-memory page merging does not work well for FaaS due to that the environments are short-lived. The inventors have further realized that checkpointing does not work well due to that the checkpoints are saved to disc and the storing and restoring is thus much slower than keeping a function running in an operating process. There is thus a need for an efficient manner of providing pausing and restarting of processes that maintains a low latency and a low memory consumption.

SUMMARY

The inventors have realised, after inventive reasoning, that by an insightful arrangement and categorization of the memory pages, memory space may be saved and memory access may be made fast and efficient.

This is achieved by changing the trade-off between memory consumption and startup latency, by keeping the execution environment in memory and making sure that when a function is triggered, the new process is directly created from existing memory pages while having functions’ environments share as many memory pages as possible.

To enable this, the inventors are proposing a modified checkpointing to utilize memory and ensuring that the memory pages are equal to them that are used during execution. During creation of a process, an environment is created and then the modified checkpoint is used to store the result in an in-memory database preserving page alignment, preferable without copying. During restore the new process is created/restored with virtual memory areas (by the virtual page table) referring to the existing physical memory pages, which makes the restore almost immediate.

This is done step-by-step, in a tree structure with branches of checkpointed environments. At the root is the common environment, for example a container, at the first branch e.g. a choice between a Java Virtual Machine (JVM), a Python Virtual Machine (PVM), or native packages, etc. The following branches are for e.g. libraries or packages, and then the functions. Hence, when a new branch is to be created the previous checkpoint is restored and then the environment is altered with the new functionality before it is checkpointed again. This gives small changes to memory and hence most memory pages will still be shared with previous checkpoints. Also, many processes will be able to share many branches, and thus memory, thereby also saving on memory space, which also enables for a faster copy action, as only the leaf node needs to be copied. A memory management system as herein, disclosed in more detail below, will bring a close to warm start startup latency to FaaS and preserve memory to allow a resource efficient implementation.

It is thus an object of the teachings of this application to overcome or at least mitigate one or more of the problems and shortcomings listed above and below by providing a method for use in a computing device for executing a FaaS process, said computing device comprising a processor arrangement and a memory, wherein the method comprises: receiving an event associated with a trigger, whereby an associated function is selected; obtaining page references to existing physical memory pages; initiating a process virtual memory table for a corresponding process; and executing the process based on the virtual memory table.

It is also an object of the teachings of this application to overcome or at least mitigate one or more of the problems and shortcomings listed above and below by providing a method for use in a computing device for performing a FaaS checkpoint operation, said computing device comprising a processor arrangement and a memory, wherein the method comprises: initiating a checkpoint is initiated; obtaining page references and storing them in a database virtual memory table in an in-memory database; replicating the page tables and indexes through a network; and storing changes to the in-memory database.

It is also an object of the teachings of this application to overcome or at least mitigate one or more of the problems and shortcomings listed above and below by providing a computing device for executing a FaaS process, said computing device comprising a processor arrangement and a memory, wherein processor arrangement is configured for: receiving an event associated with a trigger, whereby an associated function is selected; obtaining page references to existing physical memory pages; initiating a process virtual memory table for a corresponding process; and executing the process based on the virtual memory table.

It is also an object of the teachings of this application to overcome or at least mitigate one or more of the problems and shortcomings listed above and below by providing a computing device for performing a FaaS checkpoint operation, said computing device comprising a processor arrangement and a memory, wherein processor arrangement is configured for: initiating a checkpoint is initiated; obtaining page references and storing them in a database virtual memory table in an in-memory database; replicating the page tables and indexes through a network; and storing changes to the in-memory database.

It is moreover an object of the teachings of this application to overcome one or more of the problems and shortcomings listed above by providing a computer readable storage medium encoded with instructions that, when executed on a processor, perform a method as disclosed herein.

Other features and advantages of the disclosed embodiments will appear from the following detailed disclosure, from the attached dependent claims as well as from the drawings. Generally, all terms used in the claims are to be interpreted according to their ordinary meaning in the technical field, unless explicitly defined otherwise herein. All references to "a/an/the [element, device, component, means, step, etc.]" are to be interpreted openly as referring to at least one instance of the element, device, component, means, step, etc., unless explicitly stated otherwise. The steps of any method disclosed herein do not have to be performed in the exact order disclosed, unless explicitly stated.

BRIEF DESCRIPTION OF DRAWINGS

The invention will be described in further detail under reference to the accompanying drawings, in which:

Figure 1 shows a schematic overview of the components of a computing device or User Equipment according to one embodiment of the teachings of this application;

Figure 2 shows a schematic overview of the software architecture of a computing device or User Equipment according to one embodiment of the present invention;

Figure 3A and figure 3B each shows a flowchart for a general method according to herein for managing the memory of a computing device enabled for FaaS functionality such as in figure 1 according to one embodiment of the teachings of this application;

Figure 4A shows how a virtual memory page table matches to a physical memory according to the teachings herein;

Figure 4B shows a schematic view of a tree structure for the memory mapping according to one embodiment of the teachings of this application; and Figure 5 shows a schematic view of a computer-readable medium according to the teachings herein.

DETAILED DESCRIPTION

The disclosed embodiments will now be described more fully hereinafter with reference to the accompanying drawings, in which certain embodiments of the invention are shown. This invention may, however, be embodied in many different forms and should not be construed as limited to the embodiments set forth herein; rather, these embodiments are provided by way of example so that this disclosure will be thorough and complete, and will fully convey the scope of the invention to those skilled in the art. Like numbers refer to like elements throughout.

The idea is to utilize a modified checkpoint/restore method in combination with an in-memory database. Memory here refers to byte/word-addressable memory which include standard volatile memory like SRAM and DRAM as well as the more recent non-volatile memory (NVRAM). NVRAM refers to any technologies which offers byte/word addressable memory and are persistent storage, having a price and performance point in-between DRAM and block storage Flash memory.

This is done step-by-step, or layer-by-layer, like a tree with branches of checkpointed environments. At the root is the common environment for example a container, at the first branch e.g. a choice between a Java Virtual Machine (JVM), a Python Virtual Machine (PVM), or native packages, etc. The following branches are for e.g. libraries or packages, and then the functions. At last, dynamically also the trigger data may be mapped in if it exist in physical memory already. Hence, when a new branch is to be created the previous checkpoint is restored and then the environment is altered with the new functionality before it is checkpointed again. This gives small changes to memory and hence most memory pages will still be shared with previous checkpoints

A first aspect of the present invention is to modify the restore method of a checkpointing or checkpoint/restore framework (CRF) such as CRIU. The restore method of state of the art CRFs copy the application’s memory content from a checkpoint image stored on a memory disk (i.e. a block storage). As the inventors have realised, such state of the art methods are reasonable for the use cases CRFs have been used for before, but for FaaS the start up time is a large part of the total latency if the function’s execution environment is not kept intact between trigger events (i.e. warm start). To be able to utilize CRFs for restoring a function’s execution environment, the initialization time of memory needs to be reduced. This invention stores the checkpoint memory in an in-memory database on the same computer, so that it is immediately available. The modified restore method then don’t need to copy the memory content from an image on disk but could just map the virtual memory areas to the existing physical memory areas that is maintained by the database. An alternative approach is to utilize lazy memory paging, which CRFs use for iterative live migrations (but they involving copying memory from a remote computer). The lazy memory paging loads a page when it is first access, which our modified restore method could utilize to then map the page to the existing physical memory page.

A second aspect of this invention is to reduce the memory need for the in-memory database and the restored function’s execution environment (a process). The invention makes sure that as much of a function’s execution environment memory content is equal and have identical layout to other functions or instances of the function’s execution environment (EE). To accomplish this the function’s EE is built up step-by-step as in a tree. With the functions on the leaves and branches as more and more refined EE. This can be done by loading a previous checkpointed layer and e.g. load in software packages, libraries or virtual machines, then checkpoint again at a further branch. Next could multiple functions utilize this latest checkpoint to create individual EE checkpoints for each function. This invention utilize a modified checkpoint method, which instead of copying the memory to an image on disk, transfer the virtual memory areas references to physical memory to an in-memory database. The database then claims the memory pages which prevents them from being destroyed. The database also keep an index in-memory similar in format to how a CRF keeps track of memory pages in a memory map stored on disk. The index is reduced further by the tree structure since large parts of the memory map is identical with lower branches, see figures 4A and 4B and corresponding description further below.

Figure 1 shows a schematic overview of a computing device 100 or User

Equipment (UE) according to one embodiment of the present invention. The computing device may be a computer, such as a rackmount computer, a desktop computer, a laptop computer or other device arranged for computing. The UE may be a robotic tool, an actuator, a sensor or other automated industrial device. The UE may be a tablet computer, or a smartphone. In the following the description will be focussed on a computing device, but the teachings herein are applicable also to a UE 100.

The computing device 100 comprises a processor arrangement 110 (CPU) which is configured to control the overall functionality and also specific functions of the computing device 100 such as by executing computer program instructions loaded into or stored on a memory 120 connected to or being part of the processor arrangement 110. The processor arrangement 110 may comprise one or more processors or other logic programmable circuits for combined or individual execution of a task or application. However, for the purpose of this application they will be seen as being the one and same processor arrangement 110. The processor arrangement 110 is connected to or comprising the memory 120 for storing computer instructions and also data to be processed by the computer instructions when executed by the processor arrangement 110. The memory 120 may comprise one or several memory circuits, possibly arranged in a hierarchy. The memory may also comprise an MMU (Memory

Management Unit), i.e. hardware arranged to handle virtual to physical mappings as well as memory protections (used for COW, lazy loading, etc), etc. One or more of such memory circuits may be comprised in the processor arrangement 110. For the purpose of this application the memory circuits will be regarded as one memory 120. The memory may comprise internal memory circuit(s) such as Random Access Memory (RAM) and/or Non-Volatile RAM

(NVRAM). The memory 120 may also comprise or be connected to a block storage 125 as discussed above.

The processor arrangement 110 may also connected to a Human Machine Interface 130 for receiving input from a user and for presenting data or other information to the user.

The processor arrangement 110 is also connected to a communications or network interface 140, such as a Network Interface Card (NIC). The computing device may be wirelessly connected to a communication network for accessing cloud services through the network interface 140. Alternatively or additionally, The computing device may be connected through a wired interface to a communication network for accessing cloud services through the network interface 140. Examples of wired connections are Ethernet, InfiniBand, Fiber Channel, to mention a few examples.

The network interface 140 may be configured to operate according to a long range standard, such as a cellular network standard GSM, LTE or a 5G standard. The network interface may alternatively or additionally be configured to operate according to a short range standard, such as a Bluetooth®, IEEE802.1 lb (WiFi™), IEEEE802.16, ZigBee™,

WirelessHART (based on IEEE 802.15.4), ISA100.1 la (based on IEEE 802.15.4) or NFC™ (Near Field Communication) standard.

Figure 2 shows a schematic overview of the software architecture of a computing device 100 or User Equipment (UE) according to one embodiment of the present invention. The Software architecture includes a kernel 210 comprising operating system functionalities such as for process creation, and for maintaining a virtual (memory) page table to mention some operating functions of the kernel 210. The kernel 210 is connected to or associated with an in memory database 220 comprising memory storage indexing, for memory pages and for replication of data. The kernel 210 is also connected to or associated with an FaaS platform 230 comprising functionality for providing FaaS services, and comprising functionality for setting a function checkpoint and for performing a function restore operation. Various platform functions are associated with the FaaS platform 230 and the in memory database 220 for accessing memory pages during execution of a user function. The platform functions are arranged to interact with the kernel 210 for accomplishing at least part of its functionality, such as through system calls, kernel file based interfaces to mention a few examples.

Figure 3A and figure 3B each shows a flowchart for a general method according to herein for managing the memory of a computing device enabled for FaaS functionality such as in figure 1. The functionality of how a trigger is handled (figure 3 A) and how a checkpoint is handled (figure 3B) will be disclosed with simultaneous reference to figures 4A and 4b. Figure 4a shows a schematic view of a memory structure and figure 4B shows a schematic view of a corresponding tree structure representing an in-memory database referencing.

Figure 4A shows how a virtual memory page table matches to a physical memory, indicating three different processes R, G, B and being arranged in four layers F0, El, F2 and F3. It should be noted that the figures only show one memory page, but it should be understood that this is for clarity purposes, and in a common embodiment, there will be a plurality of memory pages associated with each or at least one layer.

As stated above, the idea is to utilize a modified checkpoint/restore method in combination with an in-memory database. This may be done layer-by-layer, like a tree with branches of checkpointed environments. See for example figure 4B where the root is at the bottom of the figure in a corresponding layer L0. At the root is the common environment for example a container. Here one can see that the root corresponds to the lowest layer memory blocks which here corresponds to all three virtual memory page tables (part of the kernel referenced 210 in figure 2). At the first branch (corresponding to layer Ll) e.g. a choice between a Java Virtual Machine (JVM), a Python Virtual Machine (PVM), or native packages, etc. The following branches (corresponding to layer L2) are for e.g. libraries or packages, and then (corresponding to layer L3) the functions and possibly the trigger data.

Each layer corresponds to changes that has been made to the physical memory of the corresponding process.

As stated above, when a new branch is to be created the previous checkpoint is restored and then the environment is altered with the new functionality before it is checkpointed again. This gives small changes to memory and hence most memory pages will still be shared with previous checkpoints

A first aspect of the present invention is to modify the restore method of a checkpointing or checkpoint/restore framework (CRF) such as CRIU. A second aspect of this invention is to reduce the memory need for the in-memory database and the restored function’s execution environment (a process).

Returning to figure 3A, a general method according to the teachings herein is shown for handling a triggering event whereupon a function’s process is created or restored (if already created). An event associated with a trigger is received 310, whereby the associated function is selected 320. A trigger may be a request, such as a HTTP request or a MQTT request, commonly carrying new data to be processed. These are only a few examples of possible triggers and a skilled reader would understand that also other triggers may come in to play. A function may be selected based on the request, the data carried by the request possibly indicting which function should be selected. Alternatively or additionally a function may be selected based on an address such as a URL (Uniform Resource Locator) associated with the request.

Page references to existing physical memory pages are obtained 330. The page references are obtained by looking up the selected function in a database which lists the page references for the selected function.

A process virtual memory table for a corresponding process is initiated with references to the existing physical memory pages and the process is restored (or created, from now on both referred to as executing the process) based on the process virtual memory table.

The process virtual memory table may be initiated by for example instructing the kernel 210 to populate the process virtual memory table with the associated references to physical memory pages provided from database virtual memory page references (more on the database virtual memory table below). This is thus one manner of initiating the process virtual memory table through memory mapping.

The function is then started 350. References to the physical memory pages are stored in the in-memory database in an aligned manner and the physical memory pages are thus ready to be used, without having to be copied.

The initiation (340) of the process virtual memory table may be made by compiling the physical page memory references from several layers based on the requested indexes (the requested indexes may be any of layer, function, environment, user, state, etc).

Optionally, the method may then continue with determining if the function or process is a stateful process 360 (i.e. capable of maintaining a state), and if so a checkpoint procedure 370 may be performed.

Figure 3B shows a flowchart for a general method for performing a FaaS checkpoint on a process according to herein where a checkpoint is initiated 315 and page references are obtained 325 from the process and stored in a database virtual memory table. The page references are arranged in layers as above and stored in the in-memory database, while the physical memory pages are kept. The page tables and indexes (i.e. the database virtual memory table) are replicated 345 to other computers through the network. And any changes to the in-memory database is stored 355 in the memory (possibly in the block storage). A change may be a change to the physical memory or that page references to the physical memory has been changed, added or removed.

Figure 5 shows a schematic view of a computer-readable medium as described in the above. The computer-readable medium 10 is in this embodiment a data disc 10. In one embodiment the data disc 10 is a magnetic data storage disc. The data disc 10 is configured to carry instructions 11 that when loaded into a processor arrangement 110, such as a processor such as the controller of the device 100 of figure 1, execute a method or procedure according to the embodiments disclosed above. The data disc 10 is arranged to be connected to or within and read by a reading device 12, for loading the instructions into the processor arrangement 110.

One such example of a reading device 12 in combination with one (or several) data disc(s) 10 is a hard drive. It should be noted that the computer-readable medium can also be other mediums such as compact discs, digital video discs, flash memories or other memory technologies commonly used. In such an embodiment the data disc 10 is one type of a tangible computer- readable medium 10.

The instructions 11 may also be downloaded to a computer data reading device 100, such as the processor arrangement of the computing device 100 or other device capable of reading computer coded data on a computer-readable medium, by comprising the instructions 11 in a computer-readable signal which is transmitted via a wireless (or wired) interface (for example via the Internet) to the computer data reading device 100 for loading the instructions 11 into a processor arrangement 110. In such an embodiment the computer-readable signal is one type of a non-tangible computer-readable medium 10. The instructions may be stored in a memory (not shown explicitly in figure 5, but referenced 120 in figure 1) of the computer data reading device 100.

The instructions comprising the teachings according to the present invention may thus be downloaded or otherwise loaded in to a device 100 in order to cause the device 100 to operate according to the teachings of the present invention. References to computer program, instructions, code etc. should be understood to encompass software for a programmable processor or firmware such as, for example, the programmable content of a hardware device whether instructions for a processor, or configuration settings for a fixed- function device, gate array or programmable logic device etc.

The invention has mainly been described above with reference to a few embodi- ments. However, as is readily appreciated by a person skilled in the art, other embodiments than the ones disclosed above are equally possible within the scope of the invention, as defined by the appended patent claims.