Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
apollo
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
apollo
Commits
b9ff6841
Commit
b9ff6841
authored
May 18, 2016
by
Jason Song
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Let client access the server which answers long polling first
parent
33ec16d3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
ConfigServiceLocator.java
...java/com/ctrip/apollo/internals/ConfigServiceLocator.java
+0
-1
RemoteConfigRepository.java
...va/com/ctrip/apollo/internals/RemoteConfigRepository.java
+8
-1
No files found.
apollo-client/src/main/java/com/ctrip/apollo/internals/ConfigServiceLocator.java
View file @
b9ff6841
...
...
@@ -95,7 +95,6 @@ public class ConfigServiceLocator implements Initializable {
m_configUtil
.
getRefreshTimeUnit
());
}
//TODO periodically update config services
private
synchronized
void
updateConfigServices
()
{
String
domainName
=
m_configUtil
.
getMetaServerDomainName
();
String
url
=
domainName
+
"/services/config"
;
...
...
apollo-client/src/main/java/com/ctrip/apollo/internals/RemoteConfigRepository.java
View file @
b9ff6841
...
...
@@ -57,6 +57,7 @@ public class RemoteConfigRepository extends AbstractConfigRepository {
private
final
ScheduledExecutorService
m_executorService
;
private
final
AtomicBoolean
m_longPollingStopped
;
private
SchedulePolicy
m_longPollSchedulePolicy
;
private
AtomicReference
<
ServiceDTO
>
m_longPollServiceDto
;
/**
* Constructor.
...
...
@@ -79,6 +80,7 @@ public class RemoteConfigRepository extends AbstractConfigRepository {
m_longPollingStopped
=
new
AtomicBoolean
(
false
);
m_executorService
=
Executors
.
newScheduledThreadPool
(
1
,
ApolloThreadFactory
.
create
(
"RemoteConfigRepository"
,
true
));
m_longPollServiceDto
=
new
AtomicReference
<>();
this
.
trySync
();
this
.
schedulePeriodicRefresh
();
this
.
scheduleLongPollingRefresh
();
...
...
@@ -148,8 +150,12 @@ public class RemoteConfigRepository extends AbstractConfigRepository {
List
<
ServiceDTO
>
configServices
=
getConfigServices
();
for
(
int
i
=
0
;
i
<
maxRetries
;
i
++)
{
List
<
ServiceDTO
>
randomConfigServices
=
Lists
.
new
Array
List
(
configServices
);
List
<
ServiceDTO
>
randomConfigServices
=
Lists
.
new
Linked
List
(
configServices
);
Collections
.
shuffle
(
randomConfigServices
);
//Access the server which notifies the client first
if
(
m_longPollServiceDto
.
get
()
!=
null
)
{
randomConfigServices
.
add
(
0
,
m_longPollServiceDto
.
getAndSet
(
null
));
}
for
(
ServiceDTO
configService
:
randomConfigServices
)
{
String
url
=
...
...
@@ -272,6 +278,7 @@ public class RemoteConfigRepository extends AbstractConfigRepository {
logger
.
debug
(
"Long polling response: {}, url: {}"
,
response
.
getStatusCode
(),
url
);
if
(
response
.
getStatusCode
()
==
200
)
{
m_longPollServiceDto
.
set
(
lastServiceDto
);
longPollingService
.
submit
(
new
Runnable
()
{
@Override
public
void
run
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment