Login
Discover
Waves
Decks
Upgrade
Login
Signup
25
hongsgo
Available
Used
Resource Credits
31 Followers
1 Following
March 2, 2018
RSS feed
Blog
Blog
Posts
Comments
Communities
Wallet
Follow
hongsgo
elasticsearch
Friday, May 4, 2018 8:44 AM
Elasticsearch Developer Course Review
Day 1 shard는 하나의 Lucene instance이며, ElasticSearch의 각 node들에 분산되어 처리되는 작업 단위이다. cluster들은 nodes로 구성되며, 각 nodes에는 index의 (primary/replica) shard들이 있다. shard들은 다시 여러개의 segments들로 구성되며, segments들은 immutable속성을
$ 0.000
1
3
hongsgo
mysql
Friday, May 4, 2018 8:36 AM
mysql problems-with-null
Mysql에 마이그레이션에 대한 검증 쿼리를 만들다가 null값 조건 사용과 관련하여 미처 몰랐던 내용을 알게되어 공유 드립니다. 질문 : 아래 A/B의 SELECT 결과 값은 무엇 일까요 A. SELECT IF(NULL != 11, ‘True’, ‘False’); B. SELECT IF(NULL != NULL , ‘True’, ‘False’); 결과 A.
$ 0.000
1
hongsgo
avro
Friday, May 4, 2018 8:29 AM
Avro Schema Registry Convert To ESMapping
GitHubLink 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 load Avro schema using Registry
$ 0.000
1
hongsgo
execute
Friday, May 4, 2018 7:14 AM
Execute Around Pattern
Github Link public class ExecuteAround { //data.txt //1 //2 public static final String RESOURCE_FILE_PATH = "data/data.txt"; @Test public void testSingleLine() throws IOException, URISyntaxException
$ 0.000
2