-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Elasticsearch v8 support #93
base: master
Are you sure you want to change the base?
Conversation
b0f36b1
to
785d0b9
Compare
Elasticsearch introduced braking change by: - removing RequestsHttpConnection - removing use_ssl from Elasticsearch class SSL is not set as 'scheme' string (http/https) in host dict. Custom authorization need to set node_class to requests.
Remove support for 2.7 and below 3.6 Python version. Elasticsearch from version 8.0 version, new library supports Python 3.6+.
update version label to 1.1.0
785d0b9
to
81fefba
Compare
Hi together, facing the version 8 imkompatible issue and asking if I can help to verfiy, adjust, push this pull request? |
Hi @cgi-gerlando-caldara and @thoscilo Would you like to meet and merge this outstanding Pull Request with the others? I need to construct a test cluster in AWS se we can make sure everything works. Thank you Sincerely, Adrian P.S. I live in San Diego California and I am in the middle of scaling up a company I started. Time is scarce. I rarely get sleep, but I am happy to spend a day working on this project with you both. 🤓 |
Is this project being maintained still? Ran into this issue trying to get started with this package. |
yes, but i will take some time to review and merge all the PRs.
i am currently unemployed and working on a startup full time.
if you are willing to meet we might be able to fix it all in 8 hours of
coding, testing, and merging.
sincerely,
Adrian
…On Tue, Jun 25, 2024 at 4:37 PM David Hovey ***@***.***> wrote:
Is this project being maintained still? Ran into this issue trying to get
started with this package.
—
Reply to this email directly, view it on GitHub
<#93 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABSE2RGSSI5OM6G5VIN7TATZJH5LPAVCNFSM6AAAAAAWV3UJZCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCOJQGIYDMMRXHE>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Elasticsearch introduced braking change in version 8.0 by:
SSL is not set as 'scheme' string (http/https) in host dict.
Custom authorization need to set node_class to requests.
Current code is working with:
elasticsearch 8.7.0
Reference:
https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/release-notes.html#_changed
Fixes:
#91