index-tracing microservices with microprofile-180222 · tracing in a microservice environment 14...

28
Discover. Collaborate. Deploy. Tracing Your Microservices is Easier with Eclipse MicroProfile URL: https://github.com/eclipse/microprofile-opentracing Kevin Sutter, MicroProfile lead @kwsutter https://www.linkedin.com/in/kevinwsutter/ Steve Fontes, OpenTracing lead https://www.linkedin.com/in/stevefontes/

Upload: others

Post on 30-Jul-2020

13 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

Discover. Collaborate. Deploy.Tracing Your Microservices is Easier with Eclipse MicroProfileURL: https://github.com/eclipse/microprofile-opentracing

Kevin Sutter, MicroProfile lead@kwsutterhttps://www.linkedin.com/in/kevinwsutter/

Steve Fontes, OpenTracing leadhttps://www.linkedin.com/in/stevefontes/

Page 2: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

Please Note• IBM’s statements regarding its plans, directions, and intent are subject to change or

withdrawal without notice at IBM’s sole discretion. Information regarding potential future products is intended to outline our general product direction and it should not be relied on in making a purchasing decision.

• The information mentioned regarding potential future products is not a commitment, promise, or legal obligation to deliver any material, code or functionality. Information about potential future products may not be incorporated into any contract.

• The development, release, and timing of any future features or functionality described for our products remains at our sole discretion I/O configuration, the storage configuration, and the workload processed. Therefore, no assurance can be given that an individual user will achieve results similar to those stated here.

2/* Discover. Collaborate. Deploy. */

Page 3: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

Agenda• What is MicroProfile?• Content of MicroProfile 1.3• OpenTracing Introduction• OpenTracing Demo• Questions (and some answers)

/* Discover. Collaborate. Deploy. */ 3

Page 4: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

What is Eclipse MicroProfile?• Microservice Innovation!• Vendor-neutral programming model, designed in the open, for

Java microservices• Provide core capabilities for building fault tolerant, scalable

microservices• Increasing the rate and pace of innovation beyond Java EE

/* Discover. Collaborate. Deploy. */ 4

Page 5: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

Community - individuals, organizations, vendors

5

Page 6: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

MicroProfile 1.0 (Q3 CY2016)

6

MicroProfile 1.0

JAX-RS 2.0JSON-P 1.0CDI 1.2

= Updated= No change from last release

= New

Page 7: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

Eclipse MicroProfile 1.1 (Q2 CY2017)

7

MicroProfile 1.1

JAX-RS 2.0JSON-P 1.0CDI 1.2 Config 1.0

= Updated= No change from last release

= New

Page 8: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

Eclipse MicroProfile 1.2 (Q2 CY2017)

8

MicroProfile 1.2

JAX-RS 2.0JSON-P 1.0CDI 1.2 Config 1.1

FaultTolerance

1.0

JWTPropagation

1.0 Health

Check 1.0Metrics 1.0

= Updated= No change from last release

= New

Page 9: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

Eclipse MicroProfile 1.3 (Q4 CY2017)

9

MicroProfile 1.3

JAX-RS 2.0JSON-P 1.0CDI 1.2 Config 1.2

FaultTolerance

1.0

JWTPropagation

1.0 Health

Check 1.0Metrics 1.1

Open Tracing 1.0

Open API 1.0

= Updated= No change from last release

= New

Rest Client 1.0

Page 10: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

Eclipse MicroProfile 1.4 (Q1 CY2018 ??)

10

MicroProfile 1.4

JAX-RS 2.0JSON-P 1.0CDI 1.2 Config 1.2

FaultTolerance

1.0

JWTPropagation

1.0 Health

Check 1.0Metrics 1.1

Open Tracing 1.0

Open API 1.0

= Updated= No change from last release

= New

Rest Client 1.0

• Improve developer documentation of existing specifications

• Incremental specification updates

Page 11: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

Eclipse MicroProfile 2.0 (Q2 CY2018 ??)

11

MicroProfile 2.0

JAX-RS 2.1JSON-P 1.1CDI 2.0 Config 1.2

FaultTolerance

1.0

JWTPropagation

1.0 Health

Check 1.0Metrics 1.1

Open Tracing 1.0

Open API 1.0

= Updated= No change from last release

= New

Rest Client 1.0 JSON-B 1.0

Rebase on Java EE 8

Page 12: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

MicroProfile 1.3

/* Discover. Collaborate. Deploy. */ 12

NEW/UPDATED ENTERPRISE CAPABILITIES FOR MICROSERVICES

Configuration 1.2Externalize configuration to improve portability

Open API 1.0provides a Java API for the OpenAPI v3 specification that developers can use to expose their API documentation

Open Tracing 1.0Allows services to easily participate in a distributed tracing environment

Typesafe Rest Client 1.0Provides a type-safe approach for invoking RESTful services over HTTP.

Metrics 1.1Common REST endpoints for monitoring service health

Page 13: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

MicroProfile 1.3

/* Discover. Collaborate. Deploy. */ 13

NEW/UPDATED ENTERPRISE CAPABILITIES FOR MICROSERVICES

Configuration 1.2Externalize configuration to improve portability

Open API 1.0provides a Java API for the OpenAPI v3 specification that developers can use to expose their API documentation

Open Tracing 1.0Allows services to easily participate in a distributed tracing environment

Typesafe Rest Client 1.0Provides a type-safe approach for invoking RESTful services over HTTP.

Metrics 1.1Common REST endpoints for monitoring service health

Page 14: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

Tracing in a Microservice environment

14

Tracing the flow of a request in a distributed environment has always been challenging but it is even more complex in a microservices

architecture, where requests traverse across not just architectural tiers but also multiple services.

Page 15: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

What is distributed tracing?

15

Microservice A

Distributed tracing client code

Microservice B

Distributed tracing client code

Microservice C

Distributed tracing client code

Request

Response

Distributed tracing server

Per request information

Service A request time

Service B request time time

Service C request time

Page 16: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

What is distributed tracing?

16

• Client code that runs in a service• Delivers request information to a distributed tracing server

• A distributed tracing server• Stores information from all the client code in the applications• Correlates the information from clients• Makes the information queriable and useful

Page 17: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

http://opentracing.io

17

• An opensource effort to provide a standard distributed tracing API• Defined for multiple languages• We’re interested in the Java API

• Allows application code to be decoupled from a specific distributed tracing system implementation

Page 18: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

Benefit of opentracing.io project

18

Service A

Distributed tracing client code

Request

Response

Zipkin server

OpenTracing API

OpenTracingzipkin Tracer

implementation

Service A

Distributed tracing client code

Request

Response

Jaeger server

OpenTracing API

OpenTracingjaeger Tracer

implementation

Page 19: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

OpenTracing API

19

• A standard API for working with distributed trace systems• Creates a “Span” for code that is to be traced• Start and end time of the Span• Correlation ID for the Span• Relationships to other Spans• Propagates Span information to downstream applications• Receives Span information from upstream applications

• Delivers the Span to the distributed tracing system

Page 20: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

MicroProfile OpenTracing 1.0

20

• https://github.com/eclipse/microprofile-opentracing

• Defines behaviors and an API for accessing an OpenTracing compliant Tracer object within your service

• Behaviors specify how incoming and outgoing requests will have OpenTracing Spans automatically created

Page 21: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

MicroProfile OpenTracing 1.0 behaviors

21

• No code needs to be added to your JAX-RS application

• For incoming JAX-RS requests• Extracts upstream Span information• Creates new Span as a child of the upstream Span (if it exists)• Makes the new Span the active Span• Finishes the Span when the request completes

• For outgoing JAX-RS requests• Requests sent with javax.ws.rs.client.Client• Creates a new Span as the child of the active Span (if it exists)• Finishes the Span when the outgoing request completes

Page 22: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

MicroProfile OpenTracing 1.0 API

22

• An @Traced annotation• Annotate a non-JAX-RS method

• Span created when the method starts• Span finished when the Method completes

• Use CDI injection to access the io.opentracing.Tracer that is configured for a service• @Inject io.opentracing.Tracer configuredTracer;• Can now used configuredTracer to access the full OpenTracing API

Page 23: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

MicroProfile OpenTracing Liberty implementation

23

• Requires two features• The mpOpenTracing-1.0 feature

• Only required for• @Traced• @Inject io.opentracing.Tracer

• A user provided feature that implements an io.opentracing Tracer• Always required for OpenTracing function• Allows automatic JAX-RS behaviors• Sample user feature for a Zipkin Tracer is provided as a WASDev sample

• https://repo1.maven.org/maven2/net/wasdev/wlp/tracer/liberty-opentracing-zipkintracer/1.0/liberty-opentracing-zipkintracer-1.0-sample.zip

• https://github.com/WASdev/sample.opentracing.zipkintracer

Page 24: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

Demo

24

• AcmeAir• Main Service is JavaScript• Other services are Java• BookingService uses

• CustomerService• FlightService

• Database is MongoDB

Page 25: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

Demo• Update Dockerfile to include required Zipkin user feature• Update server.xml to include required feature(s)• Update code to use @Traced annotation• Update code to use @Inject io.opentracing.Tracer• Send requests to the application• Examine distributed tracing spans in Zipkin

25

Page 26: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

Questions?

26

Page 27: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

Notices and disclaimers• © 2018 International Business Machines Corporation. No part of

this document may be reproduced or transmitted in any form without written permission from IBM.

• U.S. Government Users Restricted Rights — use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM.

• Information in these presentations (including information relating to products that have not yet been announced by IBM) has been reviewed for accuracy as of the date of initial publication and could include unintentional technical or typographical errors. IBM shall have no responsibility to update this information. This document is distributed “as is” without any warranty, either express or implied. In no event, shall IBM be liable for any damage arising from the use of this information, including but not limited to, loss of data, business interruption, loss of profit or loss of opportunity. IBM products and services are warranted per the terms and conditions of the agreements under which they are provided.

• IBM products are manufactured from new parts or new and used parts. In some cases, a product may not be new and may have been previously installed. Regardless, our warranty terms apply.”

• Any statements regarding IBM's future direction, intent or product plans are subject to change or withdrawal without notice.

• Performance data contained herein was generally obtained in a controlled, isolated environments. Customer examples are presented as illustrations of how those

• customers have used IBM products and the results they may have achieved. Actual performance, cost, savings or other results in other operating environments may vary.

• References in this document to IBM products, programs, or services does not imply that IBM intends to make such products, programs or services available in all countries in which IBM operates or does business.

• Workshops, sessions and associated materials may have been prepared by independent session speakers, and do not necessarily reflect the views of IBM. All materials and discussions are provided for informational purposes only, and are neither intended to, nor shall constitute legal or other guidance or advice to any individual participant or their specific situation.

• It is the customer’s responsibility to insure its own compliance with legal requirements and to obtain advice of competent legal counsel as to the identification and interpretation of any relevant laws and regulatory requirements that may affect the customer’s business and any actions the customer may need to take to comply with such laws. IBM does not provide legal advice or represent or warrant that its services or products will ensure that the customer follows any law.

27/* Discover. Collaborate. Deploy. */

Page 28: Index-Tracing Microservices with MicroProfile-180222 · Tracing in a Microservice environment 14 Tracing the flow of a request in a distributed environment has always been challenging

Notices and disclaimers continued

• Information concerning non-IBM products was obtained from the suppliers of those products, their published announcements or other publicly available sources. IBM has not tested those products about this publication and cannot confirm the accuracy of performance, compatibility or any other claims related to non-IBM products. Questions on the capabilities of non-IBM products should be addressed to the suppliers of those products. IBM does not warrant the quality of any third-party products, or the ability of any such third-party products to interoperate with IBM’s products. IBM expressly disclaims all warranties, expressed or implied, including but not limited to, the implied warranties of merchantability and fitness for a purpose.

• The provision of the information contained herein is not intended to, and does not, grant any right or license under any IBM patents, copyrights, trademarks or other intellectual property right.

• IBM, the IBM logo, ibm.com and [names of other referenced IBM products and services used in the presentation] are trademarks of International Business Machines Corporation, registered in many jurisdictions worldwide. Other product and service names might be trademarks of IBM or other companies. A current list of IBM trademarks is available on the Web at "Copyright and trademark information" at: www.ibm.com/legal/copytrade.shtml.

28/* Discover. Collaborate. Deploy. */