This topic describes how to configure Hudi-related parameters in two ways.

SET commands

Run SET commands to configure global parameters.
set hoodie.insert.shuffle.parallelism = 100;
set hoodie.upsert.shuffle.parallelism = 100;
set hoodie.delete.shuffle.parallelism = 100;

Options

Configure global parameters in the options of the CREATE TABLE statement.
create table if not exists h0(
  id bigint, 
  name string, 
  price double
) using hudi
options (
  primaryKey = 'id',
  type = 'mor',
  hoodie.index.type = 'GLOBAL_BLOOM'
);