Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
K
koko
Project
Project
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
ops
koko
Commits
3a5cc5a2
Commit
3a5cc5a2
authored
Nov 01, 2019
by
Eric
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[update] optimize memory
parent
a048486b
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
15 additions
and
16 deletions
+15
-16
parsercmd.go
pkg/proxy/parsercmd.go
+3
-4
azure.go
pkg/proxy/recorderstorage/azure.go
+1
-1
es.go
pkg/proxy/recorderstorage/es.go
+1
-1
oss.go
pkg/proxy/recorderstorage/oss.go
+1
-1
s3.go
pkg/proxy/recorderstorage/s3.go
+1
-1
server.go
pkg/proxy/recorderstorage/server.go
+2
-2
util.go
pkg/proxy/util.go
+6
-6
No files found.
pkg/proxy/parsercmd.go
View file @
3a5cc5a2
...
@@ -67,16 +67,16 @@ func (cp *CmdParser) initial() {
...
@@ -67,16 +67,16 @@ func (cp *CmdParser) initial() {
go
func
()
{
go
func
()
{
logger
.
Infof
(
"Session %s: %s start"
,
cp
.
id
,
cp
.
name
)
logger
.
Infof
(
"Session %s: %s start"
,
cp
.
id
,
cp
.
name
)
defer
logger
.
Infof
(
"Session %s: %s parser close"
,
cp
.
id
,
cp
.
name
)
defer
logger
.
Infof
(
"Session %s: %s parser close"
,
cp
.
id
,
cp
.
name
)
in
loop
:
loop
:
for
{
for
{
line
,
err
:=
cp
.
term
.
ReadLine
()
line
,
err
:=
cp
.
term
.
ReadLine
()
if
err
!=
nil
{
if
err
!=
nil
{
select
{
select
{
case
<-
cp
.
closed
:
case
<-
cp
.
closed
:
goto
out
loop
break
loop
default
:
default
:
}
}
goto
in
loop
goto
loop
}
}
cp
.
lock
.
Lock
()
cp
.
lock
.
Lock
()
cp
.
currentLength
+=
len
(
line
)
cp
.
currentLength
+=
len
(
line
)
...
@@ -85,7 +85,6 @@ func (cp *CmdParser) initial() {
...
@@ -85,7 +85,6 @@ func (cp *CmdParser) initial() {
}
}
cp
.
lock
.
Unlock
()
cp
.
lock
.
Unlock
()
}
}
outloop
:
}()
}()
}
}
...
...
pkg/proxy/recorderstorage/azure.go
View file @
3a5cc5a2
...
@@ -18,7 +18,7 @@ type AzureReplayStorage struct {
...
@@ -18,7 +18,7 @@ type AzureReplayStorage struct {
EndpointSuffix
string
EndpointSuffix
string
}
}
func
(
a
*
AzureReplayStorage
)
Upload
(
gZipFilePath
,
target
string
)
(
err
error
)
{
func
(
a
AzureReplayStorage
)
Upload
(
gZipFilePath
,
target
string
)
(
err
error
)
{
file
,
err
:=
os
.
Open
(
gZipFilePath
)
file
,
err
:=
os
.
Open
(
gZipFilePath
)
if
err
!=
nil
{
if
err
!=
nil
{
return
return
...
...
pkg/proxy/recorderstorage/es.go
View file @
3a5cc5a2
...
@@ -17,7 +17,7 @@ type ESCommandStorage struct {
...
@@ -17,7 +17,7 @@ type ESCommandStorage struct {
DocType
string
DocType
string
}
}
func
(
es
*
ESCommandStorage
)
BulkSave
(
commands
[]
*
model
.
Command
)
(
err
error
)
{
func
(
es
ESCommandStorage
)
BulkSave
(
commands
[]
*
model
.
Command
)
(
err
error
)
{
var
buf
bytes
.
Buffer
var
buf
bytes
.
Buffer
esClinet
,
err
:=
elasticsearch
.
NewClient
(
elasticsearch
.
Config
{
esClinet
,
err
:=
elasticsearch
.
NewClient
(
elasticsearch
.
Config
{
Addresses
:
es
.
Hosts
,
Addresses
:
es
.
Hosts
,
...
...
pkg/proxy/recorderstorage/oss.go
View file @
3a5cc5a2
...
@@ -13,7 +13,7 @@ type OSSReplayStorage struct {
...
@@ -13,7 +13,7 @@ type OSSReplayStorage struct {
SecretKey
string
SecretKey
string
}
}
func
(
o
*
OSSReplayStorage
)
Upload
(
gZipFilePath
,
target
string
)
(
err
error
)
{
func
(
o
OSSReplayStorage
)
Upload
(
gZipFilePath
,
target
string
)
(
err
error
)
{
client
,
err
:=
oss
.
New
(
o
.
Endpoint
,
o
.
AccessKey
,
o
.
SecretKey
)
client
,
err
:=
oss
.
New
(
o
.
Endpoint
,
o
.
AccessKey
,
o
.
SecretKey
)
if
err
!=
nil
{
if
err
!=
nil
{
return
return
...
...
pkg/proxy/recorderstorage/s3.go
View file @
3a5cc5a2
...
@@ -19,7 +19,7 @@ type S3ReplayStorage struct {
...
@@ -19,7 +19,7 @@ type S3ReplayStorage struct {
Endpoint
string
Endpoint
string
}
}
func
(
s
*
S3ReplayStorage
)
Upload
(
gZipFilePath
,
target
string
)
(
err
error
)
{
func
(
s
S3ReplayStorage
)
Upload
(
gZipFilePath
,
target
string
)
(
err
error
)
{
file
,
err
:=
os
.
Open
(
gZipFilePath
)
file
,
err
:=
os
.
Open
(
gZipFilePath
)
if
err
!=
nil
{
if
err
!=
nil
{
...
...
pkg/proxy/recorderstorage/server.go
View file @
3a5cc5a2
...
@@ -11,7 +11,7 @@ import (
...
@@ -11,7 +11,7 @@ import (
type
ServerCommandStorage
struct
{
type
ServerCommandStorage
struct
{
}
}
func
(
s
*
ServerCommandStorage
)
BulkSave
(
commands
[]
*
model
.
Command
)
(
err
error
)
{
func
(
s
ServerCommandStorage
)
BulkSave
(
commands
[]
*
model
.
Command
)
(
err
error
)
{
return
service
.
PushSessionCommand
(
commands
)
return
service
.
PushSessionCommand
(
commands
)
}
}
...
@@ -19,7 +19,7 @@ type ServerReplayStorage struct {
...
@@ -19,7 +19,7 @@ type ServerReplayStorage struct {
StorageType
string
StorageType
string
}
}
func
(
s
*
ServerReplayStorage
)
Upload
(
gZipFilePath
,
target
string
)
(
err
error
)
{
func
(
s
ServerReplayStorage
)
Upload
(
gZipFilePath
,
target
string
)
(
err
error
)
{
sessionID
:=
strings
.
Split
(
filepath
.
Base
(
gZipFilePath
),
"."
)[
0
]
sessionID
:=
strings
.
Split
(
filepath
.
Base
(
gZipFilePath
),
"."
)[
0
]
return
service
.
PushSessionReplay
(
sessionID
,
gZipFilePath
)
return
service
.
PushSessionReplay
(
sessionID
,
gZipFilePath
)
}
}
pkg/proxy/util.go
View file @
3a5cc5a2
...
@@ -16,8 +16,8 @@ type CommandStorage interface {
...
@@ -16,8 +16,8 @@ type CommandStorage interface {
BulkSave
(
commands
[]
*
model
.
Command
)
error
BulkSave
(
commands
[]
*
model
.
Command
)
error
}
}
var
defaultCommandStorage
=
&
storage
.
ServerCommandStorage
{}
var
defaultCommandStorage
=
storage
.
ServerCommandStorage
{}
var
defaultReplayStorage
=
&
storage
.
ServerReplayStorage
{
StorageType
:
"server"
}
var
defaultReplayStorage
=
storage
.
ServerReplayStorage
{
StorageType
:
"server"
}
func
NewReplayStorage
()
ReplayStorage
{
func
NewReplayStorage
()
ReplayStorage
{
cf
:=
config
.
GetConf
()
.
ReplayStorage
cf
:=
config
.
GetConf
()
.
ReplayStorage
...
@@ -31,14 +31,14 @@ func NewReplayStorage() ReplayStorage {
...
@@ -31,14 +31,14 @@ func NewReplayStorage() ReplayStorage {
if
endpointSuffix
==
""
{
if
endpointSuffix
==
""
{
endpointSuffix
=
"core.chinacloudapi.cn"
endpointSuffix
=
"core.chinacloudapi.cn"
}
}
return
&
storage
.
AzureReplayStorage
{
return
storage
.
AzureReplayStorage
{
AccountName
:
cf
[
"ACCOUNT_NAME"
]
.
(
string
),
AccountName
:
cf
[
"ACCOUNT_NAME"
]
.
(
string
),
AccountKey
:
cf
[
"ACCOUNT_KEY"
]
.
(
string
),
AccountKey
:
cf
[
"ACCOUNT_KEY"
]
.
(
string
),
ContainerName
:
cf
[
"CONTAINER_NAME"
]
.
(
string
),
ContainerName
:
cf
[
"CONTAINER_NAME"
]
.
(
string
),
EndpointSuffix
:
endpointSuffix
,
EndpointSuffix
:
endpointSuffix
,
}
}
case
"oss"
:
case
"oss"
:
return
&
storage
.
OSSReplayStorage
{
return
storage
.
OSSReplayStorage
{
Endpoint
:
cf
[
"ENDPOINT"
]
.
(
string
),
Endpoint
:
cf
[
"ENDPOINT"
]
.
(
string
),
Bucket
:
cf
[
"BUCKET"
]
.
(
string
),
Bucket
:
cf
[
"BUCKET"
]
.
(
string
),
AccessKey
:
cf
[
"ACCESS_KEY"
]
.
(
string
),
AccessKey
:
cf
[
"ACCESS_KEY"
]
.
(
string
),
...
@@ -58,7 +58,7 @@ func NewReplayStorage() ReplayStorage {
...
@@ -58,7 +58,7 @@ func NewReplayStorage() ReplayStorage {
region
=
strings
.
Split
(
endpoint
,
"."
)[
1
]
region
=
strings
.
Split
(
endpoint
,
"."
)[
1
]
}
}
return
&
storage
.
S3ReplayStorage
{
return
storage
.
S3ReplayStorage
{
Bucket
:
bucket
,
Bucket
:
bucket
,
Region
:
region
,
Region
:
region
,
AccessKey
:
cf
[
"ACCESS_KEY"
]
.
(
string
),
AccessKey
:
cf
[
"ACCESS_KEY"
]
.
(
string
),
...
@@ -90,7 +90,7 @@ func NewCommandStorage() CommandStorage {
...
@@ -90,7 +90,7 @@ func NewCommandStorage() CommandStorage {
if
docType
==
""
{
if
docType
==
""
{
docType
=
"command_store"
docType
=
"command_store"
}
}
return
&
storage
.
ESCommandStorage
{
Hosts
:
hosts
,
Index
:
index
,
DocType
:
docType
}
return
storage
.
ESCommandStorage
{
Hosts
:
hosts
,
Index
:
index
,
DocType
:
docType
}
default
:
default
:
return
defaultCommandStorage
return
defaultCommandStorage
}
}
...
...
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