Commit f7baa1a0 authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

#2723 refs[t:2723] fix the slow control-c reaction in the brtloader's write to brt function

git-svn-id: file:///svn/toku/tokudb@21103 c7de825b-a66e-492c-adef-691d508d4ae1
parent d217700f
...@@ -2185,7 +2185,7 @@ static int toku_loader_write_brt_from_q (BRTLOADER bl, ...@@ -2185,7 +2185,7 @@ static int toku_loader_write_brt_from_q (BRTLOADER bl,
uint64_t used_estimate = 0; // how much diskspace have we used up? uint64_t used_estimate = 0; // how much diskspace have we used up?
while (1) { while (result == 0) {
void *item; void *item;
{ {
BL_TRACE(blt_fractal_thread); BL_TRACE(blt_fractal_thread);
...@@ -2199,7 +2199,6 @@ static int toku_loader_write_brt_from_q (BRTLOADER bl, ...@@ -2199,7 +2199,6 @@ static int toku_loader_write_brt_from_q (BRTLOADER bl,
} }
struct rowset *output_rowset = (struct rowset *)item; struct rowset *output_rowset = (struct rowset *)item;
if (result == 0)
for (unsigned int i = 0; i < output_rowset->n_rows; i++) { for (unsigned int i = 0; i < output_rowset->n_rows; i++) {
DBT key = make_dbt(output_rowset->data+output_rowset->rows[i].off, output_rowset->rows[i].klen); DBT key = make_dbt(output_rowset->data+output_rowset->rows[i].off, output_rowset->rows[i].klen);
DBT val = make_dbt(output_rowset->data+output_rowset->rows[i].off + output_rowset->rows[i].klen, output_rowset->rows[i].vlen); DBT val = make_dbt(output_rowset->data+output_rowset->rows[i].off + output_rowset->rows[i].klen, output_rowset->rows[i].vlen);
...@@ -2253,6 +2252,9 @@ static int toku_loader_write_brt_from_q (BRTLOADER bl, ...@@ -2253,6 +2252,9 @@ static int toku_loader_write_brt_from_q (BRTLOADER bl,
destroy_rowset(output_rowset); destroy_rowset(output_rowset);
toku_free(output_rowset); toku_free(output_rowset);
if (result == 0)
result = brt_loader_get_error(&bl->error_callback); // check if an error was posted and terminate this quickly
} }
if (lbuf) { if (lbuf) {
...@@ -2269,19 +2271,18 @@ static int toku_loader_write_brt_from_q (BRTLOADER bl, ...@@ -2269,19 +2271,18 @@ static int toku_loader_write_brt_from_q (BRTLOADER bl,
if (result == 0) { if (result == 0) {
result = brt_loader_get_error(&bl->error_callback); // if there were any prior errors then exit result = brt_loader_get_error(&bl->error_callback); // if there were any prior errors then exit
if (result) goto error;
} }
if (result != 0) goto error;
// We haven't paniced, so the sum should add up. // We haven't paniced, so the sum should add up.
if (result==0) { invariant(used_estimate == total_disksize_estimate);
invariant(used_estimate == total_disksize_estimate);
}
n_pivots++; n_pivots++;
{ {
DBT key=make_dbt(0,0); // must write an extra DBT into the pivots file. DBT key = make_dbt(0,0); // must write an extra DBT into the pivots file.
r=bl_write_dbt(&key, pivots_stream, NULL, bl); r = bl_write_dbt(&key, pivots_stream, NULL, bl);
if (r) { if (r) {
result = r; goto error; result = r; goto error;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment