Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public void register(Metric metric, String metricName, AbstractMetricGroup group
registerMetric(currentMetricGroup, metric, metricName);
}

/** Exposes the metrics of Fluss metics group for flink. */
/** Exposes the metrics of Fluss metrics group for flink. */
public Metric getFlussMetric(String metricName) {
return metrics.get(metricName);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public class CompletedSnapshotStore {

/**
* Local copy of the completed snapshots in snapshot store. This is restored from snapshot
* handel store when recovering.
* handle store when recovering.
*/
private final ArrayDeque<CompletedSnapshot> completedSnapshots;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ final class ReplicaFetcherThread extends ShutdownableThread {
private final LeaderEndpoint leader;
private final int fetchBackOffMs;

// manually add timout logic in here, todo remove this timeout logic if
// manually add timeout logic in here, todo remove this timeout logic if
// we support global request timeout in #279
private final int timeoutSeconds;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ protected static Configuration createConfiguration() {
configuration.setString(ConfigOptions.ADVERTISED_LISTENERS, "CLIENT://198.168.0.1:100");
configuration.set(ConfigOptions.REMOTE_DATA_DIR, "/tmp/fluss/remote-data");

// set to small timout to verify the case that zk session is timeout
// set to small timeout to verify the case that zk session is timeout
configuration.set(ConfigOptions.ZOOKEEPER_SESSION_TIMEOUT, Duration.ofMillis(500));
configuration.set(ConfigOptions.ZOOKEEPER_CONNECTION_TIMEOUT, Duration.ofMillis(500));
configuration.set(ConfigOptions.ZOOKEEPER_RETRY_WAIT, Duration.ofMillis(500));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ void testHighConcurrencyModificationOfResourceAcls() throws Exception {
}

runInConcurrent(concurrentTasks);
// Make sure all acl notifacations are arrived.
// Make sure all acl notifications are arrived.
retry(
Duration.ofMinutes(1),
() -> assertThat(listAcls(authorizer, commonResource)).isEqualTo(expectedAcls));
Expand Down