Distributed application runtime 'Dapr' that supports Microsoft's 'microservice development' reaches version 1.0
Microsoft's open source software ' Distributed Application Runtime (Dapr) ' has reached version 1.0. Dapr is a runtime that supports microservices development and was released 'for products' about a year and a half after the alpha version was released in October 2019.
Announcing Dapr v1.0 | Dapr Blog
The community effort that delivered Dapr v1.0 --Open Source Blog
Release Dapr Runtime v1.0.0 · dapr / dapr · GitHub
https://github.com/dapr/dapr/releases/tag/v1.0.0
You can see what kind of runtime Dapr is by watching the following movie.
Introducing Dapr: The Distributed Application Runtime-YouTube
When developing microservices, it is important to design the communication of the application. In conventional microservice development, elements such as each application and data store communicated directly with each other, making it difficult to convert monolithic microservices and replacing applications, and it becomes a barrier to the introduction of new applications. There was something.
In a nutshell, Dapr is a 'service that organizes microservices by role and function,' and is a runtime that transparently provides communication functions to applications. By deploying, each application becomes independent of the communication destination, so it is easy to move services to different environments or deploy new applications. For example, by using Dapr for communication between an application and a data store, it is possible to use Redis in a test environment and a cloud database in a production environment without changing the application code.
The feature of Dapr is that it is provided as a
The application uses the SDK provided for languages such as Java, Python, Go, JavaScript, and Rust to access Dapr using HTTP or gRPC. Dapr is not intended for use with Kubernetes, but if you use it with Kubernetes, the Dapr container will be inserted as a sidecar in the pod.
A service mesh represented by
The following is an example of development using Dapr, which is a clock service in which each application communicates with Pub / Sub via Dapr for Redis of the data store.
Microservices made with dapr --Qiita
https://qiita.com/kzmake/items/4136a11fa301cdec4ccb
Such Dapr reached version 1.0 on February 17, 2021, about a year and a half after the alpha version was released in October 2019. Version 1.0 is positioned as 'production ready', which means that we have reached the product stage from the development stage.
The number of contributors in Dapr's GitHub repository has steadily increased since the alpha release, reaching 700 in February 2021. Dapr is also involved in the development of companies such as
Dapr commented that reaching version 1.0 was 'a testament to the efforts of the community.' In the future, while strengthening existing building blocks, it seems that it is also considering providing new building blocks such as reading and writing cloud settings.
Related Posts:
in Software, Web Service, Posted by darkhorse_log