Skip to content

Commit

Permalink
Fix typos (#2120)
Browse files Browse the repository at this point in the history
* 修正单词拼写

Signed-off-by: zhangwd3 <[email protected]>

* Correcting spelling mistakes

Signed-off-by: zhangwd3 <[email protected]>

---------

Signed-off-by: zhangwd3 <[email protected]>
  • Loading branch information
daziz authored Jun 7, 2023
1 parent be68125 commit 0e0d8a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public interface IMROutput {
public IMRBatchCubingOutputSide getBatchCubingOutputSide(CubeSegment seg);

/**
* Participate the batch cubing flow as the output side. Responsible for savg
* Participate the batch cubing flow as the output side. Responsible for save
* the cuboid output to storage (Phase 3).
*
* - Phase 1: Create Flat Table
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public abstract class AbstractHadoopJob extends Configured implements Tool {
.isRequired(true).withDescription("Job name. For example, Kylin_Cuboid_Builder-clsfd_v2_Step_22-D)")
.create(BatchConstants.ARG_JOB_NAME);
protected static final Option OPTION_CUBE_NAME = OptionBuilder.withArgName(BatchConstants.ARG_CUBE_NAME).hasArg()
.isRequired(true).withDescription("Cube name. For exmaple, flat_item_cube")
.isRequired(true).withDescription("Cube name. For example, flat_item_cube")
.create(BatchConstants.ARG_CUBE_NAME);
protected static final Option OPTION_CUBING_JOB_ID = OptionBuilder.withArgName(BatchConstants.ARG_CUBING_JOB_ID)
.hasArg().isRequired(false).withDescription("ID of cubing job executable")
Expand Down Expand Up @@ -128,7 +128,7 @@ public abstract class AbstractHadoopJob extends Configured implements Tool {
protected static final Option OPTION_NEED_UPDATE_BASE_CUBOID_SHARD = OptionBuilder
.withArgName(BatchConstants.ARG_UPDATE_SHARD).hasArg().isRequired(false)
.withDescription("If need to update base cuboid shard").create(BatchConstants.ARG_UPDATE_SHARD);
protected static final Option OPTION_TABLE_NAME = OptionBuilder.withArgName(BatchConstants.ARG_TABLE_NAME).hasArg().isRequired(true).withDescription("Table name. For exmaple, default.table1").create(BatchConstants.ARG_TABLE_NAME);
protected static final Option OPTION_TABLE_NAME = OptionBuilder.withArgName(BatchConstants.ARG_TABLE_NAME).hasArg().isRequired(true).withDescription("Table name. For example, default.table1").create(BatchConstants.ARG_TABLE_NAME);
protected static final Option OPTION_LOOKUP_SNAPSHOT_ID = OptionBuilder.withArgName(BatchConstants.ARG_LOOKUP_SNAPSHOT_ID).hasArg()
.isRequired(true).withDescription("Lookup table snapshotID")
.create(BatchConstants.ARG_LOOKUP_SNAPSHOT_ID);
Expand Down

0 comments on commit 0e0d8a1

Please sign in to comment.