기본 콘텐츠로 건너뛰기

9월, 2019의 게시물 표시

Kibana visualize decimal point missing

I had some issues. value's decimal point was deleted in kibana visualization and dashboard value was a numeric field. I tried to change number format, but it didn't work. I figured the field was indexed as 'long' (default mapping) check my mapping info http://{localhost}:9200/{index_}*/_mapping timestamp: { type : "date" } ,   value: { type : "long" } ,   week: { type : "long" } I updated mapping type to float from long curl -X "PUT" "http://{localhost}:9200/_template/{template name}" \      -H 'Content-""type":" application/json; charset=utf-8' \      -d $'{   "index_patterns": [      "{index_}*"   ],   "template": "*",   "mappings": {     "docs": {       ....       "timestamp": {         "type": "date"       },       "value": { ...

1 Page

Amazon 6 pager 1) The context or Question 2) Approaches to answer the question - by whom, by which method and their conclusions 3) How is your attempt at answering the question different or the same from previous approaches 4) Now what? - that is, what's in it for the customer, the company and how does the answer to the question enable innovation on behalf of the customer. Toyota 1 pager 1) Objective 2) Current status 3) Question (과제) 4) Measure (대책) 5) Schedule A chapter of thought and made creates talent.

생산성 높이기

생산성을 높이기 위한 방법 - 특정 과업을 완료하기 위해 들이는 시간을 줄인다. - 특정 과업이 미치는 영향력을 높인다. - 레버리지가 좀 더 높은 과업으로 전환한다. 레버리지가 더 높은 과업의 예 - 멘토링 - 반복적인 작업을 자동화하는 도구 제작 - 배우고 끊임없이 개선하는 작업에 대한투자 - 추정된 영향력에 기반한 적극적인 우선순위화 - 기술대 화에 참여, 새로운 직원을 이끌 지침서 작성 - 필요할 때마다 오픈소스 도구 활동 -  번역 : http://jhrogue.blogspot.kr/2012/07/b-whats-single-most-valuable-lesson.html - 포스트 : http://www.quora.com/Whats-the-single-most-valuable-lesson-youve-learned-in-your-professional-life https://www.quora.com/profile/Edmond-Lau

Spring Redis Cluster Configuration

# build.gradle compile  'org.springframework.data:spring-data-redis' compile  'biz.paluch.redis:lettuce:4.5.0.Final' #RedisConfiguration @Configuration @ EnableRedisRepositories ( basePackageClasses  = { MyAppDomains. class  }) public class  RedisConfiguration {      @Value ( "${spring.redis.host}" )      private  String  redisHost ;      @Value ( "${spring.redis.port}" )      private int  redisPort ;      @Bean          public  RedisConnectionFactory  myRedisConnectionFactory () {         RedisClusterConfiguration clusterConfig =  new  RedisClusterConfiguration() ;          clusterConfig.clusterNode( redisHost ,  redisPort ) ;         re...

[Airflow] Update ElasticSearch Document

 def update_deleted(key):     es_client = Elasticsearch(hosts=ES_HOST, timeout=5000)     es_client.update_by_query(index='{}_{}'.format("index_name", '*'), body={         "script": {             "inline": "ctx._source.deletedYN = 'true'"         },         "query": {             "bool": {                 "must": [                     {                         "term": {                             "_type": 'docs'                         }                     },         ...