- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在对 Hive 运行查询。相同的查询应该适用于其他 JDBC 驱动程序,即其他关系数据库。
我不能使用 Statement.setFetchSize 方法,因为它在 Hive JDBC 0.13.0 中不受支持。
我正在尝试解决这个问题,因此,我想到了另一个类似的方法:Statement.setMaxRows
在什么情况下我应该使用 Statement.setMaxRows 还是 Statement.setFetchsize?
是否可以互换使用它们?
谢谢。
最佳答案
不,您不能互换使用它们。他们做不同的事情。 setMaxRows = 可以整体返回的行数。 setFetchSize = 将在每个数据库往返中返回的数字,即
setFetchSize Gives the JDBC driver a hint as to the number of rows that should be fetched from the database when more rows are needed for ResultSet objects genrated by this Statement.
setMaxRows Sets the limit for the maximum number of rows that any ResultSet object generated by this Statement object can contain to the given number.
事实上,由于 setFetchSize 是一个提示,因此驱动程序可以自由地忽略它并执行它认为合适的操作。所以不用担心 Hive JDBC 不支持这个。
请注意,setMaxRows 所做的只是
reducing the size of the ResultSet object. It won't affect the speed of the query. setMaxRows doesn't change the actual SQL - using top/limit/rownum e.g. - so it doesn't change the work the DB does. The query will return more results than your limit if there are more results to return, then truncate them to fit your ResultSet.
This answer很好地解释了 setFetchSize 的重要性:
very important to performance and memory-management within the JVM as it controls the number of network calls from the JVM to the database and correspondingly the amount of RAM used for ResultSet processing.
关于java - Hive 中的 Statement.setMaxRows 与 Statement.setFetchsize 之间有什么区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32399546/
我看到很多 JDBC/MySQL 的“最佳实践”指南告诉我指定 setFetchSize()。 但是,我不知道何时指定,以及指定什么(语句、结果集)。 Statement.setFetchSize()
我看到很多 JDBC/MySQL 的“最佳实践”指南告诉我指定 setFetchSize()。 但是,我不知道何时指定,以及指定什么(语句、结果集)。 Statement.setFetchSize()
我想在UI上实现分页,所以我这样设置fetchSize: boundStatement.setFetchSize(20) 但是 setFetchSize() 不被接受。我的表现在有 400 行,并且检
我正在使用下面的代码 st = connection.createStatement( ResultSet.CONCUR_READ_ONLY, Res
我想实现 this我的自定义 JDBC 驱动程序中的方法功能。我应该使用 JDBC 中的哪个方法来设置 MaxResults? 如果我的查询结果是1000行,我设置了setFetchSize=100的
我正在致力于性能改进。我们使用 Hibernate Criteria 和命名查询从数据库检索数据。在我们的应用程序中,我们从数据库检索更多行并执行一些 Java 逻辑,因此我想一次从数据库获取更多行,
我正在尝试限制我的选择查询的提取大小。不幸的是,JTDS MS SQL 驱动程序仍然读取所有行。 我不想要限制或偏移选择。我只想保存我的内存,这样我就需要更少的 RAM。我不需要 setMaxRows
这个问题已经有答案了: What is difference between setMaxResults and setFetchSize in org.hibernate.Query? (3 个回答
最初,我问this问题 我通过将 fetchSize 设置为 Integer.MIN_VALUE 来解决这个问题,但我对此有一些疑问 当我将 fetchSize 设置为 10 或其他正整数时它不起作用
我有一个功能正常的推荐系统,我想让它变得更快,所以我决定将它直接连接到我的数据库。然而,每次我尝试向人们推荐东西时,我都会收到一个错误:setFetchSize() is not >=0。这是我的代码
Mysql文档说 When using versions of the JDBC driver earlier than 3.2.1, and connected to server versions
我正在对 Hive 运行查询。相同的查询应该适用于其他 JDBC 驱动程序,即其他关系数据库。 我不能使用 Statement.setFetchSize 方法,因为它在 Hive JDBC 0.13.
org.hibernate.Query 中的 setMaxResults 和 setFetchSize 有什么区别?我就是不明白=) 最佳答案 setMaxResults 与 SQL 中的 LIMIT
我有一张非常大的表,每天有几百万条记录,每天结束时,我都会提取前一天的所有记录。我这样做是这样的: String SQL = "select col1, col2, coln from mytabl
我正在使用 hibernate 。我需要获取大约 1000000 条记录,这会导致超时异常。因此,我对 6000 条记录使用 setfetchsize,以便它将操作分配到多个事务中,每个事务处理 60
我是一名优秀的程序员,十分优秀!