Skip to content
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

bugfix: deleted the object by Admin API, and the cache was not properly cleaned up during etcd data synchronization. #2168

Merged
merged 2 commits into from
Sep 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 17 additions & 8 deletions apisix/core/config_etcd.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--

local table = require("apisix.core.table")
local config_local = require("apisix.core.config_local")
local log = require("apisix.core.log")
local json = require("apisix.core.json")
Expand Down Expand Up @@ -338,36 +340,43 @@ local function sync_data(self)
res.value.id = key
self.values[pre_index] = res
res.clean_handlers = {}
log.info("update data by key: ", key)

else
self.sync_times = self.sync_times + 1
self.values[pre_index] = false
self.values_hash[key] = nil
log.info("delete data by key: ", key)
end

elseif res.value then
res.clean_handlers = {}
insert_tab(self.values, res)
self.values_hash[key] = #self.values
res.value.id = key
log.info("insert data by key: ", key)
end

-- avoid space waste
-- todo: need to cover this path, it is important.
if self.sync_times > 100 then
local count = 0
for i = 1, #self.values do
local val = self.values[i]
self.values[i] = nil
local values_original = table.clone(self.values)
table.clear(self.values)

for i = 1, #values_original do
local val = values_original[i]
if val then
count = count + 1
self.values[count] = val
table.insert(self.values, val)
end
end

for i = 1, count do
table.clear(self.values_hash)
log.info("clear stale data in `values_hash` for key: ", key)

for i = 1, #self.values do
key = short_key(self, self.values[i].key)
self.values_hash[key] = i
end

self.sync_times = 0
end

Expand Down
109 changes: 109 additions & 0 deletions t/node/route-delete.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
use t::APISIX 'no_plan';

repeat_each(2);
log_level('info');
worker_connections(256);
no_root_location();
no_shuffle();

run_tests();

__DATA__

=== TEST 1: create 130 routes + delete them
--- config
location /t {
content_by_lua_block {
local t = require("lib.test_admin").test

for i = 1, 130 do
local code, body = t('/apisix/admin/routes/' .. i,
ngx.HTTP_PUT,
[[{
"upstream": {
"nodes": {
"127.0.0.1:1980": 1
},
"type": "roundrobin"
},
"uri": "/hello]] .. i .. [["
}]]
)
end

for i = 1, 130 do
local code, body = t('/apisix/admin/routes/' .. i,
ngx.HTTP_PUT,
[[{
"upstream": {
"nodes": {
"127.0.0.1:1980": 1
},
"type": "roundrobin"
},
"uri": "/hello]] .. i .. [["
}]]
)
end

for i = 1, 130 do
local code, body = t('/apisix/admin/routes/' .. i,
ngx.HTTP_DELETE
)
end

for i = 1, 130 do
local code, body = t('/apisix/admin/routes/' .. i,
ngx.HTTP_PUT,
[[{
"upstream": {
"nodes": {
"127.0.0.1:1980": 1
},
"type": "roundrobin"
},
"uri": "/hello]] .. i .. [["
}]]
)
end

for i = 1, 130 do
local code, body = t('/apisix/admin/routes/' .. i,
ngx.HTTP_DELETE
)
end

ngx.say("done")
}
}
--- request
GET /t
--- response_body
done
--- no_error_log
[error]
--- grep_error_log eval
qr/\w+ (data by key: 126)/
--- grep_error_log_out
insert data by key: 126
update data by key: 126
delete data by key: 126
insert data by key: 126
delete data by key: 126
--- timeout: 20
membphis marked this conversation as resolved.
Show resolved Hide resolved