├── .DS_Store ├── .gitignore ├── Dockerfile ├── Dockerfile.md ├── LICENSE ├── License.md ├── README.md ├── aerospike ├── aerospike.conf ├── aerospike.template.conf ├── bin └── build-docker-image.sh ├── binder-pre └── binder_run_first.ipynb ├── entrypoint.sh ├── features.conf ├── grep ├── jupyter_notebook_config.py ├── logo.png ├── notebooks ├── .DS_Store ├── README.md ├── java │ ├── README.md │ ├── SimplePutGetExample.ipynb │ ├── add_namespace.sh │ ├── async_ops.ipynb │ ├── batch_ops.ipynb │ ├── cdt_indexing.ipynb │ ├── doc_api.ipynb │ ├── doc_api_example_store.json │ ├── doc_api_example_tommyleejones.json │ ├── expressions.ipynb │ ├── hello_world.ipynb │ ├── java-advanced_collection_data_types.ipynb │ ├── java-intro_to_data_modeling.ipynb │ ├── java-intro_to_transactions.ipynb │ ├── java-modeling_using_lists.ipynb │ ├── java-modeling_using_maps.ipynb │ ├── java-working_with_lists.ipynb │ ├── java-working_with_maps.ipynb │ ├── look_aside_cache_mongo.ipynb │ ├── nobel_prizes.json │ ├── object_mapper.ipynb │ ├── query_splits.ipynb │ ├── query_streams.ipynb │ ├── query_udf.ipynb │ ├── space_companies.json │ ├── sql_aggregates_1.ipynb │ ├── sql_aggregates_2.ipynb │ ├── sql_select.ipynb │ ├── sql_update.ipynb │ └── tweetaspike.ipynb ├── presto │ ├── AerospikePrestoDemo.ipynb │ └── AerospikePython.ipynb ├── python │ ├── README.md │ ├── basic_operations.ipynb │ ├── hello_world.ipynb │ ├── local_cache.ipynb │ ├── look_aside_cache.ipynb │ ├── query.ipynb │ ├── readme_tips.ipynb │ ├── simple_put_get_example.ipynb │ └── transactions_rmw_pattern.ipynb ├── readme_tips.ipynb ├── spark │ ├── .gitignore │ ├── AerospikeSparkPython.ipynb │ ├── AerospikeSparkScala.ipynb │ ├── feature-store-feature-eng.ipynb │ ├── feature-store-model-serving.ipynb │ ├── feature-store-model-training.ipynb │ ├── other_notebooks │ │ ├── AerospikeSparkH2ODemo.ipynb │ │ ├── AerospikeSparkMLDemo.ipynb │ │ ├── AerospikeSparkMLLinearRegression.ipynb │ │ ├── AerospikeSparkPythonJSONSQL.ipynb │ │ ├── AerospikeSparkPythonParquet.ipynb │ │ ├── AerospikeSparkSQLSyntaxDemo.ipynb │ │ └── nested_data.json │ ├── resources │ │ ├── creditcard_small.csv │ │ ├── fs-arch.jpg │ │ ├── fs-model-ws.py │ │ ├── fs_model_rf.tar.gz │ │ ├── install.txt │ │ ├── nested_data.json │ │ └── pushdown-expressions.ipynb │ └── simple-load-store.ipynb └── udf │ ├── aggregate_fns.lua │ └── update_example.lua ├── update.sh └── update_readme.sh /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/Dockerfile.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/LICENSE -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/README.md -------------------------------------------------------------------------------- /aerospike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/aerospike -------------------------------------------------------------------------------- /aerospike.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/aerospike.conf -------------------------------------------------------------------------------- /aerospike.template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/aerospike.template.conf -------------------------------------------------------------------------------- /bin/build-docker-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/bin/build-docker-image.sh -------------------------------------------------------------------------------- /binder-pre/binder_run_first.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/binder-pre/binder_run_first.ipynb -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /features.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/features.conf -------------------------------------------------------------------------------- /grep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/grep -------------------------------------------------------------------------------- /jupyter_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/jupyter_notebook_config.py -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/logo.png -------------------------------------------------------------------------------- /notebooks/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/.DS_Store -------------------------------------------------------------------------------- /notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/README.md -------------------------------------------------------------------------------- /notebooks/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/README.md -------------------------------------------------------------------------------- /notebooks/java/SimplePutGetExample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/SimplePutGetExample.ipynb -------------------------------------------------------------------------------- /notebooks/java/add_namespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/add_namespace.sh -------------------------------------------------------------------------------- /notebooks/java/async_ops.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/async_ops.ipynb -------------------------------------------------------------------------------- /notebooks/java/batch_ops.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/batch_ops.ipynb -------------------------------------------------------------------------------- /notebooks/java/cdt_indexing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/cdt_indexing.ipynb -------------------------------------------------------------------------------- /notebooks/java/doc_api.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/doc_api.ipynb -------------------------------------------------------------------------------- /notebooks/java/doc_api_example_store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/doc_api_example_store.json -------------------------------------------------------------------------------- /notebooks/java/doc_api_example_tommyleejones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/doc_api_example_tommyleejones.json -------------------------------------------------------------------------------- /notebooks/java/expressions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/expressions.ipynb -------------------------------------------------------------------------------- /notebooks/java/hello_world.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/hello_world.ipynb -------------------------------------------------------------------------------- /notebooks/java/java-advanced_collection_data_types.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/java-advanced_collection_data_types.ipynb -------------------------------------------------------------------------------- /notebooks/java/java-intro_to_data_modeling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/java-intro_to_data_modeling.ipynb -------------------------------------------------------------------------------- /notebooks/java/java-intro_to_transactions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/java-intro_to_transactions.ipynb -------------------------------------------------------------------------------- /notebooks/java/java-modeling_using_lists.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/java-modeling_using_lists.ipynb -------------------------------------------------------------------------------- /notebooks/java/java-modeling_using_maps.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/java-modeling_using_maps.ipynb -------------------------------------------------------------------------------- /notebooks/java/java-working_with_lists.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/java-working_with_lists.ipynb -------------------------------------------------------------------------------- /notebooks/java/java-working_with_maps.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/java-working_with_maps.ipynb -------------------------------------------------------------------------------- /notebooks/java/look_aside_cache_mongo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/look_aside_cache_mongo.ipynb -------------------------------------------------------------------------------- /notebooks/java/nobel_prizes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/nobel_prizes.json -------------------------------------------------------------------------------- /notebooks/java/object_mapper.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/object_mapper.ipynb -------------------------------------------------------------------------------- /notebooks/java/query_splits.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/query_splits.ipynb -------------------------------------------------------------------------------- /notebooks/java/query_streams.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/query_streams.ipynb -------------------------------------------------------------------------------- /notebooks/java/query_udf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/query_udf.ipynb -------------------------------------------------------------------------------- /notebooks/java/space_companies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/space_companies.json -------------------------------------------------------------------------------- /notebooks/java/sql_aggregates_1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/sql_aggregates_1.ipynb -------------------------------------------------------------------------------- /notebooks/java/sql_aggregates_2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/sql_aggregates_2.ipynb -------------------------------------------------------------------------------- /notebooks/java/sql_select.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/sql_select.ipynb -------------------------------------------------------------------------------- /notebooks/java/sql_update.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/sql_update.ipynb -------------------------------------------------------------------------------- /notebooks/java/tweetaspike.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/java/tweetaspike.ipynb -------------------------------------------------------------------------------- /notebooks/presto/AerospikePrestoDemo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/presto/AerospikePrestoDemo.ipynb -------------------------------------------------------------------------------- /notebooks/presto/AerospikePython.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/presto/AerospikePython.ipynb -------------------------------------------------------------------------------- /notebooks/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/python/README.md -------------------------------------------------------------------------------- /notebooks/python/basic_operations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/python/basic_operations.ipynb -------------------------------------------------------------------------------- /notebooks/python/hello_world.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/python/hello_world.ipynb -------------------------------------------------------------------------------- /notebooks/python/local_cache.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/python/local_cache.ipynb -------------------------------------------------------------------------------- /notebooks/python/look_aside_cache.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/python/look_aside_cache.ipynb -------------------------------------------------------------------------------- /notebooks/python/query.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/python/query.ipynb -------------------------------------------------------------------------------- /notebooks/python/readme_tips.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/python/readme_tips.ipynb -------------------------------------------------------------------------------- /notebooks/python/simple_put_get_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/python/simple_put_get_example.ipynb -------------------------------------------------------------------------------- /notebooks/python/transactions_rmw_pattern.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/python/transactions_rmw_pattern.ipynb -------------------------------------------------------------------------------- /notebooks/readme_tips.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/readme_tips.ipynb -------------------------------------------------------------------------------- /notebooks/spark/.gitignore: -------------------------------------------------------------------------------- 1 | aerospike-spark-assembly*.jar -------------------------------------------------------------------------------- /notebooks/spark/AerospikeSparkPython.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/spark/AerospikeSparkPython.ipynb -------------------------------------------------------------------------------- /notebooks/spark/AerospikeSparkScala.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/spark/AerospikeSparkScala.ipynb -------------------------------------------------------------------------------- /notebooks/spark/feature-store-feature-eng.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/spark/feature-store-feature-eng.ipynb -------------------------------------------------------------------------------- /notebooks/spark/feature-store-model-serving.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/spark/feature-store-model-serving.ipynb -------------------------------------------------------------------------------- /notebooks/spark/feature-store-model-training.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/spark/feature-store-model-training.ipynb -------------------------------------------------------------------------------- /notebooks/spark/other_notebooks/AerospikeSparkH2ODemo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/spark/other_notebooks/AerospikeSparkH2ODemo.ipynb -------------------------------------------------------------------------------- /notebooks/spark/other_notebooks/AerospikeSparkMLDemo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/spark/other_notebooks/AerospikeSparkMLDemo.ipynb -------------------------------------------------------------------------------- /notebooks/spark/other_notebooks/AerospikeSparkMLLinearRegression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/spark/other_notebooks/AerospikeSparkMLLinearRegression.ipynb -------------------------------------------------------------------------------- /notebooks/spark/other_notebooks/AerospikeSparkPythonJSONSQL.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/spark/other_notebooks/AerospikeSparkPythonJSONSQL.ipynb -------------------------------------------------------------------------------- /notebooks/spark/other_notebooks/AerospikeSparkPythonParquet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/spark/other_notebooks/AerospikeSparkPythonParquet.ipynb -------------------------------------------------------------------------------- /notebooks/spark/other_notebooks/AerospikeSparkSQLSyntaxDemo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/spark/other_notebooks/AerospikeSparkSQLSyntaxDemo.ipynb -------------------------------------------------------------------------------- /notebooks/spark/other_notebooks/nested_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/spark/other_notebooks/nested_data.json -------------------------------------------------------------------------------- /notebooks/spark/resources/creditcard_small.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/spark/resources/creditcard_small.csv -------------------------------------------------------------------------------- /notebooks/spark/resources/fs-arch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/spark/resources/fs-arch.jpg -------------------------------------------------------------------------------- /notebooks/spark/resources/fs-model-ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/spark/resources/fs-model-ws.py -------------------------------------------------------------------------------- /notebooks/spark/resources/fs_model_rf.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/spark/resources/fs_model_rf.tar.gz -------------------------------------------------------------------------------- /notebooks/spark/resources/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/spark/resources/install.txt -------------------------------------------------------------------------------- /notebooks/spark/resources/nested_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/spark/resources/nested_data.json -------------------------------------------------------------------------------- /notebooks/spark/resources/pushdown-expressions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/spark/resources/pushdown-expressions.ipynb -------------------------------------------------------------------------------- /notebooks/spark/simple-load-store.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/spark/simple-load-store.ipynb -------------------------------------------------------------------------------- /notebooks/udf/aggregate_fns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/udf/aggregate_fns.lua -------------------------------------------------------------------------------- /notebooks/udf/update_example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/notebooks/udf/update_example.lua -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/update.sh -------------------------------------------------------------------------------- /update_readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike-examples/interactive-notebooks/HEAD/update_readme.sh --------------------------------------------------------------------------------