ALT Linux sysadmins discussion
 help / color / mirror / Atom feed
From: Alexei Takaseev <alexei@taf.ru>
To: ALT Linux sysadmins' discussion <sysadmins@lists.altlinux.org>
Subject: Re: [Sysadmins] А что у нас с SMP на Intel S5500BC / Xeon E5607 ?
Date: Fri, 10 Feb 2012 17:12:25 +0800 (IRKT)
Message-ID: <d988b8d5-4c63-4ae6-973d-d7ddf044abb7@taf.ilimnet.ru> (raw)
In-Reply-To: <8770183.LSsyDPxBdh@asy.kraft-s.ru>



----- Исходное сообщение -----
> От: "Sergey" <a_s_y@sama.ru>
> Кому: "ALT Linux sysadmins' discussion" <sysadmins@lists.altlinux.org>
> Отправленные: Пятница, 10 Февраль 2012 г 17:52:51
> Тема: Re: [Sysadmins] А что у нас с SMP на Intel S5500BC / Xeon E5607 ?
> 
> On Friday, February 10, 2012 15:58:30 Alexei Takaseev wrote:
> 
> > > > Вернул на место Intel S3210SH / Intel Core2 Quad Q8300.
> > > > Процессы снова нормально раскидываются по ядрам.
> > > 
> > > Ещё забавнее... Сборка ядра на S5500BC/E5607 распараллеливается
> > > совершенно нормально. Получается, что тип задачи ещё влияет.
> > > Грабля была с обработкой трафика.
> > 
> > сетевух сколько ?
> 
> Много. Две бортовых у той и у другой материнки, плюс ещё 4, одна
> из которых четырёхпортовка.
> 
> > есть ли в них отдельные очереди*
> 
> Для 82572EI/82571EB пишут, что
> 
> Intel® I/O Acceleration Technology
> 2Tx, 2Rx queues, message signaled interrupts, receive side scaling,
> header splitting
> 
> но, наверное, это не очень важно, так как 4 переставлялись, как есть,
> и сейчас
> они же и работают. Менялись только бортовые. У S5500BC это
> 
> 00:19.0 Ethernet controller: Intel Corporation 82567LM-2 Gigabit
> Network Connection
> 01:00.0 Ethernet controller: Intel Corporation 82574L Gigabit Network
> Connection
> 
> Что сейчас нормально работает на S3210SH/Q8300:
> 
> Бортовые:
> 00:19.0 Ethernet controller: Intel Corporation 82566DM-2 Gigabit
> Network Connection (rev 02)
> 08:02.0 Ethernet controller: Intel Corporation 82541GI Gigabit
> Ethernet Controller (rev 05)
> 
> Две PCI-e:
> 01:00.0 Ethernet controller: Intel Corporation 82572EI Gigabit
> Ethernet Controller (Copper) (rev 06)
> 02:00.0 Ethernet controller: Intel Corporation 82572EI Gigabit
> Ethernet Controller (Copper) (rev 06)
> 
> четырёхпортовка PCI-e
> http://ark.intel.com/products/50496/Intel-PRO1000-PT-Quad-Port-Server-Adapter
> 05:00.0 Ethernet controller: Intel Corporation 82571EB Gigabit
> Ethernet Controller (Copper) (rev 06)
> 05:00.1 Ethernet controller: Intel Corporation 82571EB Gigabit
> Ethernet Controller (Copper) (rev 06)
> 06:00.0 Ethernet controller: Intel Corporation 82571EB Gigabit
> Ethernet Controller (Copper) (rev 06)
> 06:00.1 Ethernet controller: Intel Corporation 82571EB Gigabit
> Ethernet Controller (Copper) (rev 06)
> 
> Старенькая PCI (точно не скажу, какая):
> 08:01.0 Ethernet controller: Intel Corporation 82557/8/9/0/1 Ethernet
> Pro 100 (rev 08)

Похоже, что дело таки в материнке. И самый оптимальный вариант - растащить прерывания сетевух на отдельные ядра вручную через smp_affinity.

У себя я это таким скриптом сделал:
---
#!/bin/sh

P=`find /proc/irq -name 'eth0-rx-0' -print | sed 's@/eth0-rx-0@@'`
echo "1" > ${P}/smp_affinity

P=`find /proc/irq -name 'eth0-tx-0' -print | sed 's@/eth0-tx-0@@'`
echo "2" > ${P}/smp_affinity

P=`find /proc/irq -name 'eth1-rx-0' -print | sed 's@/eth1-rx-0@@'`
echo "4" > ${P}/smp_affinity

P=`find /proc/irq -name 'eth1-tx-0' -print | sed 's@/eth1-tx-0@@'`
echo "8" > ${P}/smp_affinity
---

irqbalance для этого лучше не использовать.

наличие очередей можно определить через cat /proc/interrupts:

 46: 2491993875 3178910304          0          0   PCI-MSI-edge      eth0-rx-0
 47:  810336516 3558468146          0          0   PCI-MSI-edge      eth0-tx-0
 48:        629          0          0       1712   PCI-MSI-edge      eth0
 49:  366255653          0 1973013332          0   PCI-MSI-edge      eth1-rx-0
 50: 1308353038          0          0 2840998644   PCI-MSI-edge      eth1-tx-0
 51:        995          0       2643          0   PCI-MSI-edge      eth1

как раз иллюстрация севшей на одно ядро сети, которую потом растолкал по полкам вручную.

  reply	other threads:[~2012-02-10  9:12 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-02-09  7:51 [Sysadmins] А что у нас с SMP в p6 ? Sergey
2012-02-09 11:35 ` Sergey
2012-02-09 12:01   ` Anton Gorlov
2012-02-09 12:47     ` Sergey
2012-02-09 12:58       ` Sergey
2012-02-09 17:39       ` [Sysadmins] А что у нас с SMP на Intel S5500BC / Xeon E5607 ? Sergey
2012-02-10  4:25         ` Ildar Mulyukov
2012-02-10  7:34         ` Sergey
2012-02-10  7:58           ` Alexei Takaseev
2012-02-10  8:52             ` Sergey
2012-02-10  9:12               ` Alexei Takaseev [this message]
2012-02-10  9:51                 ` Sergey
2012-02-10 11:48                   ` Sergey
2012-02-10 12:29                     ` Alexei Takaseev
2012-02-10 12:44                       ` Sergey
2012-02-10 14:01                         ` Alexei Takaseev
2012-02-10 14:36                           ` Sergey
2012-02-10 14:40                             ` Alexei Takaseev
2012-02-10 15:54                               ` Sergey
2012-02-10 14:25                       ` Sergey
2012-02-10 14:37                         ` Alexei Takaseev
2012-02-10 15:06                           ` Sergey
2012-02-10 15:19                             ` Alexei Takaseev
2012-02-10 15:58                               ` Sergey
2012-02-10 16:17                                 ` Alexei Takaseev
2012-02-15 22:17                   ` Sergey
2012-02-16  7:48                     ` Michael Shigorin
2012-02-16 12:32                       ` Sergey
2012-02-18  9:26                       ` Sergey
2012-02-16 14:58                 ` Sergey
2012-02-17 12:36                   ` Sergey
2012-02-17 13:15                     ` Sergey
2012-02-17 14:03                       ` Michael Shigorin
2012-02-17 19:55                         ` Sergey

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d988b8d5-4c63-4ae6-973d-d7ddf044abb7@taf.ilimnet.ru \
    --to=alexei@taf.ru \
    --cc=sysadmins@lists.altlinux.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

ALT Linux sysadmins discussion

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/sysadmins/0 sysadmins/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 sysadmins sysadmins/ http://lore.altlinux.org/sysadmins \
		sysadmins@lists.altlinux.org sysadmins@lists.altlinux.ru sysadmins@lists.altlinux.com
	public-inbox-index sysadmins

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.sysadmins


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git