休眠和数据仓库

发布于 2024-11-10 12:40:23 字数 108 浏览 2 评论 0原文

对于海量数据使用像 hibernate 这样的 ORM 层是否合乎逻辑? 我们有一个100T数据的非关系型数据库。哪个是最好的方法 从网络应用程序访问数据?

JDBC、休眠、...?

is it logical to use an ORM layer like hibernate for huge data.
We have a non-relational database with 100T data. Which is the best way
to access data from a web application?

JDBC, Hibernate, ... ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

天涯离梦残月幽梦 2024-11-17 12:40:23

一般来说,Hibernate 不太适合从数据仓库访问数据。 Hibernate 最适合需要将数据库记录一对一表示为对象的任务。数据仓库数据通常太大,无法做到这一点。

Hibernate 当然可以用于此类应用程序的某些领域。例如,在我们基于 Web 的数据仓库中,hibernate 用于在 Web 应用程序中写入和表示有关 ETL 过程的统计数据。当用户选择报告标准时,它还可以与维度数据结合使用。

对于报告本身,您可以使用 JDBC,但最好的选择是专用的报告库或工具。

In general, Hibernate is a poor fit to access data from the data warehouse. Hibernate is best suited to the tasks that need one-to-one representation of the database records as objects. Data warehouse data is usually too large to do that.

Hibernate certainly can be used in some niches of such application. For example, in our web-based data warehouses hibernate is used to write and represent in the web application statistics about the ETL processes. It can also be used in conjunction with the dimension data when a user selects criteria for their reporting.

For the reporting itself you can use JDBC, but your best bet would be a dedicated reporting library or tool.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文