Priyank Bagrecha
08/19/2022, 8:58 PMMayank
Priyank Bagrecha
08/19/2022, 9:03 PMMayank
Priyank Bagrecha
08/19/2022, 11:05 PMPriyank Bagrecha
08/19/2022, 11:34 PMpublic static final String RETRY_COUNT_CONFIG_KEY = "retry.count";
public static final String RETRY_WAIT_MS_CONFIG_KEY = "<http://retry.wait.ms|retry.wait.ms>";
public static final String RETRY_DELAY_SCALE_FACTOR_CONFIG_KEY = "retry.delay.scale.factor";
public static final int DEFAULT_RETRY_COUNT = 3;
public static final int DEFAULT_RETRY_WAIT_MS = 100;
public static final int DEFAULT_RETRY_DELAY_SCALE_FACTOR = 5;
So do we just use retry.count
or is there a prefix that needs to be added? Also do I need to add these to server conf or to the table config? I have not been able to figure out that part yet.Priyank Bagrecha
08/19/2022, 11:55 PMpinot.server.segment.fetcher
to these properties, and they need to be added to the server config.Priyank Bagrecha
08/19/2022, 11:59 PM${protocol}
to the prefix as well. Since we are using s3, the correct prefix would be pinot.server.segment.fetcher.s3.
Priyank Bagrecha
08/20/2022, 1:02 AM