d5dc819dcd53f75ec8afa1ab4929dee83ceb171a galt Sat Jun 2 09:45:35 2018 -0700 genome-centdb.hgcentral.userDb has finally exceeded the old limit which was 14 GB. I have increased it to 20 GB. hgcentral SSD on hgnfs1 is only 14% full, so it has plenty of space left. It seems the table has been slowly growing, not some sudden rapid increase. diff --git src/hg/hgcentralTidy/hgcentralTidy.c src/hg/hgcentralTidy/hgcentralTidy.c index f1665e8..7921b79 100644 --- src/hg/hgcentralTidy/hgcentralTidy.c +++ src/hg/hgcentralTidy/hgcentralTidy.c @@ -15,31 +15,32 @@ #include "options.h" #include "jksql.h" #include "hdb.h" #include "hgConfig.h" char *database = NULL; char *host = NULL; char *user = NULL; char *password = NULL; struct sqlConnection *conn = NULL; int chunkSize = 1000; int chunkWait = 0; -int squealSize = 14; /* complain if table data_length is bigger than squealSize GB */ +int squealSize = 20; /* complain if table data_length is bigger than squealSize GB */ + // was 14 until 2018-06-02 int purgeStart = -1; /* manual specify purge range in days ago */ int purgeEnd = -1; char *purgeTable = NULL; /* optionally specify one table to purge */ char *sessionDbTableName = "sessionDb"; char *userDbTableName = "userDb"; void usage() /* Explain usage and exit. */ { errAbort( "hgcentralTidy - Clean out old carts in hgcentral without blocking cart use\n" "usage:\n"