JDBC example
- Python
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
- Submit and view feedback for this page
- Send feedback about H2O Feature Store to cloud-feedback@h2o.ai