Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8110D185D0 for ; Thu, 17 Sep 2015 02:47:33 +0000 (UTC) Received: (qmail 54290 invoked by uid 500); 17 Sep 2015 02:47:32 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 54223 invoked by uid 500); 17 Sep 2015 02:47:32 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 54212 invoked by uid 99); 17 Sep 2015 02:47:32 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Sep 2015 02:47:32 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id 629A2AC0111 for ; Thu, 17 Sep 2015 02:47:32 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r965707 - in /websites/production/cxf/content: cache/docs.pageCache docs/using-apache-htrace.html Date: Thu, 17 Sep 2015 02:47:32 -0000 To: commits@cxf.apache.org From: buildbot@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150917024732.629A2AC0111@hades.apache.org> Author: buildbot Date: Thu Sep 17 02:47:29 2015 New Revision: 965707 Log: Production update by buildbot for cxf Modified: websites/production/cxf/content/cache/docs.pageCache websites/production/cxf/content/docs/using-apache-htrace.html Modified: websites/production/cxf/content/cache/docs.pageCache ============================================================================== Binary files - no diff available. Modified: websites/production/cxf/content/docs/using-apache-htrace.html ============================================================================== --- websites/production/cxf/content/docs/using-apache-htrace.html (original) +++ websites/production/cxf/content/docs/using-apache-htrace.html Thu Sep 17 02:47:29 2015 @@ -117,12 +117,16 @@ Apache CXF -- Using Apache HTrace

-
  • Overview
  • Distributed Tracing in Nutshell
  • Distributed Tracing in Apache CXF
  • Configuring Client
  • Configuring Server
  • Distributed Tracing In Action: Usage Scenarios +/*]]>*/

    Overview

    Apache HTrace is a tracing framework intended for use with distributed systems written in java. Since version 3.1.3, Apache CXF fully supports integration with Apache HTrace, both on client side and server side. This section gives a complete overview on how distributed tracing support is supported in JAX-RS applications built on top of Apache CXF.

    Distributed Tracing in Nutshell

    Distributed tracing, first described by Google in Dapper, a Large-Scale Distributed Systems Tracing Infrastructure paper became increasingly important topic these days. With microservices (aka SOA) gaining more and more adoption, the typical applications are built using dozens or even hundreds of small, distributed pieces. The end-to-end traceability of the requests (or any kind of work performed on user's behalf) is hard task to accomplish, particularly taking into account asyncronous or/and concurrent invocations. Apache HTrace is inspired by Dapper, a Large-Scale Distributed Systems Tracing Infrastructure paper and essentially is a full-fledged distributed tracing framework.

    Distributed tracing is additional instrumentation layer on top of new or existing applications. In terms of distributed tracing, span represents a basic unit of work. For example, executing database query is a span. Spans are identified by a unique 64-bit ID for the span and another 64-bit ID for the trace the span is a part of. Spans also have other data, such as descriptions, timelines, key-value annotations, the ID of the span that caused them (parent), and process ID’s (normally IP address and process name). Spans are started and stopped, and they keep track of their timing information. Once span is created, it should be stopped at some point in the future. In turn, trace is a set of spans forming a tree-like structure. For example, if you are running a JAX-RS service, a trace might be formed by a PUT request.

    From implementation prospective, and in context of Java applications, spans are attached to their threads (in general, thread which created the span should close it). However it is possible to transfer spans from thread to thread in order to model a complex execution flows. It is also possible to have many spans in the same thread, as long as they are properly created and closed. In the next sections we are going to see the examples of that.

    Another two important concepts of in context of distributed tracing are span receivers and samplers. Essentially, all spans (including start/stop time, key/value annotations, timelines, ..) should be persisted (or collected) somewhere. Span receiver is a collector within a process that is the destination of spans when a trace is running (it could be a console, local file, data store, ...). Apache HTrace provides span receivers for Apache HBase, Apache Flume and Twitter Zipkin. From other side, samplers allow to control the frequency of the tracing (all the time, never, probability driven, ...). Using the sampler is the way to minimize tracing overhead (or just amount of traces) by limiting them to particular conditions.

    Distributed Tracing in Apache CXF

    Apache CXF is a very popular framework for building services and web APIs. No doubts, it is going to play even more important role in context of microservices architecture letting developers to quickly build and deploy individual JAX-RS/JAX-WS services. As it was just mentioned before, distributed tracing is an essential tec hnique to monitor the application as whole, breaking the request to individual service traces as it goes through and crosses the boundaries of threads, processes and machines.

    The current integration of distributed tracing in Apache CXF supports Apache HTrace only in JAX-RS 2.x applications. From high-level prospective, it consists of three main parts:

    • TracerContext (injectable through @Context annotation)
    • HTraceProvider (server-side JAX-RS provider) and HTraceClientProvider (client-side JAX-RS provider)
    • HTraceFeature (server-side Apache CXF feature to simplify Apache HTrace configuration and integration)

    Apache CXF uses HTTP headers to hand off tracing context from the client to the service and from the service to service. Those headers are used internally by HTraceProvider and HTraceClientProvider, but are configurable. The default header names are declared in the TracerHeaders class:

    • X-Trace-Id: contains a current trace ID
    • X-Span-Id: contains a current span ID

    By default, HTraceProvider will try pass the currently active span through HTTP headers on each service invocation. If there is no active span, the new span will be created and passed through HTTP headers on per-invocation basis. Essentially, just registering the HTraceProvider on the client and HTraceClientProvider on the server is enough to have tracing context to be properly passed everywhere. The only configuration part which is necessary are span receiver(s) and sampler.

    It is also worth to mention the way Apache CXF attaches the description to spans. With regards to the client integration, the description becomes a full URL being invoked prefixed by HTTP method, for example: GET http://localhost:8282/books. On the server side integration, the description becomes a relation JAX-RS resource path prefixed by HTTP method, f.e.: GET books, POST book/123

    Configuring Client

    There are a couple of way the JAX-RS client could be configured, depending on the client implementation. Apache CXF provides its own WebClient which could be configured just like that (in future versions, there would be a simpler ways to do that using client specific features):

    @@ -148,7 +152,11 @@ final Response response = client .request() .accept(MediaType.APPLICATION_JSON) .get(); -

    Configuring Server

    Server configuration is a bit simpler than client one thanks to the feature class available, HTraceFeature. Depending on the way the Apache CXF is used to configure JAX-RS services, it could be part of JAX-RS application configuration, for example:

    +

    Configuring tracing header names

    To change the default HTTP header names, used to transfer the tracing context from client to server, it is enough to define two properties only: TracerHeaders.HEADER_SPAN_ID and TracerHeaders.HEADER_TRACE_ID. For example:

    +
    final ClientConfiguration config = WebClient.getConfig(client);
    +config.getRequestContext().put(TracerHeaders.HEADER_SPAN_ID, "CUSTOM_HEADER_SPAN_ID");
    +config.getRequestContext().put(TracerHeaders.HEADER_TRACE_ID, "CUSTOM_HEADER_TRACE_ID");
    +

    It is very important to keep client and server HTTP headers configuration in sync, otherwise the server won't be able to establish the current tracing context properly.

    Configuring Server

    Server configuration is a bit simpler than client one thanks to the feature class available, HTraceFeature. Depending on the way the Apache CXF is used to configure JAX-RS services, it could be part of JAX-RS application configuration, for example:

    @ApplicationPath("/")
     public class CatalogApplication extends Application {
         @Override
    @@ -173,7 +181,16 @@ final JAXRSServerFactoryBean factory = R
     factory.setFeatures(Arrays.< Feature >asList(new HTraceFeature(HTraceConfiguration.fromMap(properties))));
     ...
     return factory.create();
    -

    Once the span receiver(s) and sampler are properly configured, all generated spans are going to be collected and available for analysis and/or visualization.

    Distributed Tracing In Action: Usage Scenarios

    In the following subsections we are going to walk through many different scenarios to illustrate the distributed tracing in action, starting from the simplest ones and finishing with asynchronous JAX-RS services. All examples assume that configuration has been done (see please Configuring Client and Configuring Server sections above).

    Example #1: Client and Server with default distributed tracing configured

    In the f irst example we are going to see the effect of using default configuration on the client and on the server, with only HTraceClientProvider  and HTraceProvider registered. The JAX-RS resource endpoint is pretty basic stubbed method:

    +

    Once the span receiver(s) and sampler are properly configured, all generated spans are going to be collected and available for analysis and/or visualization.

    Configuring tracing header names

    As with the client, to change the default HTTP header names, used to establish the tracing context on the server, it is enough to define two properties only: TracerHeaders.HEADER_SPAN_ID and TracerHeaders.HEADER_TRACE_ID. For example:

    +
    final Map<String, Object> headers = new HashMap<String, Object>();
    +headers.put(TracerHeaders.HEADER_SPAN_ID, "CUSTOM_HEADER_SPAN_ID");
    +headers.put(TracerHeaders.HEADER_TRACE_ID, "CUSTOM_HEADER_TRACE_ID");
    +            
    +final JAXRSServerFactoryBean sf = new JAXRSServerFactoryBean();
    +sf.setProperties(headers);
    +...
    +sf.create();
    +

    It is very important to keep client and server HTTP headers configuration in sync, otherwise the server won't be able to establish the current tracing context properly.

    Distributed Tracing In Action: Usage Scenarios

    In the following subsections we are going to walk through many different scenarios to illustrate the distributed tracing in action, starting from the simplest ones and finishing with asynchronous JAX-RS services. All examples assume that configuration has been done (see please Configuring Client and Configuring Server secti ons above).

    Example #1: Client and Server with default distributed tracing configured

    In the first example we are going to see the effect of using default configuration on the client and on the server, with only HTraceClientProvider  and HTraceProvider registered. The JAX-RS resource endpoint is pretty basic stubbed method:

    @Produces( { MediaType.APPLICATION_JSON } )
     @GET
     public Collection<Book> getBooks() {
    @@ -293,7 +310,7 @@ public Collection<Book> getBooks()
         .accept(MediaType.APPLICATION_JSON)
         .async()
         .get();
    -

    In this respect, there is no difference from the caller prospective however a bit more work is going under the hood to transfer the active tracing span from JAX-RS client request filter to client response filter as in general those are executed in different threads (similarly to server-side asynchronous JAX-RS resource invocation). The actual invocation of the request by the client (with process name jaxrsclient/192.168.0.100) and consequent invocation of the service on the server side (process name jaxrsserver/192.168.0.100) is going to generate the following sample traces:

    Future Work

    TODO

+

In this respect, there is no difference from the caller prospective however a bit more work is going under the hood to transfer the active tracing span from JAX-RS client request filter to client response filter as in general those are executed in different threads (similarly to server-side asynchronous JAX-RS resource invocation). The actual invocation of the request by the client (with process name jaxrsclient/192.168.0.100) and consequent invocation of the service on the server side (process name jaxrsserver/192.168.0.100) is going to generate the following sample traces:

Future Work

The Apache CXF is very proud to offer Apache HTrace integration. At the current stage, it was a conscious decision to keep the minimal API and provide the set of necessary features only. However, there is a strong commitment to evolve not only Apache HTrace integration, but the distributed tracing support in general.