nessie 安装&&简单试用

以下是关于nessie基于容器的简单运行试用

环境准备

  • docker 运行
docker run -p 19120:19120 projectnessie/nessie
  • 安装cli
pip install pynessie

试用

  • 创建分支
nessie create-branch my_branch
  • 查看分支
nessie list-references  | jq .

效果

说明

以上只是基于默认内存存储的试用,后边尝试下其他模式的功能

参考资料

https://projectnessie.org/try/
https://delta.io/
https://quarkus.io/guides/all-config
https://docs.databricks.com/delta/delta-intro.html

原文地址:https://www.cnblogs.com/rongfengliang/p/13783071.html