setup.td 899 B

12345678910111213141516171819202122232425
  1. # Copyright Materialize, Inc. and contributors. All rights reserved.
  2. #
  3. # Use of this software is governed by the Business Source License
  4. # included in the LICENSE file at the root of this repository.
  5. #
  6. # As of the Change Date specified in that file, in accordance with
  7. # the Business Source License, use of this software will be governed
  8. # by the Apache License, Version 2.0.
  9. $ set-max-tries max-tries=1
  10. $ postgres-execute connection=postgres://mz_system:materialize@${testdrive.materialize-internal-sql-addr}
  11. ALTER SYSTEM SET enable_copy_to_expr = true;
  12. ALTER SYSTEM SET max_sources = 50;
  13. ALTER SYSTEM SET max_result_size = '100 GB';
  14. > CREATE SECRET aws_secret AS '${arg.aws-secret-access-key}'
  15. > CREATE CONNECTION aws_conn
  16. TO AWS (
  17. ACCESS KEY ID = '${arg.aws-access-key-id}',
  18. SECRET ACCESS KEY = SECRET aws_secret,
  19. ENDPOINT = '${arg.aws-endpoint}',
  20. REGION = 'us-east-1'
  21. );