You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Brandon Williams (Jira)" <ji...@apache.org> on 2022/12/01 16:51:00 UTC

[jira] [Commented] (CASSANDRA-18055) Nodetool Compact set the compaction type incorrectly

    [ https://issues.apache.org/jira/browse/CASSANDRA-18055?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17642048#comment-17642048 ] 

Brandon Williams commented on CASSANDRA-18055:
----------------------------------------------

I reran your PR through CI, including a repeated test for CompactionTaskTest: [j8|https://app.circleci.com/pipelines/github/driftx/cassandra/710/workflows/7a9c4adb-aa8d-4c48-8f32-6f878e1c63fc], [j11|https://app.circleci.com/pipelines/github/driftx/cassandra/710/workflows/ab31cc66-501a-4998-95fe-79a2da11166f]. Everything passed and looks good to me.

> Nodetool Compact set the compaction type incorrectly
> ----------------------------------------------------
>
>                 Key: CASSANDRA-18055
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-18055
>             Project: Cassandra
>          Issue Type: Bug
>          Components: Local/Compaction, Tool/nodetool
>            Reporter: maxwellguo
>            Assignee: maxwellguo
>            Priority: Low
>             Fix For: 4.x
>
>         Attachments: 20221116235846.jpg
>
>          Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> When using nodetool compactionstats to see what does the c*'s compactions are doing ,the output has got a column named "compaction type", but It seem that major compaction and minor compaction 's type are all name Compaction, after read the code I found that may be the the MAJOR_COMPACTION OperationType is not setted into AbstractCompactionTask  
> at this method : CompactionStrategyManager -> getMaximalTasks .When we peform a major compact without any arguments we will got this execute path : 
> {code:java}
> // Some comments here
> Compact.java : probe.forceKeyspaceCompaction(splitOutput, keyspace, tableNames);
> --->
>  ColumnFamilyStore.java :  cfStore.forceMajorCompaction(splitOutput);
> ---> 
> CompactionManager.java : submitMaximal(cfStore, gcBefore, splitOutput, OperationType.MAJOR_COMPACTION); 
> {code} 
> Unfortunately OperationType.MAJOR_COMPACTION is not rightly setted.
> see the picture on the right I perform a major compact , and on the left the compactionstats show the type is only Compaction ;
> I think it is import for us to know wether the task is a major or a minor .
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org