Skip to content

Commit

Permalink
Merge pull request #320 from george0st/change
Browse files Browse the repository at this point in the history
Repair deployment dependencies & Documentation
  • Loading branch information
george0st authored May 3, 2024
2 parents 6070e91 + c020bba commit de52a51
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/applied-limits.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,5 @@ see detail below
## Recommendation

1. It is really tricky to use functions in **Preview** state
- it makes sense to wait for delivery full version or contribute changes in
- it makes sense to wait for full version delivery or contribute changes in
Github
18 changes: 12 additions & 6 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,29 +15,35 @@ The list of projects for testing e.g. agate-1, agate-2, etc.
Default is empty list (all projects will be tested)
- `QGATE_FILTER_PROJECTS = agate-2`

## 4. Output
## 4. Filet scenarios
The 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, TS205`

## 5. Output
The path to the output directory for **off-line storage** (valid for target 'parquet', 'csv', etc.)
- local file system `QGATE_OUTPUT = ./output`
- object storage `QGATE_OUTPUT = TBD`
- object storage `QGATE_OUTPUT = TBD.`

## 5. Redis
## 6. Redis
The setup of Redis for **on-line source/target** (valid for target 'redis')
- `QGATE_REDIS = redis://localhost:6379`
- detail description, see [Redis](./redis.md)

## 6. MySQL
## 7. MySQL
The setup of MySQL for **on-line source/target** (valid for target 'mysql')
- `QGATE_MYSQL = mysql+pymysql://testuser:testpwd@localhost:3306/test`
- detail description, see [MySQL](./mysql.md)

## 7. Postgres
## 8. Postgres
The setup of Postgres for **on-line source/target** (valid for target 'postgres')
- `QGATE_POSTGRES = postgresql+psycopg2://testuser:testpwd@localhost:5432/test`
- detail description, see [Postgres](./postgres.md)
- NOTE: limited usage based on SqlTarget technical preview state
(the main focus on MySQL)

## 8. Kafka
## 9. Kafka
The setup of Kafka for **on-line source** (valid for target 'kafka')
- `QGATE_KAFKA = localhost:9092, testtopic`
- detail description, see [Kafka](./kafka.md)
Expand Down
1 change: 1 addition & 0 deletions docs/mlrun-iguazio-release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ NOTE:
### 🚩1.7 MLRun
- Model monitoring/drifting for MLRun (available in free version also)
- Available API Gateway
- Improve scaling for Nuclio (from version >= 1.13)
- NOTE:
- Expected release date 05/2024 (based on 3 months release cycle)

Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ repository='https://pypi.org/project/qgate-sln-mlrun/'
#"Source" = "https://github.com/pypa/sampleproject/"

[tool.setuptools]
packages = ["qgate_sln_mlrun", "qgate_sln_mlrun.ts", "qgate_sln_mlrun.templates", "qgate_sln_mlrun.model_changes"]
packages = ["qgate_sln_mlrun", "qgate_sln_mlrun.templates", "qgate_sln_mlrun.model_changes", "qgate_sln_mlrun.ts",
"qgate_sln_mlrun.ts.ts01_project", "qgate_sln_mlrun.ts.ts02_feature_set", "qgate_sln_mlrun.ts.ts03_ingest_data",
"qgate_sln_mlrun.ts.ts04_feature_vector", "qgate_sln_mlrun.ts.ts05_get_data", "qgate_sln_mlrun.ts.ts06_pipeline",
"qgate_sln_mlrun.ts.ts07_build_model", "qgate_sln_mlrun.ts.ts08_serve_model"]
include-package-data = true # true - add other data such as *.txt, *.html, etc. under all packages

[tool.setuptools.package-data]
Expand Down
2 changes: 1 addition & 1 deletion qgate_sln_mlrun/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Store the version here so:

__version__ = '0.2.2'
__version__ = '0.2.3'

0 comments on commit de52a51

Please sign in to comment.