solr4.4 노트 최적화
indexed fields
The number of indexed fields greatly increases the following:
1.Memory usage during indexing
2.Segment merge time
3.Optimization times
4.Index size
These effects can be reduced by the use of omitNorms="true"
omitNorms:this disables length normalization and index-time boosting for the field, and saves some memory,defaults to true for primitive field types (int, float, boolean, string...)
그 중 한 단계:
Parameters
Lets define a couple of parameters involved in the process of merging the segments that compose an index:
mergeFactor: this parameter determines many things, like how many segments are going to be merged into a new one, the maximum number of segments that can be in a level and the span of each level. Can be set in solrconfig.xml.
minMergeSize: all segments whose size is less than this parameter’s value will belong to the same level. This value is fixed.
maxMergeSize: all segments whose size is greater than this parameter’s value won’t be ever merged. This value is fixed.
maxMergeDocs: all segments containing more documents than this parameter’s value won’t be merged. Can be set in solrconfig.xml.
noting:
minMergeSize has a fixed value of 1.6 MiB. This means that any segment whose size is less than 1.6 MiB will be included in the last level.
maxMergeSize has a fixed value of 2 GiB. This means that any segment whose size is greater than 2 GiB will never be merged.
데이터베이스 테이블은solr로 인덱스 만들기
[url]Index a DB table directly into Solr[/url]
http://wiki.apache.org/solr/DataImportHandler
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
제7장 Apache Solr의 Sample 프로그램 실행Solr 설치 폴더로 이동하여 Solr을 시작합니다.bin/solr start ※solr의 정지 커맨드는?bin/solr stop -all 리눅스에서는 보통 post 명령을 사용하는 것 같지만 Widows라면 사용할...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.