こんにちは、ドキュメントを Cloudsearch ドメインに追加しようとしています。
http://docs.pythonboto.org/en/latest/cloudsearch_tut.html#adding-documents-to-the-index
私のコードスニペットは次のとおりです。
import boto
conn = boto.connect_cloudsearch(aws_access_key_id='<>',aws_secret_access_key='<>')
domain = conn.lookup('testfoo')
doc_service = domain.get_document_service()
doc_service.add(doc_id, version, data)
最初に 、GAE で同じリクエストの問題 Boto CloudSearch を取得しました: TypeError: request() が予期しないキーワード引数 'config' を取得しました
そのため、構成kwargを削除しました(結果もわかりません)。
boto.cloudsearch.document.CommitMismatchError: Incorrect number of adds returned. Commit: 1 Response: 0
私のデータはこんな感じです
[
{
"raw" : "whole bunch of raw text",
"title" : "My new title",
"blurb" : "A really exciting article",
"document_type" : "Tech Guide",
"url" : "http://www.foobar/7199/tech-advice"
}
]
どんな助けでも大歓迎です