摘要: "中心词抽取项目总结" "B2B国际站Query重写.ppt" "达观数据搜索引擎的Query自动纠错技术和架构详解" "Natural Language Processing" "Simrank++ Query rewriting through link analysis of the clic 阅读全文
posted @ 2016-10-18 19:31 东岸往事 阅读(1138) 评论(0) 推荐(0) 编辑
摘要: Kafka replication=========[kafka_replication_detailed_design_v2.pdf](https://issues.apache.org/jira/secure/attachment/12509575/kafka_replication_detai... 阅读全文
posted @ 2015-06-01 20:10 东岸往事 阅读(460) 评论(0) 推荐(0) 编辑
摘要: cassandra两种方式:[Cassandra-ArchitectureCommitLog](http://wiki.apache.org/cassandra/ArchitectureCommitLog)[Cassandra持久化-Durability](http://wiki.apache.or... 阅读全文
posted @ 2015-05-26 16:11 东岸往事 阅读(2140) 评论(0) 推荐(0) 编辑
摘要: Solr DIH 源码解析 ========= DataImportHandler.handleRequestBody()中的importer.runCmd(requestParams, sw) 这里会先创建DIHWriter getSolrWriter在DataImportHandler的实现,是 阅读全文
posted @ 2015-03-30 21:28 东岸往事 阅读(431) 评论(0) 推荐(0) 编辑
摘要: elasticsearch 1.3.0 ========= 发送请求 创建 索引 这里先跟踪下索引的流程,netty的bootstrap暂且不管,从HttpRequestHandler的messageReceived说起 这里的dispatchRequest启示就是NettyHttpServerTr 阅读全文
posted @ 2015-03-06 13:57 东岸往事 阅读(498) 评论(0) 推荐(1) 编辑
摘要: solr DIH 知识梳理=========###web.xml中listener配置``` org.apache.solr.handler.dataimport.scheduler.ApplicationListener```###配置文件dataimport.properties ... 阅读全文
posted @ 2015-02-05 21:45 东岸往事 阅读(1544) 评论(0) 推荐(0) 编辑
摘要: solr java.lang.NumberFormatException=========现象:定时每天全量,每隔5分钟增量DIH从mysql导入数据solr4j返回加过Id列表,一天偶然出现```java.lang.NumberFormatException: For input string: ... 阅读全文
posted @ 2015-02-03 22:09 东岸往事 阅读(468) 评论(0) 推荐(0) 编辑
摘要: btrace使用=========目录btracee是btrace的解压目录btrace/btrace是btrace的项目工程```root@ubuntu:/usr/local/bogon/btrace# tree btracebtrace├── bin├── btrace-agent.jar├──... 阅读全文
posted @ 2015-01-27 16:30 东岸往事 阅读(888) 评论(0) 推荐(1) 编辑
摘要: jstack jmap jstat=========代码,这里以这个为例[怎样使用jstack诊断Java应用程序故障](http://crane-ding.iteye.com/blog/968862)```public class DeadLock { public static void mai... 阅读全文
posted @ 2015-01-24 14:10 东岸往事 阅读(514) 评论(0) 推荐(0) 编辑
摘要: SpinLock实现,摘自并发编程网```package com.juc.simple;import java.util.concurrent.atomic.AtomicReference;/** * a implement of spinlock based on cas * */public ... 阅读全文
posted @ 2015-01-19 16:47 东岸往事 阅读(395) 评论(0) 推荐(0) 编辑