You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mysql> create table user_behavior as
-> SELECT * FROM FILES(
-> "path" = "s3://huditest/user_behavior_sample_data.parquet",
-> "format" = "parquet",
-> "aws.s3.access_key" = "admin",
-> "aws.s3.secret_key" = "password",
-> "aws.s3.region" = "us-west-2",
-> "aws.s3.use_instance_profile" = "false",
-> "aws.s3.enable_ssl" = "false",
-> "aws.s3.enable_path_style_access" = "true",
-> "aws.s3.endpoint" = "http://minio:9000"
-> );
ERROR 1064 (HY000): Table replication num should be less than of equal to the number of available BE nodes. You can change this default by setting the replication_num table properties. Current alive backend is [10004]. table=user_behavior, properties.replication_num=3
the reason why is that there is only 1 FE and 1 BE.
The text was updated successfully, but these errors were encountered:
the reason why is that there is only 1 FE and 1 BE.
The text was updated successfully, but these errors were encountered: