1

これは、ES でのマッピングの例です。

mapping = {
    'settings': {
        'number_of_shards': 1,
        'number_of_replicas': 0,
    },
    'mappings': {
        '_doc': {
            'properties': {
                'cat': {
                    'type': 'keyword',
                }
            }
        }
    }
}

Python を使用してテストするために、いくつかの行にインデックスを付けました。

es.index('test_ind', '_doc', body={'cat': 'cat1,cat2,cat3'})
es.index('test_ind', '_doc', body={'cat': 'cat1,cat2,cat4'})

そこで、cat フィールドで操作を実行して、いくつかのtermsバケット集計を実行してみました。split

facet = {                                                                 
    "_source": ["cat"],
    "aggs": {
        "test": {
            "terms": {
                "script": {
                    "source": "doc['cat'].value.split(',')[0]",
                }
            }
        }
    }
}

r = es.search('test_ind', '_doc', body=facet)

しかし、これはエラーを引き起こします:

TransportError: TransportError(500, 'search_phase_execution_exception', 'ランタイム エラー')

ES ログに次のメッセージが表示されます。

2018-04-29T06:20:39.871+0000: 137707.242: Total time for which application threads were stopped: 0.0077604 seconds, Stopping threads took: 0.0000672 seconds
2018-04-29T06:21:29.949+0000: 137757.320: [GC (Allocation Failure) 2018-04-29T06:21:29.949+0000: 137757.320: [ParNew
Desired survivor size 17432576 bytes, new threshold 6 (max 6)
- age   1:    4312504 bytes,    4312504 total
- age   2:     613880 bytes,    4926384 total
- age   3:       3088 bytes,    4929472 total
- age   4:       1536 bytes,    4931008 total
- age   5:      20752 bytes,    4951760 total
- age   6:       2576 bytes,    4954336 total
: 276935K->5314K(306688K), 0.0061500 secs] 757743K->486122K(1014528K), 0.0062660 secs] [Times: user=0.02 sys=0.00, real=0.00 secs] 

分割操作を受け付けないのはなぜですか? セットアップに問題はありますか?

4

0 に答える 0