-
Notifications
You must be signed in to change notification settings - Fork 26.4k
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
redis 元数据中心,目前不支持集群? #3817
Comments
Closed
I posted a survey https://github.com/apache/incubator-dubbo/issues/2886 .
I think i will recheck this issue and provide cluster support in this week.
wuhulala <notifications@github.com> 于2019年4月7日周日 上午11:49写道:
…
- I have searched the issues
<https://github.com/apache/incubator-dubbo/issues> of this repository
and believe that this is not a duplicate.
- I have checked the FAQ
<https://github.com/apache/incubator-dubbo/blob/master/FAQ.md> of this
repository and believe that this is not a duplicate.
Environment
- Dubbo version: 2.7.2-SNAPSHOT
- Operating System version: windows1
- Java version: 1.8
Steps to reproduce this issue
public class RedisMetadataReport extends AbstractMetadataReport {
private final static Logger logger = LoggerFactory.getLogger(RedisMetadataReport.class);
final JedisPool pool;
public RedisMetadataReport(URL url) {
super(url);
pool = new JedisPool(new JedisPoolConfig(), url.getHost(), url.getPort());
}
}
I see the construct method used JedisPool,
*if cluster ,how should do?*
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#3817>, or mute the
thread
<https://github.com/notifications/unsubscribe-auth/AD5mbNImGGIEGiQNtBgr6sio_GGnrkWoks5veWrIgaJpZM4cgi2d>
.
--
Best Regard!
cvitory
|
cvictory
added a commit
to cvictory/dubbo
that referenced
this issue
Apr 12, 2019
6 tasks
chickenlj
pushed a commit
that referenced
this issue
May 22, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Environment
Steps to reproduce this issue
I see the construct method used
JedisPool
,if cluster ,how should do?
The text was updated successfully, but these errors were encountered: