From fec4d40aef2187ac3955ab5445d1bd4a5354d328 Mon Sep 17 00:00:00 2001 From: Manish Dait <90558243+manishdait@users.noreply.github.com> Date: Wed, 2 Oct 2024 16:12:27 +0530 Subject: [PATCH 1/2] Update feast_flyte_remote.ipynb Signed-off-by: Manish Dait <90558243+manishdait@users.noreply.github.com> --- .../feast_integration/feast_flyte_remote.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/feast_integration/feast_integration/feast_flyte_remote.ipynb b/examples/feast_integration/feast_integration/feast_flyte_remote.ipynb index 0b93cb5df..a41a0d8f5 100644 --- a/examples/feast_integration/feast_integration/feast_flyte_remote.ipynb +++ b/examples/feast_integration/feast_integration/feast_flyte_remote.ipynb @@ -33,7 +33,7 @@ "source": [ "import os\n", "\n", - "os.environ[\"FLYTE_AWS_ENDPOINT\"] = os.environ[\"FEAST_S3_ENDPOINT_URL\"] = \"http://localhost:30084/\"\n", + "os.environ[\"FLYTE_AWS_ENDPOINT\"] = os.environ[\"FEAST_S3_ENDPOINT_URL\"] = \"http://localhost:30002/\"\n", "os.environ[\"FLYTE_AWS_ACCESS_KEY_ID\"] = os.environ[\"AWS_ACCESS_KEY_ID\"] = \"minio\"\n", "os.environ[\"FLYTE_AWS_SECRET_ACCESS_KEY\"] = os.environ[\"AWS_SECRET_ACCESS_KEY\"] = \"miniostorage\"" ] From c67f98deb1d393d734dc9e8de557ad7f7024be79 Mon Sep 17 00:00:00 2001 From: Manish Dait <90558243+manishdait@users.noreply.github.com> Date: Wed, 2 Oct 2024 20:34:53 +0530 Subject: [PATCH 2/2] Update feast_workflow.py Signed-off-by: Manish Dait <90558243+manishdait@users.noreply.github.com> --- examples/feast_integration/feast_integration/feast_workflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/feast_integration/feast_integration/feast_workflow.py b/examples/feast_integration/feast_integration/feast_workflow.py index 16638806d..8e2031652 100644 --- a/examples/feast_integration/feast_integration/feast_workflow.py +++ b/examples/feast_integration/feast_integration/feast_workflow.py @@ -63,7 +63,7 @@ # %% if os.getenv("DEMO") is None: # local execution - os.environ["FEAST_S3_ENDPOINT_URL"] = ENDPOINT = "http://localhost:30084" + os.environ["FEAST_S3_ENDPOINT_URL"] = ENDPOINT = "http://localhost:30002" else: # execution on demo cluster os.environ["FEAST_S3_ENDPOINT_URL"] = ENDPOINT = "http://minio.flyte:9000"