Skip to content

7.10.0b1

Compare
Choose a tag to compare
@sethmlarson sethmlarson released this 29 Oct 18:48
31760fe

Added

  • Added DataFrame.groupby() method with all aggregations (#278, #291, #292, #300 contributed by @V1NAY8)

  • Added es_match() method to DataFrame and Series for filtering rows with full-text search (#301)

  • Added support for type hints of the elasticsearch-py package (#295)

  • Added support for passing dictionaries to es_type_overrides parameter in the pandas_to_eland() function to directly control the field mapping generated in Elasticsearch (#310)

  • Added es_dtypes property to DataFrame and Series (#285)

Changed

  • Changed pandas_to_eland() to use the parallel_bulk() helper instead of single-threaded bulk() helper to improve performance (#279, contributed by @V1NAY8)

  • Changed the es_type_overrides parameter in pandas_to_eland() to raise ValueError if an unknown column is given (#302)

  • Changed DataFrame.filter() to preserve the order of items (#283, contributed by @V1NAY8)

  • Changed when setting es_type_overrides={"column": "text"} in pandas_to_eland() will automatically add the column.keyword sub-field so that aggregations are available for the field as well (#310)

Fixed

  • Fixed Series.__repr__ when the series is empty (#306)