Skip to content

Commit

Permalink
fix: Local staging location provision (#3195)
Browse files Browse the repository at this point in the history
* fix: Local staging location provision

Signed-off-by: niklasvm <niklasvm@gmail.com>

* fix import

Signed-off-by: niklasvm <niklasvm@gmail.com>

* linting fix

Signed-off-by: niklasvm <niklasvm@gmail.com>

Signed-off-by: niklasvm <niklasvm@gmail.com>
  • Loading branch information
niklasvm authored Sep 12, 2022
1 parent 39aeea3 commit cdf0faf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
from pyspark import SparkConf
from pyspark.sql import SparkSession
from pytz import utc
from sdk.python.feast.infra.utils import aws_utils

from feast import FeatureView, OnDemandFeatureView
from feast.data_source import DataSource
Expand All @@ -32,6 +31,7 @@
RetrievalMetadata,
)
from feast.infra.registry.registry import Registry
from feast.infra.utils import aws_utils
from feast.repo_config import FeastConfigBaseModel, RepoConfig
from feast.saved_dataset import SavedDatasetStorage
from feast.type_map import spark_schema_to_np_dtypes
Expand Down Expand Up @@ -364,7 +364,7 @@ def to_remote_storage(self) -> List[str]:

sdf: pyspark.sql.DataFrame = self.to_spark_df()

if self._config.offline_store.staging_location.startswith("file://"):
if self._config.offline_store.staging_location.startswith("/"):
local_file_staging_location = os.path.abspath(
self._config.offline_store.staging_location
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ def create_offline_store_config(self):
self.spark_offline_store_config = SparkOfflineStoreConfig()
self.spark_offline_store_config.type = "spark"
self.spark_offline_store_config.spark_conf = self.spark_conf
self.spark_offline_store_config.staging_location = "file://" + str(
tempfile.TemporaryDirectory()
self.spark_offline_store_config.staging_location = (
tempfile.TemporaryDirectory().name
)
self.spark_offline_store_config.region = "eu-west-1"
return self.spark_offline_store_config
Expand Down

0 comments on commit cdf0faf

Please sign in to comment.