|
| 1 | +# Licensed to the Apache Software Foundation (ASF) under one or more |
| 2 | +# contributor license agreements. See the NOTICE file distributed with |
| 3 | +# this work for additional information regarding copyright ownership. |
| 4 | +# The ASF licenses this file to You under the Apache License, Version 2.0 |
| 5 | +# (the "License"); you may not use this file except in compliance with |
| 6 | +# the License. You may obtain a copy of the License at |
| 7 | +# |
| 8 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +# |
| 10 | +# Unless required by applicable law or agreed to in writing, software |
| 11 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +# See the License for the specific language governing permissions and |
| 14 | +# limitations under the License. |
| 15 | +# |
| 16 | + |
| 17 | +############# |
| 18 | +# Lake core # |
| 19 | +############# |
| 20 | + |
| 21 | +# Lake plugin dir, absolute path or relative path |
| 22 | +PLUGIN_DIR=bin/plugins |
| 23 | + |
| 24 | +# Lake Database Connection String |
| 25 | +DB_URL=mysql://merico:merico@mysql:3306/lake?charset=utf8mb4&parseTime=True&loc=UTC |
| 26 | +E2E_DB_URL=mysql://merico:merico@mysql:3306/lake_test?charset=utf8mb4&parseTime=True&loc=UTC |
| 27 | +# Silent Error Warn Info |
| 28 | +DB_LOGGING_LEVEL=Error |
| 29 | + |
| 30 | +# Lake REST API |
| 31 | +PORT=8080 |
| 32 | +MODE=release |
| 33 | + |
| 34 | +NOTIFICATION_ENDPOINT= |
| 35 | +NOTIFICATION_SECRET= |
| 36 | + |
| 37 | +API_TIMEOUT=120s |
| 38 | +API_RETRY=3 |
| 39 | +API_REQUESTS_PER_HOUR=10000 |
| 40 | +PIPELINE_MAX_PARALLEL=1 |
| 41 | +# Debug Info Warn Error |
| 42 | +LOGGING_LEVEL= |
| 43 | +LOGGING_DIR=./logs |
| 44 | +ENABLE_STACKTRACE=false |
| 45 | +FORCE_MIGRATION=false |
| 46 | + |
| 47 | +########################## |
| 48 | +# Sensitive information encryption key |
| 49 | +########################## |
| 50 | +ENCRYPTION_SECRET= |
| 51 | + |
| 52 | +########################## |
| 53 | +# Set if skip verify and connect with out trusted certificate when use https |
| 54 | +########################## |
| 55 | +IN_SECURE_SKIP_VERIFY= |
| 56 | + |
| 57 | +########################## |
| 58 | +# Set SKIP_COMMIT_FILES to 'false' to enable file collection. Any other value or absence of this parameter will skip collection. |
| 59 | +########################## |
| 60 | +# SKIP_COMMIT_FILES=true |
0 commit comments