Release v7.14.1b1

This commit is contained in:
Seth Michael Larson 2021-08-30 13:37:26 -05:00
parent 7a2e845a76
commit a50c3657c4
No known key found for this signature in database
GPG Key ID: DDF21D915C2B615E
3 changed files with 23 additions and 6 deletions

View File

@ -2,6 +2,26 @@
Changelog
=========
7.14.1b1 (2021-08-30)
---------------------
Added
^^^^^
* Added support for ``DataFrame.iterrows()`` and ``DataFrame.itertuples()`` (`#380`_, contributed by `@kxbin`_)
Performance
^^^^^^^^^^^
* Simplified result collectors to increase performance transforming Elasticsearch results to pandas (`#378`_, contributed by `@V1NAY8`_)
* Changed search pagination function to yield batches of hits (`#379`_)
.. _@kxbin: https://github.com/kxbin
.. _#378: https://github.com/elastic/eland/pull/378
.. _#379: https://github.com/elastic/eland/pull/379
.. _#380: https://github.com/elastic/eland/pull/380
7.14.0b1 (2021-08-09)
---------------------

View File

@ -25,9 +25,6 @@ or give a thumbs up to already created issues. Contributions are also welcome!
processing. Functions like ``DataFrame.iloc[i]`` or ``DataFrame.transpose()``
likely won't be implementable in Eland due to this constraint.
There is a `list of methods gathered from Kaggle <https://github.com/adgirish/kaggleScape/blob/master/results/annotResults.csv>`_
in order of usage for prioritization purposes.
This list should be automatically generated with ``utils/generate-supported-apis.py``
script instead of being modified manually.
@ -208,9 +205,9 @@ script instead of being modified manually.
+---------------------------------------+------------+
| ``ed.DataFrame.iteritems()`` | No |
+---------------------------------------+------------+
| ``ed.DataFrame.iterrows()`` | No |
| ``ed.DataFrame.iterrows()`` | **Yes** |
+---------------------------------------+------------+
| ``ed.DataFrame.itertuples()`` | No |
| ``ed.DataFrame.itertuples()`` | **Yes** |
+---------------------------------------+------------+
| ``ed.DataFrame.join()`` | No |
+---------------------------------------+------------+

View File

@ -18,7 +18,7 @@
__title__ = "eland"
__description__ = "Python Client and Toolkit for DataFrames, Big Data, Machine Learning and ETL in Elasticsearch"
__url__ = "https://github.com/elastic/eland"
__version__ = "7.14.0b1"
__version__ = "7.14.1b1"
__author__ = "Steve Dodson"
__author_email__ = "steve.dodson@elastic.co"
__maintainer__ = "Seth Michael Larson"