-
Notifications
You must be signed in to change notification settings - Fork 331
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
AWS SDK 2 plans? #296
Comments
Hello team! Do you have any updates on this? |
Is there an official timeline from the team on this? |
Update from my side: it appears that the homegrown solution is now unlikely to be replaced with KPL. It has grown into many micro-services throughout the company and people are now used to it. We didn't have a single request to move to KPL in a year, and ended up adding a few features like durable publishing, custom enveloping and fine-grained telemetry through Micrometer and NewRelic. So it looks like there is no turning back for us now. Having said that, and considering that 19 people care about this at the time of writing, would it make sense for us to open-source our library? |
Would definitely be worth it for us especially if you are on AWS SDK v2! Right now it seems that KPL is more trouble than it's worth. |
@code4dc We might or might no clear the bar of the "more trouble than it's worth" too... Ours is purpose built to fit into our architecture and is not a drop-in KPL replacement by any means. I'd probably do a demo first to see if it is worth it, since releasing the source takes considerable amount of hoop jumping. I don't mind getting behind this, as long as community can benefit from it. My profile has a link to my CV site with contacts in it, please reach out directly. |
My guess would be that upgrading to I would be interested to hear about the complexity of creating your own "KPL" one-day @dbarvitsky even in a blog post or presentation somewhere. |
@jdcaperon asked my boss about this (and demo as @code4dc has requested). Please reach out directly (my profile has private email) if you are interested, so that we don't confuse people with a tangent discussion. |
Is there any update on this? |
@softprops - not from my side (note: we are the folks who rolled up our own library that is SDK2 based, I am not related to AWS or AWS labs in any way). Still happy to do a demo / donate the library if community is interested. I asked for concerned citizens to reach out directly earlier, but didn't get much traction. We continue to use our own library in prod. |
When other fires aren't burning one day I will take you up on the offer! |
For what it’s worth, as java itself is evolving there are no plans to evolve sdk v1 with it. All of those efforts are going into sdk v2 moving forward aws/aws-sdk-java#1603 (comment) |
I'm a little unclear - Is this project going to remain on the V1 SDK indefinitely? (also unsure if anyone in this thread is an AWS representative) |
Hi, in 2024, the AWS SDK v1 will transition into maintenance mode where only critical updates will be issued. The process of full deprecation is slated to begin in early 2025. Is there any updates on the migration timelines? |
We did some test to compare with SDK v2 performance, and show it: Scenario:
SDK get's better performance at startup, and uses all cpu. After total cpu uses, begins to degrade.
It was so difficult to scale KPL because of its low cpu consumption, and the scale doesn't improve the performance And KPL has 3 vulnerabilities: •CVE-2020-8908 (score 3.3): Google guava, all versions •CWE-674 - UNCONTROLLED RECURSION (score 7.5): Apache Commons-Collections < 4.3 They're different purposes (KPL for batch and SDK for real time) The behaviour is similar to SDK So, I don't have more criteria to use KPL for specific batch use case (that you can also do with SDK) and the code implementation is cleaner. With KPL you need to use Callbacks and Futures, while SDK just use natural reactive flow. |
Hi - is this project dead? AWS itself has announced EOL for the V1 SDK. Others are hitting issues with STS conflicts (same as myself) when the producer is present in their application - #557 |
We are considering the KCL and KPL as a replacement for the homegrown code. I noticed that KCL is now on AWS SDK2 (they have 1.x version, but it seems that 2.x is mainstream), and KPL is on AWS SDK 1.
I am aware of ability to use SDK1 and SDK2 together, but would much rather avoid this option if at all possible.
Question: is KPL planning a new branch with SDK2 dependency as KCL did any time soon? What is the general recommendation for those who want to use both KCL and KPL in the same project?
Thanks in advance!
The text was updated successfully, but these errors were encountered: