Conversation
| @@ -0,0 +1,41 @@ | |||
| Druid Caffeine Cache | |||
There was a problem hiding this comment.
Fixed, and in general cleaned up the readme, and moved it to the correct location.
|
@drcrallen do you have any comparison of caffeine vs the existing local cache? Also what does this part mean?
If that is just about the tarball, IMO it's ok for us to just have one distribution, with most modules targeting 1.7 but this module targeting 1.8. If the pom achieves that then I think it is good the way it is. |
|
@gianm I didn't touch the distribution packaging extension. I think your suggestion is reasonable but would like to tackle distribution of this extension in a separate PR with appropriate community discussion and feedback. |
|
For local cache I have no comparison because its lock contention falls flat on its face in our production cluster. See #1836 and related. |
|
Also, this fixes #2411 (will add to master comment when I'm not on mobile) |
As long as we can get this figured out before the next release, that sounds fine. It's marked extensions-core (which SGTM) but as a core extension it should be in the tarball.
Would it be possible to do synthetic benchmarks? I'm not gonna insist but I'm just curious and others might be too. |
|
|
||
| ### Jars | ||
|
|
||
| For the sake of sanity if you are manually making an extension directory, release requires the following jars: |
There was a problem hiding this comment.
What does "for the sake of sanity" mean in this context?
There was a problem hiding this comment.
I can edit it to be clearer. I was trying to indicate this extension should be packaged with two jars (as of 0.9.0)
There was a problem hiding this comment.
IMO before this is in a release we should figure out how to make it part of the tarball, meaning this section and the earlier "How to use" won't be necessary.
|
|
||
| # Versioning | ||
|
|
||
| The versioning works like this: `druid_version.patch_set`. Such that `druid_version` is the version of druid the extension was compiled against, and `patch_set` is the "version" of the extension. |
There was a problem hiding this comment.
We don't do this with any other extensions. Any reason to have this here?
There was a problem hiding this comment.
ah, no, need to remove.
|
👍 on the code, although would like to figure out the packaging before release if possible. For a core extension "it's in the tarball, just update loadList" is a better story than "build it yourself or use pull-deps". |
|
@gianm I'll tag it for 0.9.2 for now. Hopefully I can bang around the distribution stuff a bit after 0.9.1 is qualified. |
|
Anyone who REALLY REALLY wants to use this NOW can use https://github.com/metamx/druid-cache-caffeine . One of the advantages of being in druid proper is the built-in pacakging, so I'm ok if it is desired to be solved before merging. |
|
@drcrallen Can you try upgrading to 2.3.1? I assume you haven't looked into the failure, but perhaps it was due to ben-manes/caffeine#90. |
|
@ben-manes thanks for the info. Yes I'll update for this PR For our prod servers we're using single-threaded executor since the moral of the story in general is "don't use java common FJP" |
|
In that case it was my fault. The bug was caused by all of the executor's task writing back to the cache. This would happen on the completion of a future (to assign a weight) or refresh to insert the new value. Previously the write buffer was unbounded, but when we switched to a bounded buffer I forgot to handle the case of all executor tasks performing a write-back. That meant none could proceed as they waited for an asynchronous task queued up, but with no threads available. This was surprising to have hit outside of a stress test given the available buffer slack, but it happened to a user. It was an easy fix and also improved eviction throughput (2.5M/s => 4M/s). I don't think you'd hit this bug given your usage patterns, though. |
|
Failed due to ben-manes/caffeine#93 |
See ben-manes/caffeine#93 (comment) for an explanation
| Druid Caffeine Cache | ||
| -------------------- | ||
|
|
||
| A highly performant local cache implementation for Druid based on [Caffeine](https://github.com/ben-manes/caffeine). Requires a JRE with a fix for https://bugs.openjdk.java.net/browse/JDK-8078490 |
There was a problem hiding this comment.
can we add a note caution and just mention this extension only works for java 8?
| |druid-lookups-cached-global|A module for [lookups](../querying/lookups.html) providing a jvm-global eager caching for lookups. It provides JDBC and URI implementations for fetching lookup data.|[link](../development/extensions-core/lookups-cached-global.html)| | ||
| |druid-s3-extensions|Interfacing with data in AWS S3, and using S3 as deep storage.|[link](../development/extensions-core/s3.html)| | ||
| |druid-s3-extensions|Interfacing with data in AWS S3, and using S3 as deep storage.|[link](../development/extensions-core/caffeine-cache.html)| | ||
| |druid-caffeine-cache|A local cache implementation backed by Caffeine.|[link](../development/extensions-core/s3.html)| |
There was a problem hiding this comment.
minor nit, but can we sort these lexicographically?
|
👍 |
|
@gianm I did some packaging magic, please check again |
|
👍 |
A new local cache implementation using Caffeine as the cache.
fixes #2411
We currently use this in production as l1 of a hybrid cache and memcached as the l2. The graph above shows the node mean TopN query time for production servers with and without using this cache in l1 (caffeine = false implies straight-to-memcached).
This extension requires java 8 to run, and therefore has a special profile that activates in the druid.io parent pom only when java8 is detected. This detection will eventually have to be improved to account for java9+
Packaging is accomplished by calling pull-deps a second time during the distribution build IFF the caller is using java8. Otherwise it retains the prior behavior.
In order to get this to work correctly, I had to put the distribution target in its own special rule set that will put it at the END of all other modules, including java8-only ones. If anyone else has a cleaner way of doing this, please let me know.
This is a contribution of https://github.com/metamx/druid-cache-caffeine