1

我正在尝试使用 python 和 boto 2.31.1 在 cloudsearch 域中创建一个索引字段。

我可以成功地为“text”、“int-array”和“literal”类型创建索引字段,但不能为“int”创建索引字段

例如

这成功了:

dom_comments.create_index_field('some_text_field', 'text')  

但这失败了:

dom_comments.create_index_field('some_int_field', 'int')

出现此错误:

JSONResponseError: JSONResponseError: 400 Bad Request
{u'RequestId': u'436bca63-11c3-11e4-be49-c9eca06e67ee', u'Error': {u'Message': u'missing     value for long type', u'Code': u'MalformedInput', u'Type': u'Sender'}}

dom_commentsboto.cloudsearch2.domain.Domain

4

1 回答 1

3

找到了答案。

您必须在创建“int”索引字段时指定默认值。所以这有效:

dom_comments.create_index_field('some_int_field', 'int', default=0)    

我在 Debian Wheezy 上使用了 python 2.7.3。

于 2014-07-23T10:03:26.383 回答