91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Django ORM引發的數據庫N+1性能的原因

發布時間:2020-10-28 16:39:26 來源:億速云 閱讀:207 作者:Leah 欄目:開發技術

Django ORM引發的數據庫N+1性能的原因?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

背景描述

最近在使用 Django 時,發現當調用 api 后,在數據庫同一個進程下的事務中,出現了大量的數據庫查詢語句。調查后發現,是由于 Django ORM 的機制所引起。

Django Object-Relational Mapper(ORM)作為 Django 比較受歡迎的特性,在開發中被大量使用。我們可以通過它和數據庫進行交互,實現 DDL 和 DML 操作.

具體來說,就是使用 QuerySet 對象來檢索數據, 而 QuerySet 本質上是通過在預先定義好的 model 中的 Manager 和數據庫進行交互。

Manager 是 Django model 提供數據庫查詢的一個接口,在每個 Model 中都至少存在一個 Manager 對象。但今天要介紹的主角是 QuerySet ,它并不是關鍵。

為了更清晰的表述問題,假設在數據庫有如下的表:

device 表,表示當前網絡中納管的物理設備。

interface 表,表示物理設備擁有的接口。

interface_extension 表,和 interface 表是一對一關系,由于 interface 屬性過多,用于存儲一些不太常用的接口屬性。

class Device(models.Model):
  name = models.CharField(max_length=100, unique=True) # 添加設備時的設備名
  hostname = models.CharField(max_length=100, null=True) # 從設備中獲取的hostname
  ip_address = models.CharField(max_length=100, null=True) # 設備管理IP

class Interface(models.Model):
  device = models.ForeignKey(Device, on_delete=models.PROTECT, null=False,related_name='interfaces')) # 屬于哪臺設備
  name = models.CharField(max_length=100) # 端口名
  collect_status = models.CharField(max_length=30, default='active')
  class Meta:
    unique_together = ("device", "name") # 聯合主鍵
    
class InterfaceExtension(models.Model):
  interface = models.OneToOneField(
    Interface, on_delete=models.PROTECT, null=False, related_name='ex_info')
    
  endpoint_device_id = models.ForeignKey( # 綁定了的終端設備
    Device, db_column='endpoint_device_id',
    on_delete=models.PROTECT, null=True, blank=True)
    
  endpoint_interface_id = models.ForeignKey(
    Interface, db_column='endpoint_interface_id', on_delete=models.PROTECT, # 綁定了的終端設備的接口
    null=True, blank=True)

簡單說一下之間的關聯關系,一個設備擁有多個接口,一個接口擁有一個拓展屬性。

在接口的拓展屬性中,可以綁定另一臺設備上的接口,所以在 interface_extension 還有兩個參考外鍵。

為了更好的分析 ORM 執行 SQL 的過程,需要將執行的 SQL 記錄下來,可以通過如下的方式:

  • 在 django settings 中打開 sql log 的日志
  • MySQL 中打開記錄 sql log 的日志

django 中,在 settings.py 中配置如下內容, 就可以在控制臺上看到 SQL 執行過程:

DEBUG = True

import logging
l = logging.getLogger('django.db.backends')
l.setLevel(logging.DEBUG)
l.addHandler(logging.StreamHandler())

LOGGING = {
  'version': 1,
  'disable_existing_loggers': False,
  'filters': {
    'require_debug_false': {
      '()': 'django.utils.log.RequireDebugFalse'
    }
  },
  'handlers': {
    'mail_admins': {
      'level': 'ERROR',
      'filters': ['require_debug_false'],
      'class': 'django.utils.log.AdminEmailHandler'
    },'console': {
      'level': 'DEBUG',
      'class': 'logging.StreamHandler',
    },
  },
  'loggers': {
    'django.db': {
      'level': 'DEBUG',
      'handlers': ['console'],
    },
  }
}

或者直接在 MySQL 中配置:

# 查看記錄 SQL 的功能是否打開,默認是關閉的:
SHOW VARIABLES LIKE "general_log%";

# 將記錄功能打開,具體的 log 路徑會通過上面的命令顯示出來。
SET GLOBAL general_log = 'ON';

QuerySet

假如要通過 QuerySet 來查詢,所有接口的所屬設備的名稱:

interfaces = Interface.objects.filter()[:5] # hit once database

for interface in interfaces: 
  print('interface_name: ', interface.name,
     'device_name: ', interface.device.name) # hit database again

上面第一句取前 5 條 interface 記錄,對應的 raw sql 就是 select * from interface limit 5; 沒有任何問題。

但下面取接口所屬的設備名時,就會出現反復調用數據庫情況:當遍歷到一個接口,就會通過獲取的 device_id 去數據庫查詢 device_name. 對應的 raw sql 類似于:select name from device where id = {}.

也就是說,假如有 10 萬個接口,就會執行 10 萬次查詢,性能的消耗可想而知。算上之前查找所有接口的一次查詢,合稱為 N + 1 次查詢問題。

解決方式也很簡單,如果使用原生 SQL,通常有兩種解決方式:

  • 在第一次查詢接口時,使用 join,將 interface 和 device 關聯起來。這樣僅會執行一次數據庫調用。
  • 或者在查詢接口后,通過代碼邏輯,將所需要的 device_id 以集合的形式收集起來,然后通過 in 語句來查詢。類似于 SELECT name FROM device WHERE id in (....). 這樣做僅會執行兩次 SQL。

具體選擇哪種,就要結合具體的場景,比如有無索引,表的大小具體分析了。

回到 QuerySet,那么如何讓 QuerySet 解決這個問題呢,同樣也有兩種解決方法,使用 QuerySet 中提供的 select_related() 或者 prefetch_related() 方法。

select_related

在調用 select_related() 方法時,Queryset 會將所屬 Model 的外鍵關系,一起查詢。相當于 raw sql 中的 join . 一次將所有數據同時查詢出來。select_related() 主要的應用場景是:某個 model 中關聯了外鍵(多對一),或者有 1 對 1 的關聯關系情況。

還拿上面的查找接口的設備名稱舉例的話:

interfaces = Interface.objects.select_related('device').filter()[:5] # hit once database

for interface in interfaces:
  print('interface_name: ', interface.name,
     'device_name: ', interface.device.name) # don't need to hit database again 

上面的查詢 SQL 就類似于:SELECT xx FROMinterface INNER JOIN device ON interface.device_id = device.id limit5,注意這里是 inner join 是因為是非空外鍵。

select_related() 還支持一個 model 中關聯了多個外鍵的情況:如拓展接口,查詢綁定的設備名稱和接口名稱:

ex_interfaces = InterfaceExtension.objects.select_related(
  'endpoint_device_id', 'endpoint_interface_id').filter()[:5] 

# or

ex_interfaces = InterfaceExtension.objects.select_related(
  'endpoint_device_id').select_related('endpoint_interface_id').filter()[:5]

上面的 SQL 類似于:

SELECT XXX FROM interface_extension LEFT OUTER JOIN device ON (interface_extension.endpoint_device_id=device.id) 
LEFT OUTER JOIN interface ON (interface_extension.endpoint_interface_id=interface.id)
LIMIT 5

這里由于是可空外鍵,所以是 left join.

如果想要清空 QuerySet 的外鍵關系,可以通過:queryset.select_related(None) 來清空。

prefetch_related

prefetch_related 和 select_related 一樣都是為了避免大量查詢關系時的數據庫調用。只不過為了避免多表 join 后產生的巨大結果集以及效率問題, 所以 select_related 比較偏向于外鍵(多對一)和一對一的關系。

而 prefetch_related 的實現方式則類似于之前 raw sql 的第二種,分開查詢之間的關系,然后通過 python 代碼,將其組合在一起。所以 prefetch_related 可以很好的支持一對多或者多對多的關系。

還是拿查詢所有接口的設備名稱舉例:

interfaces = Interface.objects.prefetch_related('device').filter()[:5] # hit twice database

for interface in interfaces:
  print('interface_name: ', interface.name,
     'device_name: ', interface.device.name) # don't need to hit database again

換成 prefetch_related 后,sql 的執行邏輯變成這樣:

  1. "SELECT * FROM interface "
  2. "SELECT * FROM device where device_id in (.....)"
  3. 然后通過 python 代碼將之間的關系組合起來。

如果查詢所有設備具有哪些接口也是一樣:

devices = Device.objects.prefetch_related('interfaces').filter()[:5] # hit twice database
for device in devices:
  print('device_name: ', device.name,
     'interface_list: ', device.interfaces.all())

執行邏輯也是:

  1. "SELECT * FROM device"
  2. "SELECT * FROM interface where device_id in (.....)"
  3. 然后通過 python 代碼將之間的關系組合起來。

如果換成多對多的關系,在第二步會變為 join 后在 in,具體可以直接嘗試。

但有一點需要注意,當使用的 QuerySet 有新的邏輯查詢時, prefetch_related 的結果不會生效,還是會去查詢數據庫:

如在查詢所有設備具有哪些接口上,增加一個條件,接口的狀態是 up 的接口

devices = Device.objects.prefetch_related('interfaces').filter()[:5] # hit twice database
for device in devices:
  print('device_name: ', device.name,
     'interfaces:', device.interfaces.filter(collect_status='active')) # hit dababase repeatly

執行邏輯變成:

  • "SELECT * FROM device"
  • "SELECT * FROM interface where device_id in (.....)"
  • 一直重復 device 的數量次: "SELECT * FROM interface where device_id = xx and collect_status='up';"
  • 最后通過 python 組合到一起。

原因在于:之前的 prefetch_related 查詢,并不包含判斷 collect_status 的狀態。所以對于 QuerySet 來說,這是一個新的查詢。所以會重新執行。

可以利用 Prefetch 對象 進一步控制并解決上面的問題:

devices = Device.objects.prefetch_related(
  Prefetch('interfaces', queryset=Interface.objects.filter(collect_status='active'))
  ).filter()[:5] # hit twice database
for device in devices:
  print('device_name: ', device.name, 'interfaces:', device.interfaces) 

執行邏輯變成:

  • "SELECT * FROM device"
  • "SELECT * FROM interface where device_id in (.....) and collect_status = 'up';"
  • 最后通過 python 組合到一起。

可以通過 Prefetch 對象的 to_attr,來改變之間關聯關系的名稱:

devices = Device.objects.prefetch_related(
  Prefetch('interfaces', queryset=Interface.objects.filter(collect_status='active'), to_attr='actived_interfaces')
  ).filter()[:5] # hit twice database
for device in devices:
  print('device_name: ', device.name, 'interfaces:', device.actived_interfaces) 

可以看到通過 Prefetch,可以實現控制關聯那些有關系的對象。

最后,對于一些關聯結構較為復雜的情況,可以將 prefetch_related 和 select_related 組合到一起,從而控制查詢數據庫的邏輯。

比如,想要查詢全部接口的信息,及其設備名稱,以及拓展接口中綁定了對端設備和接口的信息。

queryset = Interface.objects.select_related('ex_info').prefetch_related(
      'ex_info__endpoint_device_id', 'ex_info__endpoint_interface_id')

執行邏輯如下:

  • SELECT XXX FROM interface LEFT OUTER JOIN interface_extension ON (interface.id=interface_extension .interface_id)
  • SELECT XXX FROM device where id in ()
  • SELECT XXX FROM interface where id in ()
  • 最后通過 python 組合到一起。

第一步, 由于 interface 和 interface_extension 是 1 對 1 的關系,所以使用 select_related 將其關聯起來。

第二三步:雖然 interface_extension 和 endpoint_device_id 和 endpoint_interface_id 是外鍵關系,如果繼續使用 select_related 則會進行 4 張表連續 join,將其換成 select_related,對于 interface_extension 外鍵關聯的屬性使用 in 查詢,因為interface_extension 表的屬性并不是經常使用的。

總結

在這篇文章中,介紹了 Django N +1 問題產生的原因,解決的方法就是通過調用 QuerySet 的 select_related 或 prefetch_related 方法。

對于 select_related 來說,應用場景主要在外鍵和一對一的關系中。對應到原生的 SQL 類似于 JOIN 操作。

對于 prefetch_related 來說,應用場景主要在多對一和多對多的關系中。對應到原生的 SQL 類似于 IN 操作。

通過 Prefetch 對象,可以控制 select_related 和 prefetch_related 和那些有關系的對象做關聯。

最后,在每個 QuerySet 可以通過組合 select_related 和 prefetch_related 的方式,更改查詢數據庫的邏輯。

看完上述內容,你們掌握Django ORM引發的數據庫N+1性能的原因的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

永宁县| 淮南市| 富蕴县| 皋兰县| 志丹县| 临高县| 兴安县| 江西省| 泾源县| 许昌县| 鹿泉市| 邳州市| 绵竹市| 察雅县| 台东市| 垣曲县| 磐石市| 江油市| 株洲市| 布拖县| 达孜县| 永兴县| 休宁县| 交城县| 中西区| 六盘水市| 南阳市| 夏津县| 林甸县| 枣强县| 嵩明县| 漳浦县| 和顺县| 江口县| 阿拉善左旗| 竹北市| 鸡西市| 大埔县| 嘉义县| 寿阳县| 滨海县|