gpt4 book ai didi

python - 我可以使用应用服务中的 Azure 文件存储来存储然后读取/写入 SQLite 数据库吗?

转载 作者:行者123 更新时间:2023-12-03 01:13:28 25 4
gpt4 key购买 nike

我有一个Python Flask应用程序,我想看看是否可以将它变成一个产品,它只需要像SQLite这样的简单存储,但需要具有读/写功能。我现在想尽可能便宜地做到这一点,因为它是否会成功还有很多未知因素。

目前,我可以通过 VSCode 将其推送到 Azure 应用服务,并且部署成功。我在部署中包含现有的 SQLite 数据库,它似乎工作正常,但是,当我重新启动应用程序服务时,所有数据都会重置,我不明白?我认为数据会持续存在,因为它是应用程序的一部分?我确实遇到了应用程序卡住的问题,但我不知道为什么。在本地运行时一切都完美。

我可以将 Azure 文件存储附加到应用服务并在其中存储 SQlite 数据库吗?那可能吗?我会使用flask_sqlalchemy。

<小时/>

编辑

我接受了下面的答案,因为它确实创建了数据库,但它仍然不起作用。使用该应用程序时,有时我会收到错误消息:

sqlite3.OperationalError:无法打开数据库文件

尽管数据库仍然显示在目录中,并且之前工作正常。我不知道出了什么问题。

不幸的是,SQLite 似乎无法与 Azure 应用服务配合使用,因为它对于只是试图测试市场的年轻应用程序来说是必需的。

我只是希望微软不是故意这样做的,因为我信任他们,那真的会让我很恼火。

最佳答案

关于重启App Service时数据重置的问题,是因为SQLite数据库存储在App Service的临时存储中。当您重新启动应用服务时,临时存储中的所有数据都将被删除。

如果您转到 Azure 应用服务的开发工具部分,您可以SSH并检查 Web 应用程序的文件系统。您将收到关于“/home”之外的任何数据未保留的警告。此外,如果列出当前目录的文件,您将在/tmp 文件夹中找到您的应用程序文件,包括 SQLite 数据库。

因此,考虑到您的情况,为了保持简单和便宜,我建议通过使用其他 Azure 服务来保存数据库来避免复杂性,即将您的 SQLite 文件保存在/home/site/wwwroot 文件夹中,如上所述 here .

我构建了一个基本的 Flask 示例应用程序来测试它并且它有效。

Project structure  
│ app.py
│ database.db
│ requirements.txt
├───templates
├──────index.html
├───venv

index.html

<!DOCTYPE html>
<html>
<head>
<title>Message Board</title>
</head>
<body>
<h1>Message Board</h1>

<form action="/add_message" method="post">
<input type="text" name="message">
<button type="submit">Submit</button>
</form>

<hr>

<ul>
{% for message in messages %}
<li>{{ message['message'] }}</li>
{% endfor %}
</ul>
</body>
</html>

应用程序.py

import os
from flask import Flask, render_template, request, redirect, url_for
import sqlite3

app = Flask(__name__)


# create the database connection
def get_db_connection():
if "AZURE" in os.environ:
# running on Azure
db_path = "/home/site/wwwroot/database.db"
else:
# running locally
db_path = "database.db"
conn = sqlite3.connect(db_path)
conn.row_factory = sqlite3.Row
return conn


# create the table if it doesn't exist
def create_table():
conn = get_db_connection()
conn.execute(
"CREATE TABLE IF NOT EXISTS messages (id INTEGER PRIMARY KEY AUTOINCREMENT, message TEXT)"
)
conn.commit()
conn.close()


create_table()


@app.route("/")
def index():
conn = get_db_connection()
messages = conn.execute("SELECT * FROM messages").fetchall()
conn.close()
return render_template("index.html", messages=messages)


@app.route("/add_message", methods=["POST"])
def add_message():
message = request.form["message"]
conn = get_db_connection()
conn.execute("INSERT INTO messages (message) VALUES (?)", (message,))
conn.commit()
conn.close()
return redirect(url_for("index"))


if __name__ == "__main__":
app.run(debug=True)

此代码在本地开发中使用当前工作目录,而在 Azure 上使用/home/site/wwwroot。这是可能的,因为我添加了一个名为 AZURE 的应用程序设置,其值位于 Azure 应用服务的配置部分。

稍后,您可以安全地停止或重新启动您的 Web 应用程序。新的database.db将保存在持久位置。

如果您按照我之前提到的步骤通过 SSH 连接到您的计算机,您可以再次验证您的 database.db 是否未被删除。

关于应用程序卡住问题,如果没有有关应用程序和 Azure 应用服务配置的更多信息,很难说。您可能希望在 Azure 应用服务中启用应用程序日志记录和详细错误消息,以获取有关导致应用程序卡住的原因的更多信息。

最后,关于 Azure 中的 PaaS 数据库选项,如果您没有太多请求并且不介意冷启动,我建议您选择 Azure SQL 数据库的无服务器计算层。这是一个有用的YouTube video谈论定价。

关于python - 我可以使用应用服务中的 Azure 文件存储来存储然后读取/写入 SQLite 数据库吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/76166628/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com