BlogHide Resteemshongsgo (25)in elasticsearch • 7 years agoElasticsearch Developer Course ReviewDay 1 shard는 하나의 Lucene instance이며, ElasticSearch의 각 node들에 분산되어 처리되는 작업 단위이다. cluster들은 nodes로 구성되며, 각 nodes에는 index의 (primary/replica) shard들이 있다. shard들은 다시 여러개의 segments들로 구성되며, segments들은…hongsgo (25)in mysql • 7 years agomysql problems-with-nullMysql에 마이그레이션에 대한 검증 쿼리를 만들다가 null값 조건 사용과 관련하여 미처 몰랐던 내용을 알게되어 공유 드립니다. 질문 : 아래 A/B의 SELECT 결과 값은 무엇 일까요 A. SELECT IF(NULL != 11, ‘True’, ‘False’); B. SELECT IF(NULL != NULL , ‘True’…hongsgo (25)in avro • 7 years agoAvro Schema Registry Convert To ESMappingGitHubLink I saw the below issue at ES forum. how-to-convert-avro-schema-to-elastic-search-mapping So I made this project for solving it. It has some features. First, you can…hongsgo (25)in execute • 7 years agoExecute Around PatternGithub Link public class ExecuteAround {