pandas on AWS - Easy integration with Athena, Glue, Redshift, Timestream, Neptune, OpenSearch, QuickSight, Chime, CloudWatchLogs, DynamoDB, EMR, SecretManager, PostgreSQL, MySQL, SQLServer and S3 (Parquet, CSV, JSON and EXCEL).
3.94k
stars
701
forks
source link
feature request(opensearch): allow disable json decoding in _df_doc_generator() #2990
Open
AvihaiSam opened 1 month ago
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 usingindex_documents()
instead