Skip to content
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

Added minimum timeout for transforms search of 10 minutes #1033

Merged
merged 25 commits into from
Dec 12, 2023
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
139b63e
Added minimum timeout for transforms search of 10 minutes
Joshua152 Nov 2, 2023
4a05706
Extracted cancel minimum code to function
Joshua152 Nov 8, 2023
a294816
Fixed transform code to use cluster setting
Joshua152 Dec 8, 2023
8253da7
Removed log statements
Joshua152 Dec 8, 2023
a79d754
Changed timeout logic
Joshua152 Dec 8, 2023
d60bf2f
Switched to basing off seconds
Joshua152 Dec 9, 2023
21fa899
[Feature] Support Transform as an ISM action (#760)
tanqiuliu Oct 11, 2023
7d8e4cc
[Test] increase the wait time after transform job triggered (#999)
bowenlan-amzn Oct 11, 2023
bf4266b
Drafted 2.11 release notes. (#1004)
AWSHurneyt Oct 11, 2023
1e3e529
Refactor change policy API and the policy in managed index to be non-…
bowenlan-amzn Oct 12, 2023
43346cb
Add more error notification at fail points (#1000)
bowenlan-amzn Oct 13, 2023
be9d898
fix the race condition in test reset action start time (#1007)
bowenlan-amzn Oct 13, 2023
5ddb80c
Bump bwc version after 2.11 release (#1015)
bowenlan-amzn Oct 19, 2023
0e0aa30
added type check for pipeline aggregator types in Transform initializ…
n-dohrmann Oct 19, 2023
2b5eeae
Improve security plugin enabling check (#1017)
Hailong-am Oct 20, 2023
5af2fce
Onboard jenkins prod docker images to github actions (#1025)
peterzhuamazon Oct 31, 2023
28946fe
Support switch aliases in shrink action. (#987)
ikibo Nov 1, 2023
f640e60
Transform pipeline aggr test (#1027)
n-dohrmann Nov 1, 2023
deb7117
Added unit test for switchAliases method. (#1035)
ikibo Nov 9, 2023
e5d5097
Interval schedule should take start time from the request, should not…
ikibo Nov 9, 2023
60f9abb
Added minimum for search.cancel_after_time_interval setting for rollu…
Joshua152 Nov 19, 2023
e5d02fb
Update 2.11.1 release note (#1042)
bowenlan-amzn Nov 20, 2023
457190e
Interval schedule should take start time from the request, should not…
ikibo Nov 29, 2023
4414a2a
Removed unused imports
Joshua152 Dec 12, 2023
a2354fe
Merge branch 'main' into issue710-transform
bowenlan-amzn Dec 12, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Interval schedule should take start time from the request, should not…
… set it to the current time of request execution. (#1036)

Signed-off-by: Oleg Kravchuk <[email protected]>
Signed-off-by: Joshua Au <[email protected]>
ikibo authored and Joshua152 committed Dec 12, 2023

Verified

This commit was signed with the committer’s verified signature.
bep Bjørn Erik Pedersen
commit e5d509790440c0c2ada023c7b5b2cce305cd68bb
Original file line number Diff line number Diff line change
@@ -387,7 +387,7 @@ data class Transform(
if (seqNo == SequenceNumbers.UNASSIGNED_SEQ_NO || primaryTerm == SequenceNumbers.UNASSIGNED_PRIMARY_TERM) {
// we instantiate the start time
if (schedule is IntervalSchedule) {
schedule = IntervalSchedule(Instant.now(), schedule.interval, schedule.unit)
schedule = IntervalSchedule(schedule.startTime, schedule.interval, schedule.unit)
}

// we clear out metadata if its a new job