Skip to content

Commit

Permalink
Merge pull request #154 from scylladb/partitioning_scheme_configurabl…
Browse files Browse the repository at this point in the history
…e_buffers_patch

gemini: partition key buffers cli arg short hand removed
  • Loading branch information
Henrik Johansson authored Jul 2, 2019
2 parents c1afadd + 13def87 commit 3c4d32b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/gemini/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -629,8 +629,8 @@ func init() {
rootCmd.Flags().StringVarP(&level, "level", "", "info", "Specify the logging level, debug|info|warn|error|dpanic|panic|fatal")
rootCmd.Flags().IntVarP(&maxRetriesMutate, "max-mutation-retries", "", 2, "Maximum number of attempts to apply a mutation")
rootCmd.Flags().DurationVarP(&maxRetriesMutateSleep, "max-mutation-retries-backoff", "", 10*time.Millisecond, "Duration between attempts to apply a mutation for example 10ms or 1s")
rootCmd.Flags().Uint64VarP(&pkBufferSize, "partition-key-buffer-size", "c", 1000, "Number of buffered partition keys")
rootCmd.Flags().Uint64VarP(&pkBufferReuseSize, "partition-key-buffer-reuse-size", "c", 2000, "Number of reused buffered partition keys")
rootCmd.Flags().Uint64VarP(&pkBufferSize, "partition-key-buffer-size", "", 1000, "Number of buffered partition keys")
rootCmd.Flags().Uint64VarP(&pkBufferReuseSize, "partition-key-buffer-reuse-size", "", 2000, "Number of reused buffered partition keys")
}

func printSetup() error {
Expand Down

0 comments on commit 3c4d32b

Please sign in to comment.