메뉴 건너뛰기

Cloudera, BigData, Semantic IoT, Hadoop, NoSQL

Cloudera CDH/CDP 및 Hadoop EcoSystem, Semantic IoT등의 개발/운영 기술을 정리합니다. gooper@gooper.com로 문의 주세요.


solr 7.1이후 solr.IntField, solr.FloatField, solr.DoubleField, solr.DateField를 지원하지 않아서 

Error CREATEing SolrCore 'dashboard_test_shard1_replica_n1': Unalbe to create core [dashboard_test_shard1_replica_n1] Caused by: solr.IntField

혹은 Plugin init failure for [schema.xml] fieldType "pdate": Error loading class 'solr.IntField' 같은 오류가 발생하므로 schema.xml나 managed-schema.xml를 다음과 같이 수정해주어야 한다. 


변경전

    <fieldType name="pint" class="solr.IntField" />

    <fieldType name="plong" class="solr.IntField" />

    <fieldType name="pfloat" class="solr.FloatField" />

    <fieldType name="pdouble" class="solr.DoubleField" />

    <fieldType name="pdate" class="solr.DateField" sortMissingLast="true" />


변경후

    <fieldType name="pint" class="solr.TrieIntField" />

    <fieldType name="plong" class="solr.TrieIntField" />

    <fieldType name="pfloat" class="solr.TrieFloatField" />

    <fieldType name="pdouble" class="solr.TrieDoubleField" />

    <fieldType name="pdate" class="solr.TrieDateField" sortMissingLast="true" />

번호 제목 날짜 조회 수
120 [vue storefrontui]외부 API통합하기 참고 문서 2022.02.09 9610
119 oracle 접속 방식에 따른 --connect 지정 방법 2022.02.11 10409
118 service name방식의 oracle을 메타정보 저장소로 사용할때 Hue Configuration설정하는 방법 2022.02.12 12217
117 Oracle RAC 구성된 DB서버에 대한 컴포넌트별 설정 방법 2022.02.12 14535
116 [CentOS 7.4]Hadoop NFS gateway기동시 Cannot connect to port 2049 오류 발생시 확인/조치 2022.03.02 12837
115 [TLS]TLS용 사설 인증서 변경 혹은 신규 지정시 No trusted certificate found 오류 발생시 확인및 조치사항 2022.03.15 13413
114 [TLS]pkcs12형식의 인증서 생성및 jks형식 인증서 생성 커맨드 예시 2022.03.15 10783
113 Hue impala에서 query결과를 HDFS 파일로 export시 AuthorizationException: User 'gooper1234' does not have privileges to access: db명.query_impala_123456 2022.03.17 12895
112 [application수행 로그]Failed to read the application application_123456789012_123456시 조치 방법 2022.03.21 12158
111 [oozie]Oozie WF수행시 단계별 ID넘버링 비교/설명 2022.03.23 12586
110 HDFS에서 quota 설정 방법및 확인 방법 2022.03.30 11842
109 hue메타 정보를 저장(oracle DB)하는 내부 테이블을 이용하여 전체 테이블목록, 전체 코디네이터 목록, 코디네이터기준 workflow구조를 추출하는 쿼리문 2022.04.01 11633
» collection생성혹은 collection조회시 Plugin init failure for [schema.xml] fieldType "pdate": Error loading class 'solr.IntField' 오류 조치사항 2022.04.07 10996
107 [hive] hive.tbls테이블의 owner컬럼값은 hadoop.security.auth_to_local에 의해서 filtering된다. 2022.04.14 9691
106 [oracle]10자리 timestamp값을 날짜로 변환하는 방법 2022.04.14 5928
105 Could not authenticate, GSSException: No valid credentials provided (Mechanism level: Failed to find any kerberos tgt) 2022.04.28 12210
104 restaurant-controller,에서 등록 예시 2022.04.30 9043
103 주문 생성 데이터 예시 2022.04.30 13354
102 주문히스토리 조회 2022.04.30 9350
101 [bitbucket] 2022년 3월 2일 부터 git 작업시 기존에 사용하던 비빌번호를 사용할 수 없도록 변경되었다. 2022.04.30 12436
위로