0

描述 当调用两次以下代码时:

store = session.read_pandas(dataframe, 'my_store', keys=['id'])

我们得到以下异常:

AtotiJavaException: A store with the name my_store already exists! 
If you want to recreate this store with a different CSV, you will have to re-create the session.

我正在寻找一种方法来重新创建这样的存储(覆盖以前的存储),而无需重新启动内核并重新运行所有单元。

4

1 回答 1

0

免责声明:我是 attoti 的数据科学家。

我为上述问题找到的一个快速解决方法是:您可以简单地重新创建会话,即再次运行以下单元,而不是重新启动整个内核,然后您可以使用相同的 CSV 文件创建存储。(导入atoti后通常执行的步骤。)

# Tell atoti to load the database containing the UI dashboards
config = create_config(metadata_db="./metadata.db")

session = atoti.create_session(config=config)
于 2021-01-26T11:53:52.580 回答