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
f6d4da92
Commit
f6d4da92
authored
Aug 12, 2017
by
张乐
Committed by
GitHub
Aug 12, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #688 from nobodyiam/misc-change
Misc change
parents
cfe3ad66
ba4b551f
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
51 additions
and
23 deletions
+51
-23
ConfigServiceLocator.java
...trip/framework/apollo/internals/ConfigServiceLocator.java
+5
-5
RemoteConfigRepository.java
...ip/framework/apollo/internals/RemoteConfigRepository.java
+28
-6
PropertySourcesProcessor.java
...mework/apollo/spring/config/PropertySourcesProcessor.java
+14
-8
NotificationController.java
...ollo/configservice/controller/NotificationController.java
+4
-4
No files found.
apollo-client/src/main/java/com/ctrip/framework/apollo/internals/ConfigServiceLocator.java
View file @
f6d4da92
...
...
@@ -106,11 +106,11 @@ public class ConfigServiceLocator {
transaction
.
setStatus
(
Transaction
.
SUCCESS
);
List
<
ServiceDTO
>
services
=
response
.
getBody
();
if
(
services
==
null
||
services
.
isEmpty
())
{
logConfigService
ToCat
(
"Empty response!"
);
logConfigService
(
"Empty response!"
);
continue
;
}
m_configServices
.
set
(
services
);
logConfigServices
ToCat
(
services
);
logConfigServices
(
services
);
return
;
}
catch
(
Throwable
ex
)
{
Tracer
.
logEvent
(
"ApolloConfigException"
,
ExceptionUtil
.
getDetailMessage
(
ex
));
...
...
@@ -145,13 +145,13 @@ public class ConfigServiceLocator {
return
domainName
+
"/services/config?"
+
MAP_JOINER
.
join
(
queryParams
);
}
private
void
logConfigServices
ToCat
(
List
<
ServiceDTO
>
serviceDtos
)
{
private
void
logConfigServices
(
List
<
ServiceDTO
>
serviceDtos
)
{
for
(
ServiceDTO
serviceDto
:
serviceDtos
)
{
logConfigService
ToCat
(
serviceDto
.
getHomepageUrl
());
logConfigService
(
serviceDto
.
getHomepageUrl
());
}
}
private
void
logConfigService
ToCat
(
String
serviceUrl
)
{
private
void
logConfigService
(
String
serviceUrl
)
{
Tracer
.
logEvent
(
"Apollo.Config.Services"
,
serviceUrl
);
}
}
apollo-client/src/main/java/com/ctrip/framework/apollo/internals/RemoteConfigRepository.java
View file @
f6d4da92
...
...
@@ -7,6 +7,7 @@ import java.util.Properties;
import
java.util.concurrent.Executors
;
import
java.util.concurrent.ScheduledExecutorService
;
import
java.util.concurrent.TimeUnit
;
import
java.util.concurrent.atomic.AtomicBoolean
;
import
java.util.concurrent.atomic.AtomicReference
;
import
org.slf4j.Logger
;
...
...
@@ -17,6 +18,8 @@ import com.ctrip.framework.apollo.build.ApolloInjector;
import
com.ctrip.framework.apollo.core.ConfigConsts
;
import
com.ctrip.framework.apollo.core.dto.ApolloConfig
;
import
com.ctrip.framework.apollo.core.dto.ServiceDTO
;
import
com.ctrip.framework.apollo.core.schedule.ExponentialSchedulePolicy
;
import
com.ctrip.framework.apollo.core.schedule.SchedulePolicy
;
import
com.ctrip.framework.apollo.core.utils.ApolloThreadFactory
;
import
com.ctrip.framework.apollo.exceptions.ApolloConfigException
;
import
com.ctrip.framework.apollo.exceptions.ApolloConfigStatusCodeException
;
...
...
@@ -51,6 +54,8 @@ public class RemoteConfigRepository extends AbstractConfigRepository {
private
final
static
ScheduledExecutorService
m_executorService
;
private
AtomicReference
<
ServiceDTO
>
m_longPollServiceDto
;
private
RateLimiter
m_loadConfigRateLimiter
;
private
AtomicBoolean
m_configNeedForceRefresh
;
private
SchedulePolicy
m_loadConfigFailSchedulePolicy
;
private
static
final
Escaper
pathEscaper
=
UrlEscapers
.
urlPathSegmentEscaper
();
private
static
final
Escaper
queryParamEscaper
=
UrlEscapers
.
urlFormParameterEscaper
();
...
...
@@ -73,6 +78,9 @@ public class RemoteConfigRepository extends AbstractConfigRepository {
remoteConfigLongPollService
=
ApolloInjector
.
getInstance
(
RemoteConfigLongPollService
.
class
);
m_longPollServiceDto
=
new
AtomicReference
<>();
m_loadConfigRateLimiter
=
RateLimiter
.
create
(
m_configUtil
.
getLoadConfigQPS
());
m_configNeedForceRefresh
=
new
AtomicBoolean
(
true
);
m_loadConfigFailSchedulePolicy
=
new
ExponentialSchedulePolicy
(
m_configUtil
.
getOnErrorRetryInterval
(),
m_configUtil
.
getOnErrorRetryInterval
()
*
8
);
this
.
trySync
();
this
.
schedulePeriodicRefresh
();
this
.
scheduleLongPollingRefresh
();
...
...
@@ -154,7 +162,8 @@ public class RemoteConfigRepository extends AbstractConfigRepository {
String
cluster
=
m_configUtil
.
getCluster
();
String
dataCenter
=
m_configUtil
.
getDataCenter
();
Tracer
.
logEvent
(
"Apollo.Client.ConfigMeta"
,
STRING_JOINER
.
join
(
appId
,
cluster
,
m_namespace
));
int
maxRetries
=
2
;
int
maxRetries
=
m_configNeedForceRefresh
.
get
()
?
2
:
1
;
long
onErrorSleepTime
=
0
;
// 0 means no sleep
Throwable
exception
=
null
;
List
<
ServiceDTO
>
configServices
=
getConfigServices
();
...
...
@@ -167,6 +176,18 @@ public class RemoteConfigRepository extends AbstractConfigRepository {
}
for
(
ServiceDTO
configService
:
randomConfigServices
)
{
if
(
onErrorSleepTime
>
0
)
{
logger
.
warn
(
"Load config failed, will retry in {} {}. appId: {}, cluster: {}, namespaces: {}"
,
onErrorSleepTime
,
m_configUtil
.
getOnErrorRetryIntervalTimeUnit
(),
appId
,
cluster
,
m_namespace
);
try
{
m_configUtil
.
getOnErrorRetryIntervalTimeUnit
().
sleep
(
onErrorSleepTime
);
}
catch
(
InterruptedException
e
)
{
//ignore
}
}
String
url
=
assembleQueryConfigUrl
(
configService
.
getHomepageUrl
(),
appId
,
cluster
,
m_namespace
,
dataCenter
,
m_configCache
.
get
());
...
...
@@ -179,6 +200,8 @@ public class RemoteConfigRepository extends AbstractConfigRepository {
try
{
HttpResponse
<
ApolloConfig
>
response
=
m_httpUtil
.
doGet
(
request
,
ApolloConfig
.
class
);
m_configNeedForceRefresh
.
set
(
false
);
m_loadConfigFailSchedulePolicy
.
success
();
transaction
.
addData
(
"StatusCode"
,
response
.
getStatusCode
());
transaction
.
setStatus
(
Transaction
.
SUCCESS
);
...
...
@@ -215,13 +238,11 @@ public class RemoteConfigRepository extends AbstractConfigRepository {
transaction
.
complete
();
}
// if force refresh, do normal sleep, if normal config load, do exponential sleep
onErrorSleepTime
=
m_configNeedForceRefresh
.
get
()
?
m_configUtil
.
getOnErrorRetryInterval
()
:
m_loadConfigFailSchedulePolicy
.
fail
();
}
try
{
m_configUtil
.
getOnErrorRetryIntervalTimeUnit
().
sleep
(
m_configUtil
.
getOnErrorRetryInterval
());
}
catch
(
InterruptedException
ex
)
{
//ignore
}
}
String
message
=
String
.
format
(
"Load Apollo Config failed - appId: %s, cluster: %s, namespace: %s"
,
...
...
@@ -271,6 +292,7 @@ public class RemoteConfigRepository extends AbstractConfigRepository {
m_executorService
.
submit
(
new
Runnable
()
{
@Override
public
void
run
()
{
m_configNeedForceRefresh
.
set
(
true
);
trySync
();
}
});
...
...
apollo-client/src/main/java/com/ctrip/framework/apollo/spring/config/PropertySourcesProcessor.java
View file @
f6d4da92
package
com
.
ctrip
.
framework
.
apollo
.
spring
.
config
;
import
java.util.Collection
;
import
java.util.Iterator
;
import
com.google.common.collect.HashMultimap
;
import
com.google.common.collect.ImmutableSortedSet
;
import
com.google.common.collect.Multimap
;
import
com.ctrip.framework.apollo.Config
;
import
com.ctrip.framework.apollo.ConfigService
;
import
org.springframework.beans.BeansException
;
import
org.springframework.beans.factory.config.BeanFactoryPostProcessor
;
...
...
@@ -13,14 +17,16 @@ import org.springframework.core.env.CompositePropertySource;
import
org.springframework.core.env.ConfigurableEnvironment
;
import
org.springframework.core.env.Environment
;
import
com.ctrip.framework.apollo.Config
;
import
com.ctrip.framework.apollo.ConfigService
;
import
com.google.common.collect.HashMultimap
;
import
com.google.common.collect.ImmutableSortedSet
;
import
com.google.common.collect.Multimap
;
import
java.util.Collection
;
import
java.util.Iterator
;
/**
* Apollo Property Sources processor for Spring Annotation Based Application
* Apollo Property Sources processor for Spring Annotation Based Application. <br /> <br />
*
* The reason why PropertySourcesProcessor implements {@link BeanFactoryPostProcessor} instead of
* {@link org.springframework.beans.factory.support.BeanDefinitionRegistryPostProcessor} is that lower versions of
* Spring (e.g. 3.1.1) doesn't support registering BeanDefinitionRegistryPostProcessor in ImportBeanDefinitionRegistrar
* - {@link com.ctrip.framework.apollo.spring.annotation.ApolloConfigRegistrar}
*
* @author Jason Song(song_s@ctrip.com)
*/
...
...
apollo-configservice/src/main/java/com/ctrip/framework/apollo/configservice/controller/NotificationController.java
View file @
f6d4da92
...
...
@@ -107,17 +107,17 @@ public class NotificationController implements ReleaseMessageListener {
}
deferredResult
.
onTimeout
(()
->
logWatchedKeys
ToCat
(
watchedKeys
,
"Apollo.LongPoll.TimeOutKeys"
));
.
onTimeout
(()
->
logWatchedKeys
(
watchedKeys
,
"Apollo.LongPoll.TimeOutKeys"
));
deferredResult
.
onCompletion
(()
->
{
//unregister all keys
for
(
String
key
:
watchedKeys
)
{
deferredResults
.
remove
(
key
,
deferredResult
);
}
logWatchedKeys
ToCat
(
watchedKeys
,
"Apollo.LongPoll.CompletedKeys"
);
logWatchedKeys
(
watchedKeys
,
"Apollo.LongPoll.CompletedKeys"
);
});
logWatchedKeys
ToCat
(
watchedKeys
,
"Apollo.LongPoll.RegisteredKeys"
);
logWatchedKeys
(
watchedKeys
,
"Apollo.LongPoll.RegisteredKeys"
);
logger
.
debug
(
"Listening {} from appId: {}, cluster: {}, namespace: {}, datacenter: {}"
,
watchedKeys
,
appId
,
cluster
,
namespace
,
dataCenter
);
}
...
...
@@ -159,7 +159,7 @@ public class NotificationController implements ReleaseMessageListener {
logger
.
debug
(
"Notification completed"
);
}
private
void
logWatchedKeys
ToCat
(
Set
<
String
>
watchedKeys
,
String
eventName
)
{
private
void
logWatchedKeys
(
Set
<
String
>
watchedKeys
,
String
eventName
)
{
for
(
String
watchedKey
:
watchedKeys
)
{
Tracer
.
logEvent
(
eventName
,
watchedKey
);
}
...
...
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