| # Connection for ./start-testing.sh |
| # |
| # Copy this file to tests/e2e/cluster.env and fill in your cluster. |
| # (cluster.env is gitignored so your credentials never get committed.) |
| # Any value here can be overridden by a command-line flag of the same name. |
| |
| DORIS_TEST_HOST=127.0.0.1 |
| DORIS_TEST_PORT=9030 |
| DORIS_TEST_HTTP_PORT=8030 |
| DORIS_TEST_USER=root |
| DORIS_TEST_PASSWORD= |
| |
| # Self-test database (created and dropped by the run) + rows loaded into events. |
| DORIS_TEST_DB=doriscli_selftest |
| DORIS_TEST_ROWS=2000 |
| |
| # --- Cloud / storage-compute clusters --- |
| # Most cloud clusters require selecting a compute group before any query runs, |
| # and expose the FE HTTP API on 8080 rather than 8030: |
| # DORIS_TEST_INIT_SQL=USE @my_compute_group |
| # DORIS_TEST_HTTP_PORT=8080 |
| |
| # --- Reaching a bastioned / BYOC cluster through a SOCKS5 proxy --- |
| # DORIS_TEST_SOCKS5=user:pass@proxy-host:1080 |