Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-WIC-Cnf
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
3
Issues
3
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
CommunityXG
OpenXG-WIC-Cnf
Commits
ffdfc09b
Commit
ffdfc09b
authored
Oct 28, 2019
by
wutu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
实现周期性更新OVS状态
parent
e7939cd6
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
162 additions
and
3 deletions
+162
-3
bishe-edge-center/pom.xml
bishe-edge-center/pom.xml
+14
-0
bishe-edge-center/src/main/java/top/ninwoo/edgecenter/controller/IndexController.java
...ava/top/ninwoo/edgecenter/controller/IndexController.java
+7
-0
bishe-edge-center/src/main/java/top/ninwoo/edgecenter/service/ClusterService.java
...in/java/top/ninwoo/edgecenter/service/ClusterService.java
+3
-0
bishe-edge-center/src/main/java/top/ninwoo/edgecenter/service/impl/ClusterServiceImpl.java
...op/ninwoo/edgecenter/service/impl/ClusterServiceImpl.java
+19
-0
bishe-edge-center/src/main/resources/log4j2.xml
bishe-edge-center/src/main/resources/log4j2.xml
+57
-0
bishe-utils/src/main/java/top/ninwoo/utils/entity/OvsBridge.java
...tils/src/main/java/top/ninwoo/utils/entity/OvsBridge.java
+3
-1
bishe-utils/src/main/java/top/ninwoo/utils/service/OVSService.java
...ls/src/main/java/top/ninwoo/utils/service/OVSService.java
+5
-0
bishe-utils/src/main/java/top/ninwoo/utils/service/impl/DockerServiceImpl.java
...java/top/ninwoo/utils/service/impl/DockerServiceImpl.java
+5
-0
bishe-utils/src/main/java/top/ninwoo/utils/service/impl/OVSServiceImpl.java
...in/java/top/ninwoo/utils/service/impl/OVSServiceImpl.java
+45
-2
bishe-utils/src/main/java/top/ninwoo/utils/util/impl/DockerUtilsImpl.java
...main/java/top/ninwoo/utils/util/impl/DockerUtilsImpl.java
+4
-0
No files found.
bishe-edge-center/pom.xml
View file @
ffdfc09b
...
@@ -16,7 +16,21 @@
...
@@ -16,7 +16,21 @@
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-web
</artifactId>
<artifactId>
spring-boot-starter-web
</artifactId>
<version>
2.1.2.RELEASE
</version>
<version>
2.1.2.RELEASE
</version>
<exclusions>
<exclusion>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-logging
</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependency>
<!--日志模块-->
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-log4j2
</artifactId>
<version>
2.1.2.RELEASE
</version>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-jdbc
</artifactId>
<artifactId>
spring-boot-starter-jdbc
</artifactId>
...
...
bishe-edge-center/src/main/java/top/ninwoo/edgecenter/controller/IndexController.java
View file @
ffdfc09b
...
@@ -5,6 +5,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
...
@@ -5,6 +5,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
import
org.springframework.web.bind.annotation.RestController
;
import
org.springframework.web.bind.annotation.RestController
;
import
top.ninwoo.edgecenter.service.ClusterService
;
import
top.ninwoo.edgecenter.service.ClusterService
;
import
top.ninwoo.utils.entity.DockerContainer
;
import
top.ninwoo.utils.entity.DockerContainer
;
import
top.ninwoo.utils.entity.OvsBridge
;
import
java.util.List
;
import
java.util.List
;
...
@@ -20,4 +21,10 @@ public class IndexController {
...
@@ -20,4 +21,10 @@ public class IndexController {
List
<
DockerContainer
>
containerIds
=
clusterService
.
getContainerIds
(
flag
==
0
);
List
<
DockerContainer
>
containerIds
=
clusterService
.
getContainerIds
(
flag
==
0
);
return
containerIds
;
return
containerIds
;
}
}
@RequestMapping
(
"/ovs"
)
public
List
<
OvsBridge
>
getOvsBridgeList
()
{
List
<
OvsBridge
>
bridges
=
clusterService
.
getOvsBridges
();
return
bridges
;
}
}
}
bishe-edge-center/src/main/java/top/ninwoo/edgecenter/service/ClusterService.java
View file @
ffdfc09b
...
@@ -2,6 +2,7 @@ package top.ninwoo.edgecenter.service;
...
@@ -2,6 +2,7 @@ package top.ninwoo.edgecenter.service;
import
top.ninwoo.edgecenter.entity.ClusterConfig
;
import
top.ninwoo.edgecenter.entity.ClusterConfig
;
import
top.ninwoo.utils.entity.DockerContainer
;
import
top.ninwoo.utils.entity.DockerContainer
;
import
top.ninwoo.utils.entity.OvsBridge
;
import
java.util.List
;
import
java.util.List
;
import
java.util.Set
;
import
java.util.Set
;
...
@@ -21,4 +22,6 @@ public interface ClusterService {
...
@@ -21,4 +22,6 @@ public interface ClusterService {
void
removeContainersByClusterId
(
long
clusterId
);
void
removeContainersByClusterId
(
long
clusterId
);
void
removeContainersByClusterIdAndContainerName
(
long
clusterId
,
String
name
);
void
removeContainersByClusterIdAndContainerName
(
long
clusterId
,
String
name
);
List
<
OvsBridge
>
getOvsBridges
();
}
}
bishe-edge-center/src/main/java/top/ninwoo/edgecenter/service/impl/ClusterServiceImpl.java
View file @
ffdfc09b
package
top.ninwoo.edgecenter.service.impl
;
package
top.ninwoo.edgecenter.service.impl
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
top.ninwoo.edgecenter.entity.ClusterConfig
;
import
top.ninwoo.edgecenter.entity.ClusterConfig
;
import
top.ninwoo.edgecenter.entity.ContainerDescription
;
import
top.ninwoo.edgecenter.entity.ContainerDescription
;
import
top.ninwoo.edgecenter.service.ClusterService
;
import
top.ninwoo.edgecenter.service.ClusterService
;
import
top.ninwoo.utils.entity.DockerContainer
;
import
top.ninwoo.utils.entity.DockerContainer
;
import
top.ninwoo.utils.entity.OvsBridge
;
import
top.ninwoo.utils.service.DockerService
;
import
top.ninwoo.utils.service.DockerService
;
import
top.ninwoo.utils.service.OVSService
;
import
java.util.*
;
import
java.util.*
;
import
java.util.concurrent.ConcurrentHashMap
;
import
java.util.concurrent.ConcurrentHashMap
;
...
@@ -18,10 +22,14 @@ import java.util.concurrent.ConcurrentHashMap;
...
@@ -18,10 +22,14 @@ import java.util.concurrent.ConcurrentHashMap;
*/
*/
@Service
@Service
public
class
ClusterServiceImpl
implements
ClusterService
{
public
class
ClusterServiceImpl
implements
ClusterService
{
private
final
Logger
LOG
=
LoggerFactory
.
getLogger
(
ClusterServiceImpl
.
class
);
private
ConcurrentHashMap
<
Long
,
Map
<
String
,
Set
<
String
>>>
clustersInfo
=
new
ConcurrentHashMap
<>();
private
ConcurrentHashMap
<
Long
,
Map
<
String
,
Set
<
String
>>>
clustersInfo
=
new
ConcurrentHashMap
<>();
@Autowired
@Autowired
DockerService
dockerService
;
DockerService
dockerService
;
@Autowired
OVSService
ovsService
;
/**
/**
* 定时更新容器列表
* 定时更新容器列表
*/
*/
...
@@ -149,6 +157,7 @@ public class ClusterServiceImpl implements ClusterService {
...
@@ -149,6 +157,7 @@ public class ClusterServiceImpl implements ClusterService {
*/
*/
@Override
@Override
public
void
removeContainersByClusterIdAndContainerName
(
long
clusterId
,
String
containerName
)
{
public
void
removeContainersByClusterIdAndContainerName
(
long
clusterId
,
String
containerName
)
{
LOG
.
debug
(
"删除集群 [%l] 的容器 [%s]"
,
clusterId
,
containerName
);
if
(!
clustersInfo
.
containsKey
(
clusterId
))
{
if
(!
clustersInfo
.
containsKey
(
clusterId
))
{
return
;
return
;
}
}
...
@@ -157,4 +166,14 @@ public class ClusterServiceImpl implements ClusterService {
...
@@ -157,4 +166,14 @@ public class ClusterServiceImpl implements ClusterService {
);
);
clustersInfo
.
get
(
clusterId
).
remove
(
containerName
);
clustersInfo
.
get
(
clusterId
).
remove
(
containerName
);
}
}
/**
* 获取ovs列表
* @return
*/
@Override
public
List
<
OvsBridge
>
getOvsBridges
()
{
LOG
.
debug
(
"查询ovs网桥"
);
return
ovsService
.
getOvsBridges
();
}
}
}
\ No newline at end of file
bishe-edge-center/src/main/resources/log4j2.xml
0 → 100644
View file @
ffdfc09b
<?xml version="1.0" encoding="UTF-8"?>
<!--日志级别以及优先级排序: OFF > FATAL > ERROR > WARN > INFO > DEBUG > TRACE > ALL -->
<!--Configuration后面的status,这个用于设置log4j2自身内部的信息输出,可以不设置,当设置成trace时,你会看到log4j2内部各种详细输出-->
<!--monitorInterval:Log4j能够自动检测修改配置 文件和重新配置本身,设置间隔秒数-->
<configuration
status=
"WARN"
monitorInterval=
"30"
>
<Properties>
<Property
name=
"log.path"
>
log
</Property>
</Properties>
<!--先定义所有的appender-->
<appenders>
<!--这个输出控制台的配置-->
<console
name=
"Console"
target=
"SYSTEM_OUT"
>
<!--输出日志的格式-->
<PatternLayout
pattern=
"[%d{HH:mm:ss:SSS}] [%p] - %l - %m%n"
/>
</console>
<File
name=
"log"
fileName=
"${log.path}/test.log"
append=
"false"
>
<PatternLayout
pattern=
"[%d{HH:mm:ss:SSS}] [%p] - %l - %m%n"
/>
</File>
<RollingFile
name=
"RollingFileInfo"
fileName=
"${log.path}/info.log"
filePattern=
"${log.path}/logs/${date:yyyy-MM}/info-%d{yyyy-MM-dd}.log.zip"
>
<!--只输出level及以上级别的信息(onMatch),其他的直接拒绝(onMismatch)-->
<ThresholdFilter
level=
"info"
onMatch=
"ACCEPT"
onMismatch=
"DENY"
/>
<PatternLayout
pattern=
"[%d{HH:mm:ss:SSS}] [%p] - %l - %m%n"
/>
<Policies>
<TimeBasedTriggeringPolicy
modulate=
"true"
interval=
"1"
/>
</Policies>
</RollingFile>
</appenders>
<!--然后定义logger,只有定义了logger并引入appender,appender才会生效-->
<loggers>
<!--过滤掉spring和mybatis的一些无用的DEBUG信息-->
<logger
name=
"org.springframework"
level=
"INFO"
/>
<logger
name=
"org.mybatis"
level=
"INFO"
/>
<logger
name=
"com.baiding"
level=
"INFO"
/>
<root
level=
"info"
>
<appender-ref
ref=
"Console"
/>
<appender-ref
ref=
"RollingFileInfo"
/>
</root>
</loggers>
</configuration>
\ No newline at end of file
bishe-utils/src/main/java/top/ninwoo/utils/entity/OvsBridge.java
View file @
ffdfc09b
...
@@ -27,7 +27,9 @@ public class OvsBridge {
...
@@ -27,7 +27,9 @@ public class OvsBridge {
if
(
obj
instanceof
OvsBridge
)
{
if
(
obj
instanceof
OvsBridge
)
{
OvsBridge
bridge
=
(
OvsBridge
)
obj
;
OvsBridge
bridge
=
(
OvsBridge
)
obj
;
if
(
bridge
.
bridgeId
.
equals
(
this
.
bridgeId
))
{
if
(
bridge
.
bridgeId
.
equals
(
this
.
bridgeId
))
{
if
(
this
.
ports
.
size
()
==
bridge
.
ports
.
size
())
{
if
(
this
.
ports
==
null
&&
bridge
.
ports
==
null
)
{
return
true
;
}
else
if
(
this
.
ports
.
size
()
==
bridge
.
ports
.
size
())
{
for
(
int
i
=
0
;
i
<
this
.
ports
.
size
();
i
++)
{
for
(
int
i
=
0
;
i
<
this
.
ports
.
size
();
i
++)
{
if
(!
this
.
ports
.
get
(
i
).
equals
(
bridge
.
ports
.
get
(
i
)))
{
if
(!
this
.
ports
.
get
(
i
).
equals
(
bridge
.
ports
.
get
(
i
)))
{
return
false
;
return
false
;
...
...
bishe-utils/src/main/java/top/ninwoo/utils/service/OVSService.java
View file @
ffdfc09b
package
top.ninwoo.utils.service
;
package
top.ninwoo.utils.service
;
import
top.ninwoo.utils.entity.OvsBridge
;
import
java.util.List
;
public
interface
OVSService
{
public
interface
OVSService
{
List
<
OvsBridge
>
getOvsBridges
();
}
}
bishe-utils/src/main/java/top/ninwoo/utils/service/impl/DockerServiceImpl.java
View file @
ffdfc09b
...
@@ -2,6 +2,8 @@ package top.ninwoo.utils.service.impl;
...
@@ -2,6 +2,8 @@ package top.ninwoo.utils.service.impl;
import
com.spotify.docker.client.messages.Container
;
import
com.spotify.docker.client.messages.Container
;
import
com.spotify.docker.client.messages.ContainerInfo
;
import
com.spotify.docker.client.messages.ContainerInfo
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
org.springframework.beans.factory.InitializingBean
;
import
org.springframework.beans.factory.InitializingBean
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.scheduling.annotation.Scheduled
;
import
org.springframework.scheduling.annotation.Scheduled
;
...
@@ -19,6 +21,8 @@ import java.util.concurrent.locks.ReentrantLock;
...
@@ -19,6 +21,8 @@ import java.util.concurrent.locks.ReentrantLock;
@Service
@Service
public
class
DockerServiceImpl
implements
DockerService
,
InitializingBean
{
public
class
DockerServiceImpl
implements
DockerService
,
InitializingBean
{
private
final
Logger
LOG
=
LoggerFactory
.
getLogger
(
DockerServiceImpl
.
class
);
@Autowired
@Autowired
private
DockerUtils
dockerUtils
;
private
DockerUtils
dockerUtils
;
...
@@ -125,6 +129,7 @@ public class DockerServiceImpl implements DockerService, InitializingBean {
...
@@ -125,6 +129,7 @@ public class DockerServiceImpl implements DockerService, InitializingBean {
@Scheduled
(
fixedRate
=
500
)
@Scheduled
(
fixedRate
=
500
)
@Override
@Override
public
void
addNewContainers
()
{
public
void
addNewContainers
()
{
LOG
.
debug
(
"更新容器列表"
);
Map
<
String
,
DockerContainer
>
containers
=
dockerUtils
.
getContainers
(
false
);
Map
<
String
,
DockerContainer
>
containers
=
dockerUtils
.
getContainers
(
false
);
containers
.
forEach
((
cid
,
container
)
->
{
containers
.
forEach
((
cid
,
container
)
->
{
if
(
runingContainers
.
containsKey
(
cid
))
{
if
(
runingContainers
.
containsKey
(
cid
))
{
...
...
bishe-utils/src/main/java/top/ninwoo/utils/service/impl/OVSServiceImpl.java
View file @
ffdfc09b
...
@@ -12,7 +12,9 @@ import top.ninwoo.utils.util.LinuxCtlUtils;
...
@@ -12,7 +12,9 @@ import top.ninwoo.utils.util.LinuxCtlUtils;
import
top.ninwoo.utils.util.OvsUtils
;
import
top.ninwoo.utils.util.OvsUtils
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.HashSet
;
import
java.util.List
;
import
java.util.List
;
import
java.util.Set
;
import
java.util.concurrent.ConcurrentHashMap
;
import
java.util.concurrent.ConcurrentHashMap
;
/**
/**
...
@@ -36,6 +38,13 @@ public class OVSServiceImpl implements OVSService, InitializingBean {
...
@@ -36,6 +38,13 @@ public class OVSServiceImpl implements OVSService, InitializingBean {
@Override
@Override
public
void
afterPropertiesSet
()
throws
Exception
{
public
void
afterPropertiesSet
()
throws
Exception
{
fullUpdate
();
}
/**
* 全量更新
*/
public
void
fullUpdate
()
{
isInstall
=
ovsUtils
.
isInstall
();
isInstall
=
ovsUtils
.
isInstall
();
if
(!
isInstall
)
{
if
(!
isInstall
)
{
...
@@ -51,13 +60,47 @@ public class OVSServiceImpl implements OVSService, InitializingBean {
...
@@ -51,13 +60,47 @@ public class OVSServiceImpl implements OVSService, InitializingBean {
ovsId
=
ovs
.
getId
();
ovsId
=
ovs
.
getId
();
}
}
// TODO:定时更新ovs-vsctl
/**
* 定时更新Ovs状态
*/
@Scheduled
(
fixedRate
=
500
)
@Scheduled
(
fixedRate
=
500
)
public
void
updateOvsStatus
()
{
public
void
updateOvsStatus
()
{
Ovs
ovs
=
ovsUtils
.
showDetails
();
Ovs
ovs
=
ovsUtils
.
showDetails
();
// 第一次检查,判断Bridge列表是否减少
// 第一次检查,判断Bridge列表是否减少
if
(!
ovs
.
getId
().
equals
(
ovsId
))
{
// 清空原有的配置,进行一次全量更新
fullUpdate
();
}
// 第二次检查,判断是否有新的bridge添加
// 第二次检查,判断是否有新的bridge添加
List
<
OvsBridge
>
bridges
=
ovs
.
getBridges
();
Set
<
String
>
updateList
=
new
HashSet
<>();
bridges
.
forEach
(
b
->
{
if
(!
ovsBridges
.
containsKey
(
b
.
getBridgeId
()))
{
ovsBridges
.
put
(
b
.
getBridgeId
(),
b
);
updateList
.
add
(
b
.
getBridgeId
());
}
else
if
(
ovsBridges
.
containsKey
(
b
.
getBridgeId
())
&&
!
ovsBridges
.
get
(
b
.
getBridgeId
()).
equals
(
b
))
{
ovsBridges
.
put
(
b
.
getBridgeId
(),
b
);
updateList
.
add
(
b
.
getBridgeId
());
}
else
if
(
ovsBridges
.
containsKey
(
b
.
getBridgeId
())
&&
ovsBridges
.
get
(
b
.
getBridgeId
()).
equals
(
b
))
{
updateList
.
add
(
b
.
getBridgeId
());
}
});
// 删除丢失的点
ovsBridges
.
keySet
().
forEach
(
k
->
{
if
(!
updateList
.
contains
(
k
))
{
ovsBridges
.
remove
(
k
);
}
});
}
/**
* 获取ovs网桥列表
* @return
*/
@Override
public
List
<
OvsBridge
>
getOvsBridges
()
{
return
new
ArrayList
<>(
ovsBridges
.
values
());
}
}
}
}
bishe-utils/src/main/java/top/ninwoo/utils/util/impl/DockerUtilsImpl.java
View file @
ffdfc09b
...
@@ -8,6 +8,8 @@ import com.spotify.docker.client.messages.Container;
...
@@ -8,6 +8,8 @@ import com.spotify.docker.client.messages.Container;
import
com.spotify.docker.client.messages.ContainerInfo
;
import
com.spotify.docker.client.messages.ContainerInfo
;
import
com.spotify.docker.client.messages.ExecState
;
import
com.spotify.docker.client.messages.ExecState
;
import
com.sun.xml.internal.messaging.saaj.util.ByteOutputStream
;
import
com.sun.xml.internal.messaging.saaj.util.ByteOutputStream
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
top.ninwoo.utils.entity.DockerContainer
;
import
top.ninwoo.utils.entity.DockerContainer
;
import
top.ninwoo.utils.util.DockerUtils
;
import
top.ninwoo.utils.util.DockerUtils
;
...
@@ -28,6 +30,8 @@ import java.util.Map;
...
@@ -28,6 +30,8 @@ import java.util.Map;
*/
*/
@Utils
@Utils
public
class
DockerUtilsImpl
implements
DockerUtils
{
public
class
DockerUtilsImpl
implements
DockerUtils
{
private
final
Logger
LOG
=
LoggerFactory
.
getLogger
(
DockerUtilsImpl
.
class
);
@Autowired
@Autowired
DockerClient
dockerClient
;
DockerClient
dockerClient
;
...
...
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