├── .github └── workflows │ └── build-and-test.yaml ├── .gitignore ├── LICENSE ├── README.md ├── docker ├── Dockerfile └── install_feathub_with_flink.sh ├── figures └── dingtalk.png ├── flink-derived-feature-view ├── README.md ├── data │ ├── expected_output.txt │ ├── item_price_events.json │ └── purchase_events.json ├── docker-compose.yaml ├── main.py └── run_and_verify.sh ├── flink-fault-tolerance ├── README.md ├── data │ ├── expected_output.txt │ ├── purchase_events.json │ └── purchase_events_2.json ├── docker-compose.yaml ├── initialize_kafka_topic.py ├── main.py └── run_and_verify.sh ├── flink-filesystem-join-redis ├── README.md ├── data │ ├── expected_output.txt │ ├── item_attributes.csv │ └── user_behavior_events.json ├── docker-compose.yaml ├── initialize_redis.py ├── main.py └── run_and_verify.sh ├── flink-kafka-join-filesystem ├── README.md ├── data │ ├── expected_output.txt │ ├── item_attributes.csv │ └── user_behavior_events.json ├── docker-compose.yaml ├── initialize_kafka_topic.py ├── main.py └── run_and_verify.sh ├── flink-kubernetes-application ├── Dockerfile ├── README.md ├── data │ ├── expected_output.txt │ ├── item_price_events.json │ └── purchase_events.json ├── main.py ├── pod-template.yaml └── run_and_verify.sh ├── flink-metric-prometheus ├── README.md ├── data │ ├── expected_output.txt │ └── purchase_events.json ├── docker-compose.yaml ├── initialize_kafka_topic.py ├── main.py └── run_and_verify.sh ├── flink-read-write-hdfs ├── README.md ├── data │ ├── expected_output.txt │ ├── item_price_events.json │ └── purchase_events.json ├── docker-compose.yaml ├── hadoop.env ├── main.py └── run_and_verify.sh ├── flink-read-write-hive ├── README.md ├── data │ ├── expected_output.csv │ └── item_price_events.json ├── docker-compose.yml ├── hive-site.xml ├── main.py └── run_and_verify.sh ├── flink-read-write-mysql ├── README.md ├── data │ ├── expected_output.csv │ └── item_price_events.json ├── docker-compose.yaml ├── initialize_mysql_table.py ├── main.py └── run_and_verify.sh ├── flink-read-write-redis ├── README.md ├── data │ ├── expected_output.csv │ └── item_price_events.json ├── docker-compose.yaml ├── main.py └── run_and_verify.sh ├── flink-sequential-recommendation ├── README.md ├── data │ ├── browse_events.json │ └── expected_output.csv ├── docker-compose.yaml ├── initialize_kafka_topic.py ├── main.py └── run_and_verify.sh ├── flink-sliding-feature-view-benchmark ├── README.md ├── docker-compose.yaml ├── main.py └── run_and_verify.sh ├── flink-sliding-feature-view ├── README.md ├── data │ ├── expected_output.txt │ ├── item_price_events.json │ └── purchase_events.json ├── docker-compose.yaml ├── initialize_kafka_topic.py ├── main.py └── run_and_verify.sh ├── flink-sql-feature-view ├── README.md ├── data │ ├── expected_output.txt │ └── purchase_events.json ├── docker-compose.yaml ├── main.py └── run_and_verify.sh ├── flink-yarn-application ├── README.md ├── code │ ├── main.py │ └── transforms.py ├── data │ ├── expected_output.txt │ ├── item_price_events.json │ └── purchase_events.json ├── etc │ └── hadoop │ │ ├── core-site.xml │ │ ├── hdfs-site.xml │ │ └── yarn-site.xml └── run_and_verify.sh ├── setup.cfg ├── spark-derived-feature-view ├── README.md ├── data │ ├── expected_output.txt │ ├── item_price_events.json │ └── purchase_events.json ├── docker-compose.yaml ├── main.py └── run_and_verify.sh └── tools ├── ci └── run_tests.sh └── utils.sh /.github/workflows/build-and-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/.github/workflows/build-and-test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/README.md -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/install_feathub_with_flink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/docker/install_feathub_with_flink.sh -------------------------------------------------------------------------------- /figures/dingtalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/figures/dingtalk.png -------------------------------------------------------------------------------- /flink-derived-feature-view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-derived-feature-view/README.md -------------------------------------------------------------------------------- /flink-derived-feature-view/data/expected_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-derived-feature-view/data/expected_output.txt -------------------------------------------------------------------------------- /flink-derived-feature-view/data/item_price_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-derived-feature-view/data/item_price_events.json -------------------------------------------------------------------------------- /flink-derived-feature-view/data/purchase_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-derived-feature-view/data/purchase_events.json -------------------------------------------------------------------------------- /flink-derived-feature-view/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-derived-feature-view/docker-compose.yaml -------------------------------------------------------------------------------- /flink-derived-feature-view/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-derived-feature-view/main.py -------------------------------------------------------------------------------- /flink-derived-feature-view/run_and_verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-derived-feature-view/run_and_verify.sh -------------------------------------------------------------------------------- /flink-fault-tolerance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-fault-tolerance/README.md -------------------------------------------------------------------------------- /flink-fault-tolerance/data/expected_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-fault-tolerance/data/expected_output.txt -------------------------------------------------------------------------------- /flink-fault-tolerance/data/purchase_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-fault-tolerance/data/purchase_events.json -------------------------------------------------------------------------------- /flink-fault-tolerance/data/purchase_events_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-fault-tolerance/data/purchase_events_2.json -------------------------------------------------------------------------------- /flink-fault-tolerance/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-fault-tolerance/docker-compose.yaml -------------------------------------------------------------------------------- /flink-fault-tolerance/initialize_kafka_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-fault-tolerance/initialize_kafka_topic.py -------------------------------------------------------------------------------- /flink-fault-tolerance/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-fault-tolerance/main.py -------------------------------------------------------------------------------- /flink-fault-tolerance/run_and_verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-fault-tolerance/run_and_verify.sh -------------------------------------------------------------------------------- /flink-filesystem-join-redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-filesystem-join-redis/README.md -------------------------------------------------------------------------------- /flink-filesystem-join-redis/data/expected_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-filesystem-join-redis/data/expected_output.txt -------------------------------------------------------------------------------- /flink-filesystem-join-redis/data/item_attributes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-filesystem-join-redis/data/item_attributes.csv -------------------------------------------------------------------------------- /flink-filesystem-join-redis/data/user_behavior_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-filesystem-join-redis/data/user_behavior_events.json -------------------------------------------------------------------------------- /flink-filesystem-join-redis/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-filesystem-join-redis/docker-compose.yaml -------------------------------------------------------------------------------- /flink-filesystem-join-redis/initialize_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-filesystem-join-redis/initialize_redis.py -------------------------------------------------------------------------------- /flink-filesystem-join-redis/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-filesystem-join-redis/main.py -------------------------------------------------------------------------------- /flink-filesystem-join-redis/run_and_verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-filesystem-join-redis/run_and_verify.sh -------------------------------------------------------------------------------- /flink-kafka-join-filesystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-kafka-join-filesystem/README.md -------------------------------------------------------------------------------- /flink-kafka-join-filesystem/data/expected_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-kafka-join-filesystem/data/expected_output.txt -------------------------------------------------------------------------------- /flink-kafka-join-filesystem/data/item_attributes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-kafka-join-filesystem/data/item_attributes.csv -------------------------------------------------------------------------------- /flink-kafka-join-filesystem/data/user_behavior_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-kafka-join-filesystem/data/user_behavior_events.json -------------------------------------------------------------------------------- /flink-kafka-join-filesystem/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-kafka-join-filesystem/docker-compose.yaml -------------------------------------------------------------------------------- /flink-kafka-join-filesystem/initialize_kafka_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-kafka-join-filesystem/initialize_kafka_topic.py -------------------------------------------------------------------------------- /flink-kafka-join-filesystem/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-kafka-join-filesystem/main.py -------------------------------------------------------------------------------- /flink-kafka-join-filesystem/run_and_verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-kafka-join-filesystem/run_and_verify.sh -------------------------------------------------------------------------------- /flink-kubernetes-application/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-kubernetes-application/Dockerfile -------------------------------------------------------------------------------- /flink-kubernetes-application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-kubernetes-application/README.md -------------------------------------------------------------------------------- /flink-kubernetes-application/data/expected_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-kubernetes-application/data/expected_output.txt -------------------------------------------------------------------------------- /flink-kubernetes-application/data/item_price_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-kubernetes-application/data/item_price_events.json -------------------------------------------------------------------------------- /flink-kubernetes-application/data/purchase_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-kubernetes-application/data/purchase_events.json -------------------------------------------------------------------------------- /flink-kubernetes-application/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-kubernetes-application/main.py -------------------------------------------------------------------------------- /flink-kubernetes-application/pod-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-kubernetes-application/pod-template.yaml -------------------------------------------------------------------------------- /flink-kubernetes-application/run_and_verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-kubernetes-application/run_and_verify.sh -------------------------------------------------------------------------------- /flink-metric-prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-metric-prometheus/README.md -------------------------------------------------------------------------------- /flink-metric-prometheus/data/expected_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-metric-prometheus/data/expected_output.txt -------------------------------------------------------------------------------- /flink-metric-prometheus/data/purchase_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-metric-prometheus/data/purchase_events.json -------------------------------------------------------------------------------- /flink-metric-prometheus/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-metric-prometheus/docker-compose.yaml -------------------------------------------------------------------------------- /flink-metric-prometheus/initialize_kafka_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-metric-prometheus/initialize_kafka_topic.py -------------------------------------------------------------------------------- /flink-metric-prometheus/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-metric-prometheus/main.py -------------------------------------------------------------------------------- /flink-metric-prometheus/run_and_verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-metric-prometheus/run_and_verify.sh -------------------------------------------------------------------------------- /flink-read-write-hdfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-hdfs/README.md -------------------------------------------------------------------------------- /flink-read-write-hdfs/data/expected_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-hdfs/data/expected_output.txt -------------------------------------------------------------------------------- /flink-read-write-hdfs/data/item_price_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-hdfs/data/item_price_events.json -------------------------------------------------------------------------------- /flink-read-write-hdfs/data/purchase_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-hdfs/data/purchase_events.json -------------------------------------------------------------------------------- /flink-read-write-hdfs/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-hdfs/docker-compose.yaml -------------------------------------------------------------------------------- /flink-read-write-hdfs/hadoop.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-hdfs/hadoop.env -------------------------------------------------------------------------------- /flink-read-write-hdfs/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-hdfs/main.py -------------------------------------------------------------------------------- /flink-read-write-hdfs/run_and_verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-hdfs/run_and_verify.sh -------------------------------------------------------------------------------- /flink-read-write-hive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-hive/README.md -------------------------------------------------------------------------------- /flink-read-write-hive/data/expected_output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-hive/data/expected_output.csv -------------------------------------------------------------------------------- /flink-read-write-hive/data/item_price_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-hive/data/item_price_events.json -------------------------------------------------------------------------------- /flink-read-write-hive/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-hive/docker-compose.yml -------------------------------------------------------------------------------- /flink-read-write-hive/hive-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-hive/hive-site.xml -------------------------------------------------------------------------------- /flink-read-write-hive/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-hive/main.py -------------------------------------------------------------------------------- /flink-read-write-hive/run_and_verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-hive/run_and_verify.sh -------------------------------------------------------------------------------- /flink-read-write-mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-mysql/README.md -------------------------------------------------------------------------------- /flink-read-write-mysql/data/expected_output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-mysql/data/expected_output.csv -------------------------------------------------------------------------------- /flink-read-write-mysql/data/item_price_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-mysql/data/item_price_events.json -------------------------------------------------------------------------------- /flink-read-write-mysql/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-mysql/docker-compose.yaml -------------------------------------------------------------------------------- /flink-read-write-mysql/initialize_mysql_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-mysql/initialize_mysql_table.py -------------------------------------------------------------------------------- /flink-read-write-mysql/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-mysql/main.py -------------------------------------------------------------------------------- /flink-read-write-mysql/run_and_verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-mysql/run_and_verify.sh -------------------------------------------------------------------------------- /flink-read-write-redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-redis/README.md -------------------------------------------------------------------------------- /flink-read-write-redis/data/expected_output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-redis/data/expected_output.csv -------------------------------------------------------------------------------- /flink-read-write-redis/data/item_price_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-redis/data/item_price_events.json -------------------------------------------------------------------------------- /flink-read-write-redis/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-redis/docker-compose.yaml -------------------------------------------------------------------------------- /flink-read-write-redis/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-redis/main.py -------------------------------------------------------------------------------- /flink-read-write-redis/run_and_verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-read-write-redis/run_and_verify.sh -------------------------------------------------------------------------------- /flink-sequential-recommendation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sequential-recommendation/README.md -------------------------------------------------------------------------------- /flink-sequential-recommendation/data/browse_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sequential-recommendation/data/browse_events.json -------------------------------------------------------------------------------- /flink-sequential-recommendation/data/expected_output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sequential-recommendation/data/expected_output.csv -------------------------------------------------------------------------------- /flink-sequential-recommendation/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sequential-recommendation/docker-compose.yaml -------------------------------------------------------------------------------- /flink-sequential-recommendation/initialize_kafka_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sequential-recommendation/initialize_kafka_topic.py -------------------------------------------------------------------------------- /flink-sequential-recommendation/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sequential-recommendation/main.py -------------------------------------------------------------------------------- /flink-sequential-recommendation/run_and_verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sequential-recommendation/run_and_verify.sh -------------------------------------------------------------------------------- /flink-sliding-feature-view-benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sliding-feature-view-benchmark/README.md -------------------------------------------------------------------------------- /flink-sliding-feature-view-benchmark/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sliding-feature-view-benchmark/docker-compose.yaml -------------------------------------------------------------------------------- /flink-sliding-feature-view-benchmark/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sliding-feature-view-benchmark/main.py -------------------------------------------------------------------------------- /flink-sliding-feature-view-benchmark/run_and_verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sliding-feature-view-benchmark/run_and_verify.sh -------------------------------------------------------------------------------- /flink-sliding-feature-view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sliding-feature-view/README.md -------------------------------------------------------------------------------- /flink-sliding-feature-view/data/expected_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sliding-feature-view/data/expected_output.txt -------------------------------------------------------------------------------- /flink-sliding-feature-view/data/item_price_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sliding-feature-view/data/item_price_events.json -------------------------------------------------------------------------------- /flink-sliding-feature-view/data/purchase_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sliding-feature-view/data/purchase_events.json -------------------------------------------------------------------------------- /flink-sliding-feature-view/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sliding-feature-view/docker-compose.yaml -------------------------------------------------------------------------------- /flink-sliding-feature-view/initialize_kafka_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sliding-feature-view/initialize_kafka_topic.py -------------------------------------------------------------------------------- /flink-sliding-feature-view/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sliding-feature-view/main.py -------------------------------------------------------------------------------- /flink-sliding-feature-view/run_and_verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sliding-feature-view/run_and_verify.sh -------------------------------------------------------------------------------- /flink-sql-feature-view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sql-feature-view/README.md -------------------------------------------------------------------------------- /flink-sql-feature-view/data/expected_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sql-feature-view/data/expected_output.txt -------------------------------------------------------------------------------- /flink-sql-feature-view/data/purchase_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sql-feature-view/data/purchase_events.json -------------------------------------------------------------------------------- /flink-sql-feature-view/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sql-feature-view/docker-compose.yaml -------------------------------------------------------------------------------- /flink-sql-feature-view/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sql-feature-view/main.py -------------------------------------------------------------------------------- /flink-sql-feature-view/run_and_verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-sql-feature-view/run_and_verify.sh -------------------------------------------------------------------------------- /flink-yarn-application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-yarn-application/README.md -------------------------------------------------------------------------------- /flink-yarn-application/code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-yarn-application/code/main.py -------------------------------------------------------------------------------- /flink-yarn-application/code/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-yarn-application/code/transforms.py -------------------------------------------------------------------------------- /flink-yarn-application/data/expected_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-yarn-application/data/expected_output.txt -------------------------------------------------------------------------------- /flink-yarn-application/data/item_price_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-yarn-application/data/item_price_events.json -------------------------------------------------------------------------------- /flink-yarn-application/data/purchase_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-yarn-application/data/purchase_events.json -------------------------------------------------------------------------------- /flink-yarn-application/etc/hadoop/core-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-yarn-application/etc/hadoop/core-site.xml -------------------------------------------------------------------------------- /flink-yarn-application/etc/hadoop/hdfs-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-yarn-application/etc/hadoop/hdfs-site.xml -------------------------------------------------------------------------------- /flink-yarn-application/etc/hadoop/yarn-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-yarn-application/etc/hadoop/yarn-site.xml -------------------------------------------------------------------------------- /flink-yarn-application/run_and_verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/flink-yarn-application/run_and_verify.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/setup.cfg -------------------------------------------------------------------------------- /spark-derived-feature-view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/spark-derived-feature-view/README.md -------------------------------------------------------------------------------- /spark-derived-feature-view/data/expected_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/spark-derived-feature-view/data/expected_output.txt -------------------------------------------------------------------------------- /spark-derived-feature-view/data/item_price_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/spark-derived-feature-view/data/item_price_events.json -------------------------------------------------------------------------------- /spark-derived-feature-view/data/purchase_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/spark-derived-feature-view/data/purchase_events.json -------------------------------------------------------------------------------- /spark-derived-feature-view/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/spark-derived-feature-view/docker-compose.yaml -------------------------------------------------------------------------------- /spark-derived-feature-view/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/spark-derived-feature-view/main.py -------------------------------------------------------------------------------- /spark-derived-feature-view/run_and_verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/spark-derived-feature-view/run_and_verify.sh -------------------------------------------------------------------------------- /tools/ci/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/tools/ci/run_tests.sh -------------------------------------------------------------------------------- /tools/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flink-extended/feathub-examples/HEAD/tools/utils.sh --------------------------------------------------------------------------------