Repository: incubator-blur Updated Branches: refs/heads/master 4302faea0 -> f320ffaff
Adding import status to table stats. Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/285ce584 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/285ce584 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/285ce584 Branch: refs/heads/master Commit: 285ce5849d7a069710510f3d039686aa31345044 Parents: 4302fae Author: Aaron McCurry <[email protected]> Authored: Sat Mar 28 11:03:18 2015 -0400 Committer: Aaron McCurry <[email protected]> Committed: Sat Mar 28 11:03:18 2015 -0400 ---------------------------------------------------------------------- distribution/src/main/scripts/interface/Blur.thrift | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/285ce584/distribution/src/main/scripts/interface/Blur.thrift ---------------------------------------------------------------------- diff --git a/distribution/src/main/scripts/interface/Blur.thrift b/distribution/src/main/scripts/interface/Blur.thrift index 0a6eee6..90539ac 100644 --- a/distribution/src/main/scripts/interface/Blur.thrift +++ b/distribution/src/main/scripts/interface/Blur.thrift @@ -681,7 +681,15 @@ struct TableStats { /** * The row count. */ - 4:i64 rowCount + 4:i64 rowCount, + /** + * The number of pending segment imports for this table. + */ + 5:i64 segmentImportPendingCount = 0, + /** + * The number of segment imports in progress for this table. + */ + 6:i64 segmentImportInProgressCount = 0 } /**
