Skip to content

Commit 0e0d8a1

Browse files
authored
Fix typos (#2120)
* 修正单词拼写 Signed-off-by: zhangwd3 <[email protected]> * Correcting spelling mistakes Signed-off-by: zhangwd3 <[email protected]> --------- Signed-off-by: zhangwd3 <[email protected]>
1 parent be68125 commit 0e0d8a1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build-engine/src/main/java/org/apache/kylin/engine/mr/IMROutput.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public interface IMROutput {
2727
public IMRBatchCubingOutputSide getBatchCubingOutputSide(CubeSegment seg);
2828

2929
/**
30-
* Participate the batch cubing flow as the output side. Responsible for savg
30+
* Participate the batch cubing flow as the output side. Responsible for save
3131
* the cuboid output to storage (Phase 3).
3232
*
3333
* - Phase 1: Create Flat Table

build-engine/src/main/java/org/apache/kylin/engine/mr/common/AbstractHadoopJob.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public abstract class AbstractHadoopJob extends Configured implements Tool {
9090
.isRequired(true).withDescription("Job name. For example, Kylin_Cuboid_Builder-clsfd_v2_Step_22-D)")
9191
.create(BatchConstants.ARG_JOB_NAME);
9292
protected static final Option OPTION_CUBE_NAME = OptionBuilder.withArgName(BatchConstants.ARG_CUBE_NAME).hasArg()
93-
.isRequired(true).withDescription("Cube name. For exmaple, flat_item_cube")
93+
.isRequired(true).withDescription("Cube name. For example, flat_item_cube")
9494
.create(BatchConstants.ARG_CUBE_NAME);
9595
protected static final Option OPTION_CUBING_JOB_ID = OptionBuilder.withArgName(BatchConstants.ARG_CUBING_JOB_ID)
9696
.hasArg().isRequired(false).withDescription("ID of cubing job executable")
@@ -128,7 +128,7 @@ public abstract class AbstractHadoopJob extends Configured implements Tool {
128128
protected static final Option OPTION_NEED_UPDATE_BASE_CUBOID_SHARD = OptionBuilder
129129
.withArgName(BatchConstants.ARG_UPDATE_SHARD).hasArg().isRequired(false)
130130
.withDescription("If need to update base cuboid shard").create(BatchConstants.ARG_UPDATE_SHARD);
131-
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);
131+
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);
132132
protected static final Option OPTION_LOOKUP_SNAPSHOT_ID = OptionBuilder.withArgName(BatchConstants.ARG_LOOKUP_SNAPSHOT_ID).hasArg()
133133
.isRequired(true).withDescription("Lookup table snapshotID")
134134
.create(BatchConstants.ARG_LOOKUP_SNAPSHOT_ID);

0 commit comments

Comments
 (0)