Conversation
🛡️ Jit Security Scan Results✅ No security findings were detected in this PR
Security scan by Jit
|
Test Results 302 files ±0 302 suites ±0 11m 10s ⏱️ -24s Results for commit bf1711b. ± Comparison against base commit c37b259. This pull request removes 7 and adds 4 tests. Note that renamed tests count towards both.This pull request skips 656 tests.♻️ This comment has been updated with latest results. |
atakavci
approved these changes
Apr 2, 2026
mergify Bot
added a commit
to ArcadeData/arcadedb
that referenced
this pull request
Apr 6, 2026
Bumps [redis.clients:jedis](https://github.com/redis/jedis) from 7.4.0 to 7.4.1. Release notes *Sourced from [redis.clients:jedis's releases](https://github.com/redis/jedis/releases).* > v7.4.1 > ------ > > Jedis 7.4.1 (Patch Release) > > What's Changed > -------------- > > \*[ClusterPipeline] ExecutorService/thread is created and destroyed too frequently in ClusterPipeline by [`@ggivo`](https://github.com/ggivo) in [redis/jedis#4480](https://redirect.github.com/redis/jedis/pull/4480) > > **Full Changelog**: <redis/jedis@v7.4.0...v7.4.1> Commits * [`ec7e3eb`](redis/jedis@ec7e3eb) bump snapshot version to 7.4.1-SNAPSHOT ([#4481](https://redirect.github.com/redis/jedis/issues/4481)) * [`b0ccb8b`](redis/jedis@b0ccb8b) backport: [ClusterPipeline] ExecutorService/thread is created and des… ([#4480](https://redirect.github.com/redis/jedis/issues/4480)) * See full diff in [compare view](redis/jedis@v7.4.0...v7.4.1) [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Backport #4479 to 7.4.x
Note
Medium Risk
Changes multi-node cluster pipelining to optionally reuse a caller-provided
ExecutorService, affecting concurrency and thread lifecycle; mistakes could cause deadlocks or thread leaks, though coverage is added.Overview
Adds support for shared executors in cluster pipelining so multi-node
sync()can reuse a caller-providedExecutorServiceinstead of creating/shutting down a thread pool per sync.JedisClusterandRedisClusterClientnow exposepipelined(ExecutorService)and routepipelined()through it;ClusterPipeline/MultiNodePipelineBaseare updated to accept and retain an optional shared executor and only shut down dedicated executors.Extends
ClusterPipeliningTestwith integration tests verifying the shared executor isn’t shut down, works for single-node-slot pipelines, and avoids deadlock under concurrent pipelines sharing a small thread pool.Written by Cursor Bugbot for commit bf1711b. This will update automatically on new commits. Configure here.