클라우드 이벤트 스펙이란?

이동욱

2021/03/29

Categories: 네트워크 Tags: 클라우드 이벤트 스펙

클라우드 이벤트 스펙이란?


Screen Shot 2021-03-30 at 3 06 29 PM

Screen Shot 2021-03-30 at 3 11 01 PM

카프카 메시지 맵핑


Screen Shot 2021-03-30 at 3 24 17 PM

따라서 다음과 같은 JSON 형태로 작성하면 된다.

예제

------------------ Message -------------------

Topic Name: mytopic

------------------- key ----------------------

Key: mykey

------------------ headers -------------------

content-type: application/cloudevents+json; charset=UTF-8

------------------- value --------------------

{
    "specversion" : "1.0",
    "type" : "com.example.someevent",
    "source" : "/mycontext/subcontext",
    "id" : "1234-1234-1234",
    "time" : "2018-04-05T03:56:24Z",
    "datacontenttype" : "application/xml",

    ... further attributes omitted ...

    "data" : {
        ... application data encoded in XML ...
    }
}

-----------------------------------------------

참고 문헌


>> Home