mirror of
https://github.com/elastic/eland.git
synced 2025-07-11 00:02:14 +08:00
Release v7.14.1b1
This commit is contained in:
parent
7a2e845a76
commit
a50c3657c4
@ -2,6 +2,26 @@
|
|||||||
Changelog
|
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)
|
7.14.0b1 (2021-08-09)
|
||||||
---------------------
|
---------------------
|
||||||
|
|
||||||
|
@ -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()``
|
processing. Functions like ``DataFrame.iloc[i]`` or ``DataFrame.transpose()``
|
||||||
likely won't be implementable in Eland due to this constraint.
|
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``
|
This list should be automatically generated with ``utils/generate-supported-apis.py``
|
||||||
script instead of being modified manually.
|
script instead of being modified manually.
|
||||||
|
|
||||||
@ -208,9 +205,9 @@ script instead of being modified manually.
|
|||||||
+---------------------------------------+------------+
|
+---------------------------------------+------------+
|
||||||
| ``ed.DataFrame.iteritems()`` | No |
|
| ``ed.DataFrame.iteritems()`` | No |
|
||||||
+---------------------------------------+------------+
|
+---------------------------------------+------------+
|
||||||
| ``ed.DataFrame.iterrows()`` | No |
|
| ``ed.DataFrame.iterrows()`` | **Yes** |
|
||||||
+---------------------------------------+------------+
|
+---------------------------------------+------------+
|
||||||
| ``ed.DataFrame.itertuples()`` | No |
|
| ``ed.DataFrame.itertuples()`` | **Yes** |
|
||||||
+---------------------------------------+------------+
|
+---------------------------------------+------------+
|
||||||
| ``ed.DataFrame.join()`` | No |
|
| ``ed.DataFrame.join()`` | No |
|
||||||
+---------------------------------------+------------+
|
+---------------------------------------+------------+
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
__title__ = "eland"
|
__title__ = "eland"
|
||||||
__description__ = "Python Client and Toolkit for DataFrames, Big Data, Machine Learning and ETL in Elasticsearch"
|
__description__ = "Python Client and Toolkit for DataFrames, Big Data, Machine Learning and ETL in Elasticsearch"
|
||||||
__url__ = "https://github.com/elastic/eland"
|
__url__ = "https://github.com/elastic/eland"
|
||||||
__version__ = "7.14.0b1"
|
__version__ = "7.14.1b1"
|
||||||
__author__ = "Steve Dodson"
|
__author__ = "Steve Dodson"
|
||||||
__author_email__ = "steve.dodson@elastic.co"
|
__author_email__ = "steve.dodson@elastic.co"
|
||||||
__maintainer__ = "Seth Michael Larson"
|
__maintainer__ = "Seth Michael Larson"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user