Skip to content

stevenschlansker/jackson-blackbird

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Jackson Blackbird

Upgrade your Afterburner for your Java 11+ Environment 🚀

The Afterburner has long been your engine of choice for maximum Jackson performance. But in the brave new Java 11 world, the trusty Afterburner is showing its age. It uses horrifying bytecode manipulation and cracks Unsafe.defineClass which will stop working soon.

Blackbird is Afterburner Mk II - powered by 100% renewable Lambda based fuel.

The LambdaMetafactory introduces a standard Java API for dynamically instantiating function objects. The current OpenJDK implementation generates anonymous classes in a somewhat similar fashion to the classic Afterburner. While the metafactory cannot generate comparably specialized implementations, we can write needed adapters as simple Java code and use the metafactory to create distinct call sites for every needed access path. This should allow each accessor to have a monomorphic call profile and easily inline for maximum performance.

If the module proves useful, eventually I hope to integrate it into jackson-modules-base or even as a default strategy for Jackson 3.

Status

Blackbird is new and not as mature as Afterburner, but has been tested and runs well. The code is written to fail-fast and explode on the tarmac rather than later at runtime.

Blackbird passes all the original Afterburner tests (except a couple that didn't make sense anymore).

Usage

Maven dependency

To use module on Maven-based projects, use following dependency:

<dependency>
  <groupId>org.jdbi.jackson-contrib</groupId> <!-- Temporary group ID, this will change! -->
  <artifactId>jackson-module-blackbird</artifactId>
  <version>0.0.1</version>
</dependency>

Non-Maven

Upgrade to Maven.

Registering module

To use the the Module in Jackson, simply register it with the ObjectMapper instance:

ObjectMapper mapper = new ObjectMapper()
mapper.registerModule(new BlackbirdModule());

after which you just do data-binding as usual:

Value val = mapper.readValue(jsonSource, Value.class);
mapper.writeValue(new File("result.json"), val);

If you're really brave and running with a modulepath, you may need to grant Blackbird access to your classes. This is done by calling the caller sensitive MethodHandles.lookup(). The module constructor allows you to customize which lookup instances are used for what classes.

What is optimized?

Following things are optimized:

  • For serialization (POJOs to JSON):
    • Getter methods are inlined using generated lambdas instead of reflection
    • Serializers for small number of 'primitive' types (int, long, boolean, String) are replaced with lambda-specialized generators, instead of getting delegated to JsonSerializers
  • For deserialization (JSON to POJOs):
    • Calls to default (no-argument) constructors are lambda-fied instead of using reflection
    • Calls to @JsonCreate factory methods and constructors with arguments get a slightly less efficient lambda based implementation
      • This is new in Blackbird; Afterburner never did this
    • Setter methods are called using lambdas instead of reflection
    • Deserializers for small number of 'primitive' types (int, long, boolean, String) are replaced with lambda-specialized parsers, instead of getting delegated to JsonDeserializers

... and what is not?

  • Any sort of direct field access. This may be possible to support someday but requires additional JDK support. Use methods instead.
  • Streaming parser/generator access
  • Tree Model: there isn't much that can be done at this level

Performance

Blackbird has been lightly performance tested using jmh on openjdk 11 and 12. For reading and writing a moderately complex bean, Blackbird performance seems to be almost exactly on par with Afterburner - up to 20% better than vanilla Jackson in some cases. At that point the method invocation overhead disappears behind the heat generated from the long parser and UTF8 decoder.

I used jitwatch with hsdis to verify the generated code at a superficial level. The generated call sites do seem to be good targets for inlining, although unfortunately jitwatch currently can't analyze lambdas very well so more advanced analysis will have to come later.

About

Afterburner 2.0 for Java 11+

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages