aws-sdk-pandas icon indicating copy to clipboard operation
aws-sdk-pandas copied to clipboard

feature request(opensearch): allow disable json decoding in _df_doc_generator()

Open AvihaiSam opened this issue 1 year ago • 0 comments

Is your feature request related to a problem? Please describe. I want the value to be indexed as string. instead it is indexed as an object

Describe the solution you'd like skip_json_decode argument which can be set True/False/list[str]. if list - it'd skip all the columns that are listed.

Describe alternatives you've considered use df.to_json(orient="records") and send using index_documents() instead

AvihaiSam avatar Oct 07 '24 14:10 AvihaiSam