Skip to main content
Version: 1.2.0

JDBC example

from featurestore import Client, JdbcTable

# Initialise feature store client
client = Client("ip:port")
client.auth.login()

# Set project specifics
project = client.projects.create("demo")

# Create the jdbc source
jdbc_source = JdbcTable("<connection_url>", "<table>")
jdbc_source_schema = client.extract_schema_from_source(jdbc_source)

# Register the feature set
my_feature_set = project.feature_sets.register(jdbc_source_schema, "feature_set_name", primary_key=["key_name"])

# Ingest to cache
my_feature_set.ingest(jdbc_source)

# Retrieve feature set
ref = my_feature_set.retrieve()
ref.download()

Feedback