2017년 6월 5일 월요일

Technology enabling CNA

In the previous article (What is cloud native applications?), I learned about the necessity and characteristics of CNA (Cloud Native Application).

This time, let's look at the technology to enable such a CNA.
To implement a CNA, you need six technologies as shown in the figure below.





  • Microservices

As you can see from the name, it is a function to divide into functions and to develop the service.
This structure is called the Micro Service Architecture (MSA).
The opposite of the MSA is the Monolithic Architecture.


The monolithic architecture is to make all the features a bunch.
So if you develop a monolithic architecture, you can guarantee optimal efficiency, but problems arising from one function will affect the entire system.
For this reason, it is a structure suitable for a simple structure application, but it is a structure which degrades stability for an application having a complicated function.
On the other hand, the MSA separates services by function, preventing errors in one service from affecting other services.
Instead, the amount of data communication between each service is increased, so that more resources are consumed and additional code development is required to match the consistency of the shared data.


12-Factors App
The 12-Factors App definition is defined in the header of the 12factor.net site.

In the modern era, software is commonly delivered as a service: called web apps, or software-as-a-service. The twelve-factor app is a methodology for building software-as-a-service apps that: 
Use declarative formats for setup automation, to minimize time and cost for new developers joining the project;
Have a clean contract with the underlying operating system, offering maximum portability between execution environments;
Are suitable for deployment on modern cloud platforms, obviating the need for servers and systems administration;
Minimize divergence between development and production, enabling continuous deployment for maximum agility;
And can scale up without significant changes to tooling, architecture, or development practices.


For more information on the 12 Factors, please visit the 12factor.net site.


  • Multi-tenancy

Multi-tenancy is an architecture with multiple users (tenant).
If you compare it to a house, it is an apartment.



We are already accustomed to this kind of service environment.
For example, let's look at the webmail service.
The webmail service is a web application, but several users are using it in their own environment.
Their mail boxes can not be separated and can not be viewed by others. You can also use your own personalized UI by creating your own screens or mailboxes.
As described above, the storage space and the setting contents are managed independently for each user in one service.
The advantage of this architecture is that it can save money because one system is shared by multiple users.
It is also advantageous that data integration is easy because it has a schema internally that looks different from user to user.
However, in order to show different users, it is necessary to develop the service precisely, and there is also a disadvantage that if a bug occurs, it can affect the entire system.
In addition, data is integrated and managed, making it vulnerable to security.


  • Container

Container technology is compared with virtualization technology.
These two seemingly similar sides are always comparable.
But strictly speaking, container technology and virtualization technology are completely different.



Virtualization technology is virtualization of the entire OS, and container technology isolates the environment on the OS.
So, container technology is no booting process during instance creation, and it is fast because it shares OS resources.
Container technology keeps each operating environment in a container and isolates them from each other.
It is a built-in feature of Linux, and it is a technology that will support future Windows operating systems.


  • API

API (Application Programming Interface) is an interface technology between programs.
A UI (User Interface) is required for one program to communicate with a user.
Similarly, APIs are required for different applications to interact.
The API has a structure for requesting and responding to a service in accordance with previously promised rules.
In recent years, REST APIs have been mainly developed and data types are being developed mainly using JSON format.



The initial API was defined as a packet, and the data was developed as a binary.
The packet type API is defined by the developer as a packet structure.
Therefore, the structure of the packet is all different, so much learning was needed for the API usage.
Also, since the data format is binary, the contents can not be known without the packet definition document.
So, Simple Object Access Protocol (SOAP) has emerged.
SOAP was introduced to standardize packet types, and it was able to serialize and transmit objects.
This means that it is possible to represent hierarchical data that was difficult to generate in a packet-type protocol.
Distributing WSDL that defines SOAP in XML format also makes protocol sharing much easier.
However, there are disadvantages of data corruption when interworking with other languages, which requires much effort to be developed.
The REST API was easy to integrate regardless of the platform, development language, or device type using the Web protocol, and the readability of the data was enhanced by using the JSON format.
The JSON format provides a compact size compared to XML and is the most recently developed API type.


  • PaaS

CNA is an application for the SaaS model. So it works on the foundation of PaaS technology.
For more information on PaaS, see "What is cloud computing?".

댓글 1개:

  1. It's clear you've put a lot of effort into ensuring readers can take away valuable insights.
    Amazon Store in Dubai

    답글삭제