-
Notifications
You must be signed in to change notification settings - Fork 12
/
qgate-sln-mlrun-private.env
107 lines (87 loc) · 4.1 KB
/
qgate-sln-mlrun-private.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
############################
# Setting for MLRun/Iguazio
############################
# IP address for installation of MLRun
# NOTE:
# HOST_IP = 192.168.0.150
# usage e.g. TEST = ${HOST_IP}:8080
HOST_IP = localhost
# Check of HOST_IP based on compare with IP for network adapter
# (the network adapter is identified based on the name or the name prefix)
# In case of differences, it will generate warning during the run
# usage e.g. HOST_IP_CHECK = "wi-fi" or "wi" or "WI"
HOST_IP_CHECK = "wi-fi"
# Url to the MLRun API:
# for Iguazio e.g. https://mlrun-api.default-tenant.app.iguazio-nonprod
# for Docker Desktop e.g. http://localhost:8080
# Note: Mandatory, MLRun use http not https protocol
MLRUN_DBPATH = http://${HOST_IP}:8080
# User name to the Iguazio/V3IO login e.g. jist
# Note: Empty for pure MLRun without Iguazio
#V3IO_USERNAME =
# Access key to the Iguazio/V3IO in GUID format e.g. 670068ad-abe0-530f-beb1-c78996d99818
# Note: Empty for pure MLRun without Iguazio
#V3IO_ACCESS_KEY =
# Url to the Iguazio/V3IO e.g. https://webapi.default-tenant.app.iguazio-nonprod
# Note: Empty for pure MLRun without Iguazio
#V3IO_API =
####################
# Setting for QGate
####################
# Anonym mode
# 'On' - Host value has 'Anonym/192.168.0.1' and Datetime has format '%Y-%m-%d xxxxxxxxxxxx' in output
# 'Off' - Default value, the Host and Datatime contain relevant values
QGATE_ANONYM_MODE = On
# Path to the QGate model definition (the path can be relative or full) e.g. ../qgate-model
QGATE_DEFINITION = ../qgate-model
# Name of data set for testing e.g. "01-size-100", "02-size-1K", etc.
QGATE_DATASET = 01-size-100
# List of projects for testing e.g. agate-1, agate-2, etc.
# Default is empty list (all projects will be tested)
#agate-redis-csv
#agate-redis-parquet
#agate-mysql-csv
#agate-mysql-parquet
#agate-postgres-csv
#agate-postgres-parquet
#agate-kafka
#QGATE_FILTER_PROJECTS = agate-redis-parquet
#QGATE_FILTER_PROJECTS = agate-parquet
#QGATE_FILTER_PROJECTS = agate-redis-csv,agate-redis-parquet,agate-mysql-csv,agate-mysql-parquet,agate-kafka
#QGATE_FILTER_PROJECTS = agate-redis-csv
QGATE_FILTER_PROJECTS = agate-parquet
#QGATE_FILTER_PROJECTS = agate-mysql
# List of test scenarios for testing e.g. TS201, etc. (it is important to keep TS dependencies).
# Default is empty list (all test scenarios will be tested)
QGATE_FILTER_SCENARIOS = TS101, TS102, TS201, TS204, TS304
# Path to the output directory (as off-line storage, valid for target 'parquet' and 'csv')
# sample value e.g. ./output
QGATE_OUTPUT = ./output
# Experiment with s3 and objectstorage
# data store pattern: ds://<data store>/path/to/file
QGATE_OUTPUT_EXP = ./output, ds://az-blob/jistcontainer01/test/
# Secrets setting for S3, details:
# Documentation: https://docs.mlrun.org/en/latest/store/datastore.html#s3-data-store-profile
# Parameters: name, endpoint_url, profile_name,
# Secret file: access_key_id, secret_key
#QGATE_SECRET_S3 = aws-s3, ./secrets/aws_connection.env
# Secrets setting for ObjectStorage, details
# Documentation: https://docs.mlrun.org/en/latest/store/datastore.html#azure-data-store-profile
# Parameters: name, env file
# Secret file: connection_string
#QGATE_SECRET_AZ = az-blob, ./secrets/az_connection.env
# Global definition for data store with this structure
# name, type, env file (with secrets for connection)
QGATE_DATA_STORE = az-blob, AzureBlobStorage, ./secrets/az_connection.env
# Relation to Redis (as on-line storage, valid for target 'redis')
# sample value e.g. redis://localhost:6379
QGATE_REDIS = redis://${HOST_IP}:6379
# Relation to MySQL (as on-line/off-line storage, valid for target 'mysql')
# sample value e.g. mysql+pymysql://testuser:testpwd@localhost:3306/test
QGATE_MYSQL = mysql+pymysql://testuser:testpwd@${HOST_IP}:3306/test
# Relation to Postgres (as on-line/off-line storage, valid for target 'postgres')
# sample value e.g. postgresql+psycopg2://testuser:testpwd@localhost:5432/test
QGATE_POSTGRES = postgresql+psycopg2://testuser:testpwd@${HOST_IP}:5432/test
# Relation to Kafka (as on-line source, valid for source 'kafka')
# format <url> e.g. localhost:9092
QGATE_KAFKA = ${HOST_IP}:9092