buffer-slayer 持久层吞吐量优化组件

我要开发同款
匿名用户2017年04月21日
70阅读
开发技术Java
所属分类开发工具、程序调试工具
授权协议Apache

作品详情

buffer-slayer是一个把请求在内存中buffer并批量发送的工具,适用于批量能显著提升性能的组件(redis-client、jdbc),支持一对一的回调。

快速启动io.bufferslayerbuffer-spring-jdbc1.1.0ReporterProperties reporterProperties = new ReporterProperties()        .setBufferedMaxMessages(500)        .setPendingMaxMessages(10000)        .setMetrics("inmemory")        .setMetricsExporter("http")        .setParallelismPerBatch(5)        .setSenderExecutor(new ThreadPoolExecutor(200,            200, 0, TimeUnit.MILLISECONDS, new SynchronousQueue()));BatchedJdbcTemplate template = new BatchedJdbcTemplate(reporterProperties);template.setDataSource(dataSource);Promise promise = template.update(...);promise.done(success -> ...)       .fail(reject -> ...);吞吐量对比BenchmarkModeCntScoreUnitsBatchedJdbcTemplateBenchmark.high_contention_batchedthrpt158709.042ops/sBatchedJdbcTemplateBenchmark.high_contention_unbatchedthrpt15271.529ops/sBatchedJdbcTemplateBenchmark.mild_contention_batchedthrpt152146.595ops/sBatchedJdbcTemplateBenchmark.mild_contention_unbatchedthrpt15262.621ops/sBatchedJdbcTemplateBenchmark.no_contention_batchedthrpt151194.852ops/sBatchedJdbcTemplateBenchmark.no_contention_unbatchedthrpt15201.806ops/s

 

声明:本文仅代表作者观点,不代表本站立场。如果侵犯到您的合法权益,请联系我们删除侵权资源!如果遇到资源链接失效,请您通过评论或工单的方式通知管理员。未经允许,不得转载,本站所有资源文章禁止商业使用运营!
下载安装【程序员客栈】APP
实时对接需求、及时收发消息、丰富的开放项目需求、随时随地查看项目状态

评论