1

我正在尝试使用 Pyodbc 将数据从数据帧加载到 SQL Server,它逐行插入并且速度非常慢。

我已经尝试了 2 种在网上找到的方法(中等),但我没有发现性能有任何改进。

尝试在 SQL azure 中运行,因此 SQL Alchemy 不是一种简单的连接方法。请找到我遵循的方法,还有其他方法可以提高批量加载的性能。

方法一

 cursor = sql_con.cursor()
cursor.fast_executemany = True
for row_count in range(0, df.shape[0]):
  chunk = df.iloc[row_count:row_count + 1,:].values.tolist()
  tuple_of_tuples = tuple(tuple(x) for x in chunk)
  for index,row in ProductInventory.iterrows():
  cursor.executemany("INSERT INTO table ([x]],[Y]) values (?,?)",tuple_of_tuples)

方法二

 cursor = sql_con.cursor() 
for row_count in range(0, ProductInventory.shape[0]):
      chunk = ProductInventory.iloc[row_count:row_count + 1,:].values.tolist()
      tuple_of_tuples = tuple(tuple(x) for x in chunk)
  for index,row in ProductInventory.iterrows():
    cursor.executemany(""INSERT INTO table ([x]],[Y]) values (?,?)",tuple_of_tuples 

谁能告诉我为什么性能没有提高 1%?它仍然需要相同的时间

4

2 回答 2

1

几件事

  1. 你为什么要迭代 ProductInventory 两次?

  2. executemany建立整个 tuple_of_tuples 或其中的一批之后不应该调用吗?

  3. pyodbc 文档说“使用 fast_executemany=False 运行 executemany() 通常不会比直接运行多个 execute() 命令快得多。” 因此,您需要cursor.fast_executemany=True在两个示例中进行设置(有关更多详细信息/示例,请参见https://github.com/mkleehammer/pyodbc/wiki/Cursor)。我不确定为什么在示例 2 中省略了它。

这是一个示例,说明您如何完成我认为您正在尝试做的事情。最后一批的math.ceil和 条件表达式end_idx = ...,可能是奇数。因此,在下面的示例中,您有 10 行,批量大小为 3,因此最终有 4 个批次,最后一个只有 1 个元组。

import math

df = ProductInventory
batch_size = 500
num_batches = math.ceil(len(df)/batch_size)

for i in range(num_batches):
    start_idx = i * batch_size
    end_idx = len(df) if i + 1 == num_batches else start_idx + batch_size
    tuple_of_tuples = tuple(tuple(x) for x in df.iloc[start_idx:end_idx, :].values.tolist())       
    cursor.executemany("INSERT INTO table ([x]],[Y]) values (?,?)", tuple_of_tuples)

示例输出:

=== Executing: ===
df = pd.DataFrame({'a': range(1,11), 'b': range(101,111)})

batch_size = 3
num_batches = math.ceil(len(df)/batch_size)

for i in range(num_batches):
    start_idx = i * batch_size
    end_idx = len(df) if i + 1 == num_batches else start_idx + batch_size
    tuple_of_tuples = tuple(tuple(x) for x in df.iloc[start_idx:end_idx, :].values.tolist())
    print(tuple_of_tuples)

=== Output: ===
((1, 101), (2, 102), (3, 103))
((4, 104), (5, 105), (6, 106))
((7, 107), (8, 108), (9, 109))
((10, 110),)
于 2020-04-07T14:59:45.420 回答
1

尝试在 SQL azure 中运行,因此 SQL Alchemy 不是一种简单的连接方法。

也许你只需要先克服这个障碍。然后你可以使用 pandas to_sqlfast_executemany=True. 例如

from sqlalchemy import create_engine
#
# ...
#
engine = create_engine(connection_uri, fast_executemany=True)
df.to_sql("table_name", engine, if_exists="append", index=False)

如果您有一个有效的 pyodbc连接字符串,您可以将其转换为 SQLAlchemy连接 URI,如下所示:

connection_uri = 'mssql+pyodbc:///?odbc_connect=' + urllib.parse.quote_plus(connection_string)
于 2020-04-07T15:46:43.360 回答