Skip to content
Snippets Groups Projects
Commit 23c16207 authored by Nikita Pettik's avatar Nikita Pettik
Browse files

vinyl: update gh-4957-too-many-upserts test

After upsert rework in 5a61c471 (#5107 issue) update operations are
applied consistently corresponding to upserts they belong to: if update
operation from single upsert fails - all update operations from that
upsert are skipped. But the rest of update operations related to other
upserts (after squashing two upserts) are applied. So let's update #4957
test case: now upsert operation can't be processed only if it contains
more than BOX_UPDATE_OP_CNT_MAX (4000) operations before (before
squashing with any other upsert).

Follow-up #4957
Follow-up #5107
parent 77c218cc
No related branches found
No related tags found
No related merge requests found
......@@ -32,26 +32,24 @@ ups_cnt = 5000
box.begin()
| ---
| ...
for i = 1, ups_cnt do s:upsert({1}, {{'&', 2, 1}}) end
for i = 1, ups_cnt do s:upsert({1}, {{'|', 2, i}}) end
| ---
| ...
box.commit()
| ---
| ...
-- Upserts are not able to squash, so scheduler will get stuck.
-- So let's not waste much time here, just check that no crash
-- takes place.
-- Since 2.6 update operations of single upsert are applied consistently.
-- So despite upserts' update operations can be squashed, they are anyway
-- applied as they come in corresponding upserts. The same concerns the
-- second test.
--
box.snapshot()
| ---
| - ok
| ...
fiber = require('fiber')
| ---
| ...
fiber.sleep(0.01)
s:select()
| ---
| - - [1, 8191]
| ...
s:drop()
......@@ -82,7 +80,7 @@ box.snapshot()
box.begin()
| ---
| ...
for k = 1, ups_cnt do s:upsert({1}, {{'+', k, 1}}) end
for k = 2, ups_cnt do s:upsert({1}, {{'+', k, 1}}) end
| ---
| ...
box.commit()
......@@ -92,10 +90,39 @@ box.snapshot()
| ---
| - ok
| ...
fiber.sleep(0.01)
s:select()[1][ups_cnt]
| ---
| - 5001
| ...
s:drop()
| ---
| ...
-- Test that single upsert with too many (> 4000) operations doesn't
-- pass check so it is rejected.
--
s = box.schema.create_space('test', {engine = 'vinyl'})
| ---
| ...
pk = s:create_index('pk')
| ---
| ...
ups_ops = {}
| ---
| ...
for k = 2, ups_cnt do ups_ops[k] = {'+', k, 1} end
| ---
| ...
s:upsert({1}, ups_ops)
| ---
| - error: Illegal parameters, too many operations for update
| ...
s:select()
| ---
| - []
| ...
s:drop()
| ---
| ...
......
......@@ -12,16 +12,15 @@ box.snapshot()
--
ups_cnt = 5000
box.begin()
for i = 1, ups_cnt do s:upsert({1}, {{'&', 2, 1}}) end
for i = 1, ups_cnt do s:upsert({1}, {{'|', 2, i}}) end
box.commit()
-- Upserts are not able to squash, so scheduler will get stuck.
-- So let's not waste much time here, just check that no crash
-- takes place.
-- Since 2.6 update operations of single upsert are applied consistently.
-- So despite upserts' update operations can be squashed, they are anyway
-- applied as they come in corresponding upserts. The same concerns the
-- second test.
--
box.snapshot()
fiber = require('fiber')
fiber.sleep(0.01)
s:select()
s:drop()
......@@ -34,11 +33,23 @@ _ = s:insert(tuple)
box.snapshot()
box.begin()
for k = 1, ups_cnt do s:upsert({1}, {{'+', k, 1}}) end
for k = 2, ups_cnt do s:upsert({1}, {{'+', k, 1}}) end
box.commit()
box.snapshot()
fiber.sleep(0.01)
s:select()[1][ups_cnt]
s:drop()
-- Test that single upsert with too many (> 4000) operations doesn't
-- pass check so it is rejected.
--
s = box.schema.create_space('test', {engine = 'vinyl'})
pk = s:create_index('pk')
ups_ops = {}
for k = 2, ups_cnt do ups_ops[k] = {'+', k, 1} end
s:upsert({1}, ups_ops)
s:select()
s:drop()
-- restart the current server to resolve the issue #5141
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment