-
Notifications
You must be signed in to change notification settings - Fork 0
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
Ac pr integ without any changes #3
base: main
Are you sure you want to change the base?
Commits on Oct 20, 2023
-
Restore remote index shards with ExistingStoreRecoverySource after re…
…store from remote state (opensearch-project#10665) * Restore remote index shards with ExistingStoreRecoverySource after restore from remote state Signed-off-by: bansvaru <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6641ef8 - Browse repository at this point
Copy the full SHA 6641ef8View commit details -
Fix flaky remote cluster state UT (opensearch-project#10780)
Signed-off-by: Dhwanil Patel <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e12ab0f - Browse repository at this point
Copy the full SHA e12ab0fView commit details -
Fix spotless failure (opensearch-project#10782)
Signed-off-by: Dhwanil Patel <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5093cc7 - Browse repository at this point
Copy the full SHA 5093cc7View commit details -
Add tracing instrumentation for indexing paths (opensearch-project#10273
) * Add tracing instrumentation for indexing paths Signed-off-by: Shreyansh Ray <[email protected]> * Fix failing tests and review changes Signed-off-by: Shreyansh Ray <[email protected]> * Fix test failures due to Span not being properly closed Signed-off-by: Shreyansh Ray <[email protected]> * Changes to spans in primary and replica actions Signed-off-by: Shreyansh Ray <[email protected]> * Review comments fixes and refactoring Signed-off-by: Shreyansh Ray <[email protected]> * Precommit auto-changes Signed-off-by: Shreyansh Ray <[email protected]> * Add refresh policy as attribute Signed-off-by: Shreyansh Ray <[email protected]> * Fix changelog entry Signed-off-by: Shreyansh Ray <[email protected]> * Instrument primary/replica write in TransportWriteAction instead of TransportShardBulkAction Signed-off-by: Shreyansh Ray <[email protected]> * Modify SpanBuilder Signed-off-by: Shreyansh Ray <[email protected]> * spotlessApply and precommit Signed-off-by: Shreyansh Ray <[email protected]> * Change span names Signed-off-by: Shreyansh Ray <[email protected]> * Pass Noop Tracer instead of injected tracer Signed-off-by: Shreyansh Ray <[email protected]> * Reverting previous changes Signed-off-by: Shreyansh Ray <[email protected]> * Remove tracer variable from TransportShardBulkAction Signed-off-by: Shreyansh Ray <[email protected]> --------- Signed-off-by: Shreyansh Ray <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e691df0 - Browse repository at this point
Copy the full SHA e691df0View commit details -
[Remote Store] Fix relocation failure due to transport receive timeout (
opensearch-project#10761) * [Remote Store] Fix relocation failure due to transport receive timeout Signed-off-by: Ashish Singh <[email protected]> * Fix existing extended shardIdle for remote backed shards Signed-off-by: Ashish Singh <[email protected]> * Incorporate PR review comments Signed-off-by: Ashish Singh <[email protected]> --------- Signed-off-by: Ashish Singh <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a1fde65 - Browse repository at this point
Copy the full SHA a1fde65View commit details -
Update Github pull request template to have a task for inspecting fai…
…ling checks (opensearch-project#10751) * Update Github pull request template to have a task for inspecting failing checks Signed-off-by: Andriy Redko <[email protected]> * Add failing builds troubleshooting section to CONTRIBUTING.md Signed-off-by: Andriy Redko <[email protected]> * Address review comments Signed-off-by: Andriy Redko <[email protected]> --------- Signed-off-by: Andriy Redko <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ffe9371 - Browse repository at this point
Copy the full SHA ffe9371View commit details -
Increase remote recovery thread pool size (opensearch-project#10750)
The remote recovery thread pool does blocking I/O when downloading files, so the "half processor count max 10" was definitely too small. This can be shown by triggering recoveries on a node that is also doing segment replication, and the replication lag will increase due to contention on that thread pool. Some amount of contention is inevitable, but the change here to increase the download thread pool, and also limit the concurrent usage of that thread pool by any single recovery/replication to 25% of the threads does help. Long term, we can improve this even further by moving to fully async I/O to avoid blocking threads in the application on draining InputStreams. Signed-off-by: Andrew Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1e28738 - Browse repository at this point
Copy the full SHA 1e28738View commit details -
Return unformatted Segment Replication metrics that take upload time …
…into account for replication lag (opensearch-project#10723) * Return unformatted segrep metrics in stats Signed-off-by: Poojita Raj <[email protected]> * Take upload time into account for replication time lag Signed-off-by: Poojita Raj <[email protected]> * unformat segrep stats Signed-off-by: Poojita Raj <[email protected]> * remove unused field names Signed-off-by: Poojita Raj <[email protected]> --------- Signed-off-by: Poojita Raj <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4f8bcff - Browse repository at this point
Copy the full SHA 4f8bcffView commit details -
[Segment Replication] Fix Flaky test SegmentReplicationRelocationIT.t…
…estPrimaryRelocation (opensearch-project#10701) * Add primary mode check before assserting on primary mode. Signed-off-by: Rishikesh1159 <[email protected]> * remove unnecessary shardRouting check. Signed-off-by: Rishikesh1159 <[email protected]> * Add test logging. Signed-off-by: Rishikesh1159 <[email protected]> * Addressing comments on PR. Signed-off-by: Rishikesh1159 <[email protected]> --------- Signed-off-by: Rishikesh1159 <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1e9ec52 - Browse repository at this point
Copy the full SHA 1e9ec52View commit details
Commits on Oct 21, 2023
-
[Segment Replication] Add Segment Replication backpressure rejection …
…stats to _nodes/stats (opensearch-project#10656) * Initial WIP for adding segrep backpressure to node stats. Signed-off-by: Rishikesh1159 <[email protected]> * Bind SegmentReplicarionStatsTracker in Node.java Signed-off-by: Rishikesh1159 <[email protected]> * remove additional segrep backpressure info from node stats Signed-off-by: Rishikesh1159 <[email protected]> * fix metric name in node stats Signed-off-by: Rishikesh1159 <[email protected]> * Fix compile error. Signed-off-by: Rishikesh1159 <[email protected]> * Fix compile errors. Signed-off-by: Rishikesh1159 <[email protected]> * Address comments on PR. Signed-off-by: Rishikesh1159 <[email protected]> * Update java docs. Signed-off-by: Rishikesh1159 <[email protected]> * Address comments on PR and fix compile errors. Signed-off-by: Rishikesh1159 <[email protected]> * Address comments on PR. Signed-off-by: Rishikesh1159 <[email protected]> * Update unit test. Signed-off-by: Rishikesh1159 <[email protected]> --------- Signed-off-by: Rishikesh1159 <[email protected]> Signed-off-by: Rishikesh Pasham <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 51626d0 - Browse repository at this point
Copy the full SHA 51626d0View commit details -
Added changes for AdmissionControl Interceptor and AdmissionControlSe…
…rvice for RateLimiting (opensearch-project#9286) * Changes for AdmissionControl Interceptor and AdmissionControlService for RateLimiting (opensearch-project#9286) Signed-off-by: Ajay Kumar Movva <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7c5a806 - Browse repository at this point
Copy the full SHA 7c5a806View commit details -
[Remote Store] Use time elapsed since last successful local refresh f…
…or refresh lag (opensearch-project#10803) * [Remote Store] Use time elapsed since last successful local refresh for time lag Signed-off-by: Ashish Singh <[email protected]> * Incorporate PR review comments Signed-off-by: Ashish Singh <[email protected]> --------- Signed-off-by: Ashish Singh <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 14d4a63 - Browse repository at this point
Copy the full SHA 14d4a63View commit details
Commits on Oct 22, 2023
-
Added changes to integrade cpu AC to ResourceUsageCollector and Emit …
…Stats Signed-off-by: Ajay Kumar Movva <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 01e320f - Browse repository at this point
Copy the full SHA 01e320fView commit details