summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/third_party/wiredtiger/import.data2
-rw-r--r--src/third_party/wiredtiger/test/csuite/wt7989_compact_checkpoint/main.c17
2 files changed, 10 insertions, 9 deletions
diff --git a/src/third_party/wiredtiger/import.data b/src/third_party/wiredtiger/import.data
index e2a10e63456..1161019c623 100644
--- a/src/third_party/wiredtiger/import.data
+++ b/src/third_party/wiredtiger/import.data
@@ -2,5 +2,5 @@
"vendor": "wiredtiger",
"github": "wiredtiger/wiredtiger.git",
"branch": "mongodb-master",
- "commit": "c8ac1cd294e523fe1a4372e411a4170913edc556"
+ "commit": "b63d81a2dab9034c1ed3870c316baf06ab465a40"
}
diff --git a/src/third_party/wiredtiger/test/csuite/wt7989_compact_checkpoint/main.c b/src/third_party/wiredtiger/test/csuite/wt7989_compact_checkpoint/main.c
index a93d83b0985..8cd8c4b3e77 100644
--- a/src/third_party/wiredtiger/test/csuite/wt7989_compact_checkpoint/main.c
+++ b/src/third_party/wiredtiger/test/csuite/wt7989_compact_checkpoint/main.c
@@ -48,6 +48,7 @@ static const char conn_config[] = "create,cache_size=2GB,statistics=(all)";
static const char table_config[] =
"allocation_size=4KB,leaf_page_max=4KB,key_format=i,value_format=QQQS";
static char data_str[1024] = "";
+static pthread_t thread_compact;
/* Structures definition. */
struct thread_data {
@@ -105,7 +106,7 @@ run_test(bool stress_test, const char *home, const char *uri)
struct thread_data td;
WT_CONNECTION *conn;
WT_SESSION *session;
- pthread_t thread_checkpoint, thread_compact;
+ pthread_t thread_checkpoint;
uint64_t file_sz_after, file_sz_before;
testutil_make_work_dir(home);
@@ -147,8 +148,8 @@ run_test(bool stress_test, const char *home, const char *uri)
/* Create and initialize conditional variable. */
testutil_check(__wt_cond_alloc((WT_SESSION_IMPL *)session, "compact operation", &td.cond));
+ /* The checkpoint thread will spawn the compact thread when it's ready. */
testutil_check(pthread_create(&thread_checkpoint, NULL, thread_func_checkpoint, &td));
- testutil_check(pthread_create(&thread_compact, NULL, thread_func_compact, &td));
}
/* Wait for the threads to finish the work. */
@@ -188,12 +189,6 @@ thread_func_compact(void *arg)
testutil_check(td->conn->open_session(td->conn, NULL, NULL, &session));
if (td->cond != NULL) {
- /*
- * Make sure checkpoint thread is initialized and waiting for the signal. Sleep for one
- * second.
- */
- __wt_sleep(1, 0);
-
/* Wake up the checkpoint thread. */
printf("Sending the signal!\n");
__wt_cond_signal((WT_SESSION_IMPL *)session, td->cond);
@@ -237,6 +232,12 @@ thread_func_checkpoint(void *arg)
__wt_random_init_seed((WT_SESSION_IMPL *)session, &rnd);
if (td->cond != NULL) {
+ /*
+ * Spawn the compact thread here to make sure the both threads are ready for the synced
+ * start.
+ */
+ testutil_check(pthread_create(&thread_compact, NULL, thread_func_compact, td));
+
printf("Waiting for the signal...\n");
/*
* Wait for the signal and time out after 20 seconds. wait_run_check is required because the