2015-02-07 2 views
3

아마 이것은 간단한 질문이지만 ElasticSearch에서 새로운 것 같습니다. 설치 한 1.4, Oracle 10g가 실행 중이며 jdbc 플러그인이 문제없이 ES에로드되었습니다. 마블은 마블/감각이 문 강을 만들려고 .. 작업 :Elasticsearch + Oracle JDBC River


PUT _river/mydata/_meta 
{ 
    "type": "jdbc", 
    "jdbc": { 
     "driver": "oracle.jdbc.OracleDriver", 
     "url": “jdbc:oracle:thin:@host:1521:SID", 
     "user": “oracleusr", 
     "password": “ oraclepass", 
     "index": “myindex", 
     "type": “mytype", 
     "sql": "select * from aTable" 
     } 
} 

그리고 난이 오류를 항상 얻을 다음 CLI에

{ 
    "error": "MapperParsingException[failed to parse]; nested: ElasticsearchParseException[Failed to derive xcontent from (offset=0, length=323): [80, 85, 84, 32, 95, 114, 105, 118, 101, 114, 47, 109, 52, 99, 47, 95, 109, 101, 116, 97, 32, 10, 123, 10, 32, 32, 34, 116, 121, 112, 101, 34, 58, 32, 34, 106, 100, 98, 99, 34, 44, 10, 32, 32, 34, 106, 100, 98, 99, 34, 58, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 34, 100, 114, 105, 118, 101, 114, 34, 58, 32, 34, 111, 114, 97, 99, 108, 101, 46, 106, 100, 98, 99, 46, 79, 114, 97, 99, 108, 101, 68, 114, 105, 118, 101, 114, 34, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 34, 117, 114, 108, 34, 58, 32, -30, -128, -100, 106, 100, 98, 99, 58, 111, 114, 97, 99, 108, 101, 58, 116, 104, 105, 110, 58, 64, 49, 48, 46, 49, 57, 52, 46, 49, 55, 46, 49, 55, 51, 58, 49, 53, 50, 49, 58, 109, 52, 99, 34, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 34, 117, 115, 101, 114, 34, 58, 32, -30, -128, -100, 109, 52, 99, 34, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 34, 112, 97, 115, 115, 119, 111, 114, 100, 34, 58, 32, -30, -128, -100, 32, 109, 52, 99, 49, 50, 48, 57, 48, 53, 34, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 34, 105, 110, 100, 101, 120, 34, 58, 32, -30, -128, -100, 109, 52, 99, 34, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 34, 116, 121, 112, 101, 34, 58, 32, -30, -128, -100, 112, 97, 105, 115, 34, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 34, 115, 113, 108, 34, 58, 32, 34, 115, 101, 108, 101, 99, 116, 32, 42, 32, 102, 114, 111, 109, 32, 77, 52, 67, 80, 65, 73, 83, 34, 10, 32, 32, 32, 32, 32, 32, 125, 10, 125, 10]]; ", 
    "status": 400 
} 

을 나는 얻는다 :

org.elasticsearch.index.mapper.MapperParsingException: failed to parse 
    at org.elasticsearch.index.mapper.DocumentMapper.parse(DocumentMapper.java:562) 
    at org.elasticsearch.index.mapper.DocumentMapper.parse(DocumentMapper.java:490) 
    at org.elasticsearch.index.shard.service.InternalIndexShard.prepareIndex(InternalIndexShard.java:413) 
    at org.elasticsearch.action.index.TransportIndexAction.shardOperationOnPrimary(TransportIndexAction.java:189) 
    at org.elasticsearch.action.support.replication.TransportShardReplicationOperationAction$AsyncShardOperationAction.performOnPrimary(TransportShardReplicationOperationAction.java:511) 
    at org.elasticsearch.action.support.replication.TransportShardReplicationOperationAction$AsyncShardOperationAction$1.run(TransportShardReplicationOperationAction.java:419) 
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) 
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) 
    at java.lang.Thread.run(Thread.java:745) 
Caused by: org.elasticsearch.ElasticsearchParseException: Failed to derive xcontent from (offset=0, length=323) 

나는 연결 pr이었다 oblem하지만 주위를 확인하는 것은 ES & Oracle의 매핑 문제입니다. 누군가 ES + Oracle River 통합을 완료 했습니까? 어떤 도움이라도 대단히 감사 할 것입니다.

답변

4

전방에 실제로 해결 된 해결책을 발견했습니다. 이 파서의

'http://127.0.0.1:9200/_river/jdbcriver/_meta' -d @config.json 

나도 몰라 :

{ 
    "type" : "jdbc" , 
    "jdbc" :{ 
     "strategy" : "oneshot", 
     "driver" : "oracle.jdbc.OracleDriver", 
     "url" : "jdbc:oracle:thin:@host:1521:DNS", 
     "user" : "user", 
     "password" : "password", 
     "sql" : "select * from aTable", 
     "poll" : "1h", 
     "scale" : 0, 
     "autocommit" : false, 
     "fetchsize" : 100, 
     "max_rows" : 0, 
     "max_retries" : 3, 
     "max_retries_wait" : "10s" 
    }, 
    "index" : { 
     "index" : "aIndex", 
     "type" : "aType", 
     "bulk_size" : 100 
    } 
} 

다음과 같은 컬로를 호출하는 대신에 명령을 넣는 내가 한 일은이 같은 JSON 설정 파일을 가지고있다 이 문제는 매력처럼 작용했습니다.

감사합니다.

관련 문제