diff --git a/concho/dell.py b/concho/dell.py index 061abfd..4e3ddf6 100644 --- a/concho/dell.py +++ b/concho/dell.py @@ -425,15 +425,20 @@ class DellConfiguratorParser(): label = label_elements[0].text_content().replace('\n', '') price = DellConfiguratorParser.price_str_as_float(option_root_element.xpath(".//div[@class='col-md-3 text-right option-price ']")[0].text_content()) # print(label, price) + num_cpus = 1 # Passage à processeur Intel Xeon Gold 6240L 2.6GHz, 24.75M Cache,10.40GT/s, 2UPI, Turbo, HT,18C/36T (150W) - DDR4-2933 match = re.match(r'^Passage à processeur Intel Xeon (?PSilver|Gold|Platinium) (?P[0-9][0-9][0-9][0-9][RLYU]?).*', label) - assert match, 'unhandled label : %s' % label + if match is None: + # Passage à 2 Processeurs Intel Xeon Gold 6240L 2.6GHz, 24.75M Cache,10.40GT/s, 2UPI, Turbo, HT,18C/36T (150W) - DDR4-2933 + match = re.match(r'^passage à 2 processeurs intel xeon (?Psilver|gold|platinium) (?P[0-9][0-9][0-9][0-9][rly]?).*', label.lower()) + assert match, 'unhandled label : %s' % label + num_cpus = 2 # print(match['cpu_class'], match['cpu_number']) cpu_class = match['cpu_class'].lower() if cpu_class == 'platinium': cpu_class = 'platinum' cpu_id = "intel-xeon-%s-%s" % (cpu_class, match['cpu_number'].lower()) - option = Option(Cpu(cpu_id), price) + option = Option(Cpu(cpu_id), price / num_cpus) proc_options.add_option(option) return proc_options @@ -447,15 +452,21 @@ class DellConfiguratorParser(): label = label_elements[0].text_content() price = DellConfiguratorParser.price_str_as_float(option_root_element.xpath(".//div[@class='col-md-3 text-right option-price ']")[0].text_content()) # print(label, price) + num_additional_cpus = 1 match = re.match(r'^Processeur additionnel Intel Xeon (?PSilver|Gold|Platinium) (?P[0-9][0-9][0-9][0-9][RLY]?).*', label) - assert match + if match is None: + # Ajout de 2 Processeurs Intel Xeon Gold 6240L 2.6GHz, 24.75M Cache,10.40GT/s, 2UPI, Turbo, HT,18C/36T (150W) - DDR4-2933 + match = re.match(r'^ajout de 2 processeurs intel xeon (?Psilver|gold|platinium) (?P[0-9][0-9][0-9][0-9][rly]?).*', label.lower()) + assert match, 'unhandled label : %s' % label + num_additional_cpus = 2 # print(match['cpu_class'], match['cpu_number']) cpu_class = match['cpu_class'].lower() if cpu_class == 'platinium': cpu_class = 'platinum' cpu_id = "intel-xeon-%s-%s" % (cpu_class, match['cpu_number'].lower()) - option = Option(Cpu(cpu_id), price) + option = Option(Cpu(cpu_id), price / num_additional_cpus) proc_options.add_option(option) + assert len(proc_options.options) > 0 return proc_options def _parse_ram_options(self, html_root): @@ -471,8 +482,14 @@ class DellConfiguratorParser(): # Ajout d'une barette de 128Go 2667 Mhz LRDIMM match = re.match(r'^Ajout d\'une barette de (?P[0-9]+)Go (?P[0-9][0-9][0-9][0-9]) Mhz (?PLRDIMM|RDIMM)$', label) if match: + # print(match['num_gb'], match['num_mhz']) - dimm = Dimm(num_gb=int(match['num_gb']), num_mhz=int(match['num_mhz']), mem_type=match['mem_type'].lower()) + num_gb = int(match['num_gb']) + num_mhz = int(match['num_mhz']) + mem_type = match['mem_type'].lower() + if num_gb == 8 and num_mhz == 2667 and mem_type == 'rdimm': + num_mhz = 2933 # error in r940 configurator : incoherence between 'Mémoire 32 Go DDR4 à 2933MHz (4x8Go)' and 'Ajout d'une barette de 8Go 2667 Mhz RDIMM' + dimm = Dimm(num_gb=num_gb, num_mhz=num_mhz, mem_type=mem_type) option = Option(dimm, price) ram_options.add_option(option) else: @@ -485,6 +502,7 @@ class DellConfiguratorParser(): ram_options.add_option(option) else: assert False, 'unhandled label : %s' % label + assert len(ram_options.options) > 0 return ram_options @classmethod @@ -510,7 +528,10 @@ class DellConfiguratorParser(): item_label = DellConfiguratorParser._get_module_default_item('Processeurs (Passage)', html_root) # Processeur Intel Xeon Silver 4208 2.1GHz,11M Cache,9.60GT/s, 2UPI,No Turbo, HT,8C/16T (85W) - DDR4-2400 match = re.match(r'^Processeur Intel Xeon (?PSilver|Gold|Platinium) (?P[0-9][0-9][0-9][0-9][RLYU]?).*', item_label) - assert match, 'unhandled label : %s' % item_label + if match is None: + match = re.match(r'^2 processeurs Intel Xeon (?PSilver|Gold|Platinium) (?P[0-9][0-9][0-9][0-9][RLYU]?).*', item_label) + assert match, 'unhandled label : %s' % item_label + base_config.num_cpu_per_server = 2 # print(match['cpu_class'], match['cpu_number']) cpu_id = "intel-xeon-%s-%s" % (match['cpu_class'].lower(), match['cpu_number'].lower()) base_config.set_cpu(Cpu(cpu_id)) @@ -518,18 +539,59 @@ class DellConfiguratorParser(): # initialize the default ram dimms item_label = DellConfiguratorParser._get_module_default_item('Mémoires (Passage)', html_root) # Mémoire 16 Go DDR4 à 2933MHz (1x16Go) - match = re.match(r'^Mémoire (?P[0-9]+) Go DDR4 à (?P[0-9]+)MHz \((?P[0-9]+)x(?P[0-9]+)Go\)', item_label) + match = re.match(r'^Mémoire (?P[0-9]+) Go DDR4 à (?P[0-9]+)MHz \((?P[0-9]+)x(?P[0-9]+)Go\)', item_label) assert match, 'unhandled label : %s' % item_label - assert int(match['num_dimms']) == 1 - assert match['num_gb'] == match['num_gb2'] - # print(match['cpu_class'], match['cpu_number']) - cpu_slot_index = 0 - mem_channel_index = 0 - dimm_slot = 0 - base_config.cpu_slots_mem[cpu_slot_index].mem_channels[mem_channel_index].dimms[dimm_slot] = Dimm(num_gb=int(match['num_gb']), num_mhz=int(match['num_mhz']), mem_type='rdimm') + dimm = Dimm(num_gb=int(match['num_gb_per_dimm']), num_mhz=int(match['num_mhz']), mem_type='rdimm') + num_dimms = int(match['num_dimms']) + if num_dimms == 1: + assert match['num_gb'] == match['num_gb_per_dimm'] + # print(match['cpu_class'], match['cpu_number']) + cpu_slot_index = 0 + mem_channel_index = 0 + dimm_slot = 0 + base_config.cpu_slots_mem[cpu_slot_index].mem_channels[mem_channel_index].dimms[dimm_slot] = dimm + else: + # evenly split dimms on channels + assert (num_dimms % base_config.num_cpu_per_server) == 0 + num_dimms_per_cpu = num_dimms // base_config.num_cpu_per_server + for cpu_slot_index in range(base_config.num_cpu_per_server): + cpu_slots_mem = base_config.cpu_slots_mem[cpu_slot_index] + assert len(cpu_slots_mem.mem_channels) >= num_dimms_per_cpu + for channel_index in range(num_dimms_per_cpu): + mem_channel = cpu_slots_mem.mem_channels[channel_index] + dimm_slot = 0 + mem_channel.dimms[dimm_slot] = dimm return base_config + @staticmethod + def _deduce_base_cpu_price(base_cpu, cpu_options, additional_cpu_options): + ''' + The price of the base config processor is not always available directly in the section 'additional processors' : as an example, r940's default processors are 2 xeon gold 5215 but it's not possible to add 2 other 5215 (probably because 5215 can only talk to another cpu, not 3). In this case the price of this base cpu can be deduced from the price for other cpus (difference between cpu upgrade and additional cpu) + + Args: + base_cpu (Cpu): the cpu of the base configuration + cpu_options (Module): the available cpu options + additional_cpu_options (Module): the available additional cpu options + + returns: + float: the estimated price of base_cpu + ''' + base_cpu_price = None + + for cpu_option in additional_cpu_options.options.values(): + cpu = cpu_option.item + # assert cpu.uid in cpu_options.options, "unexpected case : %s is available in additional cpus but not in cpu upgrade options" % cpu.uid + if cpu.uid in cpu_options.options: + cpu_upgrade_option = cpu_options.options[cpu.uid] + deduced_base_cpu_price = cpu_option.price - cpu_upgrade_option.price + print('price of %s estimated from %s : %f (%f-%f)' % (base_cpu.uid, cpu.uid, deduced_base_cpu_price, cpu_option.price, cpu_upgrade_option.price)) + if base_cpu_price is None: + base_cpu_price = deduced_base_cpu_price + else: + assert abs(base_cpu_price-deduced_base_cpu_price) <= 0.01 + + return base_cpu_price def parse(self, dell_configurator_html_file_path, configurator): @@ -563,10 +625,17 @@ class DellConfiguratorParser(): configurator.base_config = self._parse_base_config(html_root, configurator) - # configurator.add_module(self._parse_proc_change_options(html_root)) + proc_change_module = self._parse_proc_change_options(html_root) configurator.add_module(self._parse_proc_options(html_root)) configurator.add_module(self._parse_ram_options(html_root)) + # compute the price of the base config cpu because for example in r940 configurator, the xeon gold 5215 appears in the basic config but not in additional cpus + base_cpu = configurator.base_config.cpu + if configurator.get_item_price(base_cpu.uid) is None: + base_cpu_price = DellConfiguratorParser._deduce_base_cpu_price(base_cpu, proc_change_module, configurator.modules['processor']) + configurator.modules['processor'].add_option(Option(base_cpu, base_cpu_price)) + assert configurator.get_item_price(base_cpu.uid) is not None + # compute the price of the chassis base_price = None price_preview_element = html_root.xpath(".//div[@class='price-preview']")[0] @@ -591,7 +660,9 @@ class DellConfiguratorParser(): base_price = DellConfiguratorParser.price_str_as_float(price_value_element.text_content()) assert base_price is not None - configurator.chassis.price = base_price - configurator.base_config.num_cpus * configurator.get_item_price(configurator.base_config.cpu.uid) - configurator.base_config.ram_price + one_cpu_price = configurator.get_item_price(configurator.base_config.cpu.uid) + ram_price = configurator.base_config.ram_price + configurator.chassis.price = base_price - configurator.base_config.num_cpus * one_cpu_price - ram_price class DellMatinfoConfigurator(Configurator): ''' diff --git a/concho/procs_chooser.py b/concho/procs_chooser.py index 3381727..3acab28 100644 --- a/concho/procs_chooser.py +++ b/concho/procs_chooser.py @@ -137,6 +137,7 @@ def plot_system_efficiency(): configurators = [ dell.DellMatinfoCsvConfigurator('c6420-20200716-price.tsv'), dell.DellMatinfoConfigurator('rcrc1406676-4834664 - Cat2 Conf4 PowerEdge R640 - Dell.html'), + dell.DellMatinfoConfigurator('rcrc1406676-4824727 - Cat 2 Conf 7 PowerEdge R940 - Dell.html'), # dell.DellPowerEdgeR940(), ] for configurator in configurators: diff --git a/rcrc1406676-4824727 - Cat 2 Conf 7 PowerEdge R940 - Dell.html b/rcrc1406676-4824727 - Cat 2 Conf 7 PowerEdge R940 - Dell.html new file mode 100644 index 0000000..3865e8e --- /dev/null +++ b/rcrc1406676-4824727 - Cat 2 Conf 7 PowerEdge R940 - Dell.html @@ -0,0 +1,600 @@ + + + + + + + rcrc1406676-4824727 - Cat 2 Conf 7 PowerEdge R940 - Dell + + + + + +
+
+ +
+ +
+ +
+ +
+ + +
+ +
+ + +
+
+
+ +
+ +
+ +
+
+
+ + + + +
+ +
+
+
+ +
+ +
+Cat 2 Conf 7 PowerEdge R940
+ +
+ +
+
+ + + +
+
+ + +
+ +
+ +
+
+

Plate-forme scale-up pour les charges applicatives stratégiques Le +PowerEdge R940 est conçu pour optimiser vos applications stratégiques et + vous permettre de prendre des décisions en temps réel. Avec quatre +sockets et jusqu’à 12 disques NMVe, le R940 offre des performances +évolutives dans un format 3U.

+ +
+ + + +
+
+ +
+ + + +
+
+

   Epeat  

+
+
+ + +
+
+ +
+
+
+
+ + + +
+
+ + + +
+
+ + + +
Configuration
0.00 €
Base
PowerEdge R940
0.00 €
PowerEdge R940
0.00 €
Processeurs (Passage)
2 processeurs Intel Xeon Gold 5215 2.5GHz, 13.75M Cache,10.40GT/s, 2UPI, Turbo, HT,10C/20T (85W) - DDR4-2666
0.00 €
Passage à 2 Processeurs Intel Xeon Gold 6240L 2.6GHz, 24.75M Cache,10.40GT/s, 2UPI, Turbo, HT,18C/36T (150W) - DDR4-2933
+ 7326.00 €
Passage à 2 processeurs Intel Xeon Gold 6238L 2.1GHz, 30.25M Cache,10.40GT/s, 3UPI, Turbo, HT,22C/44T (140W) - DDR4-2933
+ 7966.00 €
Passage à 2 processeurs Intel Xeon Gold 6234 3.3GHz, 24.75M Cache,10.40GT/s, 3UPI, Turbo, HT,8C/16T (130W) - DDR4-2933
+ 2346.00 €
Passage à 2 processeurs Intel Xeon Gold 6238 2.1GHz, 30.25M Cache,10.40GT/s, 3UPI, Turbo, HT,22C/44T (140W) - DDR4-2933
+ 3266.00 €
Passage à 2 Processeurs Intel Xeon Gold 6246 3.3GHz, 24.75M Cache,10.40GT/s, 2UPI, Turbo, HT,12C/24T (165W) - DDR4-2933
+ 4516.00 €
Passage à 2 Processeurs Intel Xeon Gold 6226 2.7GHz, 19.25M Cache,10.40GT/s, 3UPI, Turbo, HT,12C/24T (125W) - DDR4-2933
+ 1266.00 €
Passage à 2 Processeurs Intel Xeon Platinium 8253 2.2GHz, 22M Cache,10.40GT/s, 3UPI, Turbo, HT,16C/32T (125W) - DDR4-2933
+ 4090.00 €
Passage à 2 processeurs Intel Xeon Platinium 8280 2.7GHz, 38.5M Cache,10.40GT/s, 3UPI, Turbo, HT,28C/56T (205W) - DDR4-2933
+ 17316.00 €
Passage à 2 Processeurs Intel Xeon Gold 6252 2.1GHz, 35.75M Cache,10.40GT/s, 3UPI, Turbo, HT,24C/48T (150W) - DDR4-2933
+ 5486.00 €
Passage à 2 Processeurs Intel Xeon Platinium 8268 2.9GHz, 35.75M Cache,10.40GT/s, 3UPI, Turbo, HT,24C/48T (205W) - DDR4-2933
+ 9376.00 €
Passage à 2 processeurs Intel Xeon Platinium 8280L 2.7GHz, 38.5M Cache,10.40GT/s, 2UPI, Turbo, HT,28C/56T (205W) - DDR4-2933
+ 21516.00 €
Passage à 2 Processeurs Intel Xeon Gold 6244 3.6GHz, 24.75M Cache,10.40GT/s, 3UPI, Turbo, HT,8C/16T (150W) - DDR4-2933
+ 4146.00 €
2 processeurs Intel Xeon Gold 5215 2.5GHz, 13.75M Cache,10.40GT/s, 2UPI, Turbo, HT,10C/20T (85W) - DDR4-2666
0.00 €
Passage à 2 Processeurs Intel Xeon Gold 6254 3.1GHz, 24.75M Cache,10.40GT/s, 3UPI, Turbo, HT,18C/36T (200W) - DDR4-2933
+ 5306.00 €
Passage à 2 Processeurs Intel Xeon Gold 6242 2.8GHz, 22M Cache,10.40GT/s, 3UPI, Turbo, HT,16C/32T (150W) - DDR4-2933
+ 3066.00 €
Passage à 2 Processeurs Intel Xeon Gold 6248 2.5GHz, 27.5M Cache,10.40GT/s, 3UPI, Turbo, HT,20C/40T (150W) - DDR4-2933
+ 4250.00 €
Passage à 2 processeurs Intel Xeon Platinium 8260L 2.4GHz, 35.75M Cache,10.40GT/s, 2UPI, Turbo, HT,24C/48T (165W) - DDR4-2933
+ 10706.00 €
Passage à 2 Processeurs Intel Xeon Gold 6230 2.1GHz, 27.5M Cache,10.40GT/s, 3UPI, Turbo, HT,20C/40T (125W) - DDR4-2933
+ 1696.00 €
Passage à 2 Processeurs Intel Xeon Platinium 8276 2.2GHz, 38.5M Cache,10.40GT/s, 3UPI, Turbo, HT,28C/56T (165W) - DDR4-2933
+ 15322.00 €
Passage à 2 Processeurs Intel Xeon Gold 5222 3.8GHz, 16.5M Cache,10.40GT/s, 2UPI, Turbo, HT,4C/8T (105W) - DDR4-2933
-100.00 €
Passage à 2 Processeurs Intel Xeon Gold 5218 2.3GHz, 22M Cache,10.40GT/s, 2UPI, Turbo, HT,16C/32T (105W) - DDR4-2666
+ 40.00 €
Passage à 2 Processeurs Intel Xeon Platinium 8260 2.4GHz, 35.75M Cache,10.40GT/s, 3UPI, Turbo, HT,24C/48T (165W) - DDR4-2933
+ 6844.00 €
Passage à 2 Processeurs Intel Xeon Platinium 8270 2.7GHz, 35.75M Cache,10.40GT/s, 3UPI, Turbo, HT,26C/52T (205W) - DDR4-2933
+ 12390.00 €
Passage à 2 Processeurs Intel Xeon Gold 5220 2.2GHz, 24.75M Cache,10.40GT/s, 2UPI, Turbo, HT,18C/36T (125W) - DDR4-2666
+ 718.00 €
Passage à 2 processeurs Intel Xeon Platinium 8256 3.8GHz, 16.5M Cache,10.40GT/s, 3UPI, Turbo, HT,4C/8T (105W) - DDR4-2933
+ 11166.00 €
Passage à 2 Processeurs Intel Xeon Gold 6240 2.6GHz, 24.75M Cache,10.40GT/s, 3UPI, Turbo, HT,18C/36T (150W) - DDR4-2933
+ 2734.00 €
Passage à 2 processeurs Intel Xeon Gold 5215L 2.5GHz, 13.75M Cache,10.40GT/s, 2UPI, Turbo, HT,10C/20T (85W) - DDR4-2666
+ 4516.00 €
Processeurs additionnels
Pas de 3ieme ni 4ieme processeur
0.00 €
Ajout de 2 Processeurs Intel Xeon Gold 6240L 2.6GHz, 24.75M Cache,10.40GT/s, 2UPI, Turbo, HT,18C/36T (150W) - DDR4-2933
+ 9960.00 €
Ajout de 2 Processeurs Intel Xeon Gold 6238 2.1GHz, 30.25M Cache,10.40GT/s, 3UPI, Turbo, HT,22C/44T (140W) - DDR4-2933
+ 5900.00 €
Ajout de 2 Processeurs Intel Xeon Gold 6246 3.3GHz, 24.75M Cache,10.40GT/s, 2UPI, Turbo, HT,12C/24T (165W) - DDR4-2933
+ 7150.00 €
Ajout de 2 Processeurs Intel Xeon Gold 6238L 2.1GHz, 30.25M Cache,10.40GT/s, 3UPI, Turbo, HT,22C/44T (140W) - DDR4-2933
+ 10600.00 €
Ajout de 2 Processeurs Intel Xeon Gold 6226 2.7GHz, 19.25M Cache,10.40GT/s, 3UPI, Turbo, HT,12C/24T (125W) - DDR4-2933
+ 3900.00 €
Ajout de 2 Processeurs Intel Xeon Gold 6234 3.3GHz, 24.75M Cache,10.40GT/s, 3UPI, Turbo, HT,8C/16T (130W) - DDR4-2933
+ 4980.00 €
Ajout de 2 Processeurs Intel Xeon Platinium 8253 2.2GHz, 22M Cache,10.40GT/s, 3UPI, Turbo, HT,16C/32T (125W) - DDR4-2933
+ 6724.00 €
Ajout de 2 processeurs Intel Xeon Platinium 8280 2.7GHz, 38.5M Cache,10.40GT/s, 3UPI, Turbo, HT,28C/56T (205W) - DDR4-2933
+ 19950.00 €
Ajout de 2 processeurs Intel Xeon Platinium 8280L 2.7GHz, 38.5M Cache,10.40GT/s, 2UPI, Turbo, HT,28C/56T (205W) - DDR4-2933
+ 24150.00 €
Ajout de 2 Processeurs Intel Xeon Platinium 8268 2.9GHz, 35.75M Cache,10.40GT/s, 3UPI, Turbo, HT,24C/48T (205W) - DDR4-2933
+ 12010.00 €
Ajout de 2 Processeurs Intel Xeon Gold 6254 3.1GHz, 24.75M Cache,10.40GT/s, 3UPI, Turbo, HT,18C/36T (200W) - DDR4-2933
+ 7940.00 €
Ajout de 2 Processeurs Intel Xeon Gold 6252 2.1GHz, 35.75M Cache,10.40GT/s, 3UPI, Turbo, HT,24C/48T (150W) - DDR4-2933
+ 8120.00 €
Ajout de 2 Processeurs Intel Xeon Gold 6244 3.6GHz, 24.75M Cache,10.40GT/s, 3UPI, Turbo, HT,8C/16T (150W) - DDR4-2933
+ 6780.00 €
Ajout de 2 processeurs Intel Xeon Platinium 8260L 2.4GHz, 35.75M Cache,10.40GT/s, 2UPI, Turbo, HT,24C/48T (165W) - DDR4-2933
+ 13340.00 €
Ajout de 2 Processeurs Intel Xeon Gold 6248 2.5GHz, 27.5M Cache,10.40GT/s, 3UPI, Turbo, HT,20C/40T (150W) - DDR4-2933
+ 6884.00 €
Ajout de 2 Processeurs Intel Xeon Gold 6230 2.1GHz, 27.5M Cache,10.40GT/s, 3UPI, Turbo, HT,20C/40T (125W) - DDR4-2933
+ 4330.00 €
Ajout de 2 Processeurs Intel Xeon Gold 6242 2.8GHz, 22M Cache,10.40GT/s, 3UPI, Turbo, HT,16C/32T (150W) - DDR4-2933
+ 5700.00 €
Ajout de 2 Processeurs Intel Xeon Gold 5222 3.8GHz, 16.5M Cache,10.40GT/s, 2UPI, Turbo, HT,4C/8T (105W) - DDR4-2933
+ 2534.00 €
Ajout de 2 Processeurs Intel Xeon Gold 5218 2.3GHz, 22M Cache,10.40GT/s, 2UPI, Turbo, HT,16C/32T (105W) - DDR4-2666
+ 2674.00 €
Ajout de 2 Processeurs Intel Xeon Platinium 8260 2.4GHz, 35.75M Cache,10.40GT/s, 3UPI, Turbo, HT,24C/48T (165W) - DDR4-2933
+ 9478.00 €
Ajout de 2 Processeurs Intel Xeon Gold 6240 2.6GHz, 24.75M Cache,10.40GT/s, 3UPI, Turbo, HT,18C/36T (150W) - DDR4-2933
+ 5368.00 €
Ajout de 2 processeurs Intel Xeon Platinium 8256 3.8GHz, 16.5M Cache,10.40GT/s, 3UPI, Turbo, HT,4C/8T (105W) - DDR4-2933
+ 13800.00 €
Ajout de 2 Processeurs Intel Xeon Gold 5220 2.2GHz, 24.75M Cache,10.40GT/s, 2UPI, Turbo, HT,18C/36T (125W) - DDR4-2666
+ 3352.00 €
Ajout de 2 Processeurs Intel Xeon Platinium 8276 2.2GHz, 38.5M Cache,10.40GT/s, 3UPI, Turbo, HT,28C/56T (165W) - DDR4-2933
+ 17956.00 €
Ajout de 2 Processeurs Intel Xeon Platinium 8270 2.7GHz, 35.75M Cache,10.40GT/s, 3UPI, Turbo, HT,26C/52T (205W) - DDR4-2933
+ 15024.00 €
Pas de 3ieme ni 4ieme processeur
0.00 €
Ajout de 2 processeurs Intel Xeon Gold 5215L 2.5GHz, 13.75M Cache,10.40GT/s, 2UPI, Turbo, HT,10C/20T (85W) - DDR4-2666
+ 7150.00 €
Mémoires (Passage)
Mémoire 32 Go DDR4 à 2933MHz (4x8Go)
0.00 €
Mémoire 32 Go DDR4 à 2933MHz (4x8Go)
0.00 €
Passage à 64Go DDR4 en 4 x 16Go 2933 Mhz RDIMM
+ 320.00 €
Passage à 128Go DDR4 en 4 x 32Go 2933 Mhz RDIMM
+ 960.00 €
Passage à 256Go DDR4 en 4 x 64Go 2933 Mhz RDIMM
+ 2240.00 €
Passage à 512Go DDR4 en 4 x 128Go 2667 Mhz LRDIMM
+ 11880.00 €
Mémoire: Ajout de barettes additionnelles
VEUILLEZ SAISIR ICI VOS BARRETTES ADDITIONNELLES
0.00 €
VEUILLEZ SAISIR ICI VOS BARRETTES ADDITIONNELLES
0.00 €
Ajout d'une barette de 64Go 2933 Mhz RDIMM
+ 640.00 €
Ajout d'une barette de 32Go 2933 Mhz RDIMM
+ 320.00 €
Ajout d'une barette de 16Go 2933 Mhz RDIMM
+ 160.00 €
Ajout d'une barette de 8Go 2667 Mhz RDIMM
+ 80.00 €
Ajout d'une barette de 128Go 2667 Mhz LRDIMM
+ 3050.00 €
Optane DC Persistent Memory - 128Go 2666Mhz
+ 460.00 €
Configuration du châssis
Châssis 2.5" jusqu'à 8 disques durs
0.00 €
Châssis 2.5" jusqu'à 8 disques durs
0.00 €
Passage au châssis 2,5" pour maximum 24 disques Hot Plugs
+ 350.00 €
Passage à châssis 2,5" pour maximum 12 disques durs Hot plugs et 12 disques PCIe SSD NVMe - Au moins 1 disque obligatoire
+ 1197.00 €
Contrôleur RAID
PERC H330+ RAID Controller, Adapter, Full Height
0.00 €
PERC H330+ RAID Controller, Adapter, Full Height
0.00 €
Passage à carte RAID H740p avec 8 Go NV Cache
+ 319.00 €
Disques durs (Passage)
2 disques durs 600 Go 10k tr/mn SAS [400-ASGS x 2]
0.00 €
2 disques durs 600 Go 10k tr/mn SAS [400-ASGS x 2]
0.00 €
Retrait des disques de base (2x600Go 10K SAS 2.5'')
-260.00 €
Disques M.2 (BOSS)
0.00 €
BOSS controller card + with 2 M.2 Sticks 480GB (No RAID),FH
+ 683.00 €
BOSS controller card + with 1 M.2 Sticks 480GB (No RAID),FH
+ 389.00 €
BOSS controller card + with 2 M.2 Sticks 240G (No RAID),FH
+ 364.00 €
BOSS controller card + with 1 M.2 Sticks 240G (No RAID),FH
+ 219.00 €
Disques durs additionnels
VEUILLEZ SAISIR ICI VOS DISQUES ADDITIONNELS EN TENANT COMPTE DES LIMITES IMPOSEES PAR LE CHASSIS CHOISI
0.00 €
VEUILLEZ SAISIR ICI VOS DISQUES ADDITIONNELS EN TENANT COMPTE DES LIMITES IMPOSEES PAR LE CHASSIS CHOISI
0.00 €
Ajout d'un disque dur 400 Go SSD SAS Write Intensive - TOSHIBA PM5-M 2,5" - 10DWPD - 7300TBW
+ 700.00 €
Ajout d'un disque dur 480 Go SSD SAS Mix Use - TOSHIBA PM5-V 2,5" - 3DWPD - 2628TBW
+ 489.00 €
Ajout d'un disque dur 3.84To SSD SAS Mix Use - TOSHIBA PM5-V 2,5" - 3DWPD - 21024TBW
+ 2100.00 €
Ajout d'un disque dur 480 Go SSD SATA Read Intensive - 2.5" - 1DWPD - 876TBW
+ 175.00 €
Ajout d'un disque dur 480 Go SSD SATA Mix Use - 2.5" - 3DWPD - 2628TBW
+ 230.00 €
Ajout d'un disque dur 800 Go SSD SAS Mix Use - 2.5'' - 3DWPD - 4360TBW
+ 450.00 €
Ajout d'un disque dur 960 Go SSD SATA Read Intensive - 2.5" - 1DWPD - 1752TBW
+ 330.00 €
Ajout d'un disque dur 960 Go SSD SATA Mix Use - 2.5" - 3DWPD - 5256TBW
+ 430.00 €
Ajout d'un disque dur 960 Go SSD SAS Read Intensive - 2,5" - 1DWPD - 1752TBW
+ 500.00 €
Ajout d'un disque dur 1.6 To SSD SAS Mix Use - 2,5" - 3DWPD - 8760TBW
+ 800.00 €
Ajout d'un disque dur 1.92 To SSD SATA Read Intensive - 2.5" - 1DWPD - 3504TBW
+ 600.00 €
Ajout d'un disque dur 1.92 To SSD SATA Mix Use - 2.5" - 3DWPD - 10512TBW
+ 850.00 €
Ajout d'un disque dur 1.92 To SSD SAS Read Intensive - 2,5" - 1DWPD - 3504TBW
+ 780.00 €
Ajout d'un disque dur 3.84 To SSD SATA Read Intensive - 2.5" - 1DWPD - 7008TBW
+ 1250.00 €
Ajout d'un disque dur 3.84 To SSD SAS Read Intensive - 2,5" - 1DWPD - 7008TBW
+ 1550.00 €
Ajout d'un disque dur 300 Go SAS 15k Tpm 2,5" - hotplug
+ 150.00 €
Ajout d'un disque dur 600 Go SAS 10k Tpm 2,5" - hotplug
+ 130.00 €
Ajout d'un disque dur 600 Go SAS 15k Tpm 2,5" - hotplug
+ 180.00 €
Ajout d'un disque dur 900 Go SAS 15k Tpm 2,5" - hotplug
+ 280.00 €
Ajout d'un disque dur 1,2 To SAS 10k Tpm 2,5" - hotplug
+ 165.00 €
Ajout d'un disque dur 1,2 To SAS 10k Tpm 2,5" - SED FIPS140-2 - hotplug
+ 185.00 €
Ajout d'un disque dur 1,8 To SAS 10k Tpm 2,5" - hotplug
+ 240.00 €
Ajout d'un disque dur 2.4 To SAS 10k Tpm 2,5" - hotplug
+ 350.00 €
Ajout d'un disque dur 1.6 To SSD SAS Write Intensive - TOSHIBA PM5-M 2,5" - 10DWPD - 29200TBW
+ 1800.00 €
Ajout d'un disque dur 800 Go SSD SAS Write Intensive - TOSHIBA PM5-M 2,5" - 10DWPD - 14600TBW
+ 1200.00 €
Ajout d'un disque dur 240 Go SSD SATA Mix Use - INTEL S4610 2.5" - 3DWPD - 1314TBW
+ 170.00 €
Module SD interne
0.00 €
Ajout de 2 cartes SD (MicroSDHC/SDXC) de 16Go redondantes pour hyperviseur
+ 50.00 €
Ajout de 2 cartes SD (MicroSDHC/SDXC) de 32Go redondantes pour hyperviseur
+ 95.00 €
Ajout de 2 cartes SD (MicroSDHC/SDXC) de 64Go redondantes pour hyperviseur
+ 219.00 €
Disques NVME
0.00 €
Ajout d'un disque NVME 2.5'' INTEL P4510 1 To Read Intensive
+ 460.00 €
Ajout d'un disque NVME 2.5'' INTEL P4610 3.2 To Mix Use
+ 2200.00 €
Ajout d'un disque NVME 2.5'' INTEL P4610 6.4 To Mix Use
+ 4400.00 €
Ajout d'un disque NVME 2.5'' Samsung PM1725 1.6 To Mix Use
+ 1100.00 €
Ajout d'un disque NVME 2.5'' Samsung PM1725 3.2 To Mix Use
+ 2200.00 €
Ajout d'un disque NVME 2.5'' Samsung PM1725 6.4 To Mix Use
+ 4400.00 €
Cartes réseau intégrées
Intel Ethernet I350 QP 1Gb Network Daughter Card
0.00 €
Passage à carte réseau Broadcom 57414 2 ports 25Gb SFP28
+ 290.00 €
Passage à carte réseau Broadcom 57416 2 ports 10Gb Base-T et Broadcom 5720 2 ports 1Gb Base-T
+ 140.00 €
Passage à carte réseau Broadcom 57412 2 ports 10Gb SFP+ et Broadcom 5720 2 ports 1Gb Base-T
+ 140.00 €
Passage à carte réseau Intel X710 quatre ports 10 GB SFP+
+ 330.00 €
Passage à carte réseau Intel X710 double ports 10 GB SFP+ et i350 double ports gigabit
+ 259.00 €
Passage à carte réseau Intel X550 quatre ports 10 GB Base-T
+ 290.00 €
Passage à carte réseau Intel X550 double ports 10 GB Base-T et i350 double ports gigabit
+ 145.00 €
Intel Ethernet I350 QP 1Gb Network Daughter Card
0.00 €
Passage à carte réseau Mellanox Connect-X 4 Dual Ports 25Gbits SFP
+ 314.00 €
Passage carte réseau QLogic 41164 Quad Ports 10GbE SFP+
+ 210.00 €
Passage carte réseau QLogic 41164 Quad Ports 10GbE Base-T
+ 254.00 €
Passage carte réseau QLogic 41262 Dual Ports 25GbE SFP28
+ 160.00 €
Passage carte réseau QLogic 41162 Dual Ports 10GbE Base-T et Dual ports 1G RJ45
+ 154.00 €
Passage carte réseau QLogic 41264 Dual Ports 10GbE SFP+ et Dual ports 1G RJ45
+ 140.00 €
Adaptateur de bus hôte/Carte réseau convergé
0.00 €
Ajout carte HBA FC Emulex LPE 31002-M6 double port 16 Gb
+ 654.00 €
Ajout carte HBA FC Emulex LPE 31000-M6 mono port 16 Gb
+ 449.00 €
Ajout carte HBA FC Emulex LPE 12002 double port 8 Gb
+ 449.00 €
Ajout carte HBA FC Emulex LPE 12000 mono port 8 Gb
+ 322.00 €
Ajout carte HBA FC Qlogic 2742 double port 32Gb
+ 1137.00 €
Ajout carte HBA FC Qlogic 2692 double port 16Gb
+ 650.00 €
Ajout carte HBA FC Qlogic 2690 mono port 16Gb
+ 439.00 €
Ajout carte HBA FC Qlogic 2562 double port 8Gb
+ 389.00 €
Ajout carte HBA FC Qlogic 2560 mono port 8Gb
+ 276.00 €
Cartes PCIe supplémentaires
0.00 €
Ajout carte SAS 12Gb/s HBA Externe 2 ports
+ 85.00 €
Carte réseau supplémentaire
0.00 €
Ajout carte QLogic 41112 Dual Port 10GbE Base-T
+ 190.00 €
Ajout carte QLogic 41262 Dual Port 25GbE SFP28
+ 205.00 €
Ajout carte QLogic 41112 Dual Port 10GbE SFP+
+ 180.00 €
Ajout carte Broadcom 57414 25G SFP Dual Ports
+ 205.00 €
Ajout carte Broadcom 57416 10G Base-T Dual Ports
+ 190.00 €
Ajout carte Broadcom 57412 10G SFP+ Dual Ports
+ 180.00 €
Ajout carte réseau Broadcom 5719 quatre ports gigabit
+ 66.00 €
Ajout carte réseau Broadcom 5720 deux ports gigabit
+ 48.00 €
Ajout carte réseau Intel X710 quatre ports 10 GB Base-T
+ 394.00 €
Ajout carte réseau Intel X710 deux ports 10 GB SFP+
+ 290.00 €
Ajout carte réseau Intel X550 deux ports 10 Gb Base-T
+ 200.00 €
Ajout carte réseau Intel I350 quatre ports gigabit
+ 141.00 €
Ajout carte réseau Intel I350 deux ports gigabit
+ 65.00 €
Intel® Omni-Path Host Fabric Interface Adapter 100 Series 1 Port PCIe x16
+ 410.00 €
Carte Mellanox ConnectX-5 Simple Port EDR VPI QSFP28
+ 704.00 €
Ajout carte Mellanox ConnectX-4 Lx Dual Port 25Gb SFP28
+ 259.00 €
Ajout carte réseau Intel XXV710 deux ports 25 Gb SFP28
+ 284.00 €
ConnectX-4 VPI adapter card, EDR IB (100Gb/s), Double-port SFP28
+ 1247.00 €
Dispositifs optiques
0.00 €
Dell Networking Câble Direct Attach Twinaxial SFP28 (25G) DELL 3 mètres
+ 105.00 €
Dispositifs optiques Mellanox
0.00 €
Ajout Transceiver 10 Gb SR SFP+ pour les cartes 10 Gb Mellanox
+ 105.00 €
Ajout Transceiver 10 Gb SR SFP+ pour les cartes 10 Gb Intel
+ 90.00 €
Dell Networking Câble Direct Attach Twinaxial SFP+ DELL 3 mètres
+ 25.00 €
Options & dispositifs optiques divers
0.00 €
Ajout carte RAID H840 8Go Nvram avec sortie externe pour connexion à baie Powervault MD1400
+ 350.00 €
Ajout Transceiver 10 Gb SR SFP+ pour les cartes 10 Gb Broadcom et Qlogic
+ 90.00 €
Ajout Transceiver 25 Gb SR SFP+ pour les cartes 25 Gb Broadcom, Qlogic, Intel et Mellanox
+ 368.00 €
Carte d'administration à distance
iDRAC9 Express
0.00 €
iDRAC9 Express
0.00 €
Passage à carte iDRAC 9 Enterprise
+ 17.00 €
Carte d'administration à distance
iDRAC Group Manager désactivé
0.00 €
Activation d'iDRAC9 Group Manager
0.00 €
iDRAC Group Manager désactivé
0.00 €
Carte d'administration à distance (autre)
Mot de passe iDRAC9 Classique
0.00 €
Mot de passe iDRAC9 Aléatoire
0.00 €
Mot de passe iDRAC9 Classique
0.00 €
Carte d'administration à distance (autre)
0.00 €
Passage à carte iDRAC 9 Enterprise avec carte SD Vflash 16 GB
+ 68.00 €
Alimentations (Passage)
Bloc d’alimentation, Simple, Hotplug, (1+0), 1100W
0.00 €
Bloc d’alimentation, Simple, Hotplug, (1+0), 1100W
0.00 €
Passage à double alimentation redondante 1100W Platinium (1+1)
+ 95.00 €
Passage à mono alimentation non redondante 1600W Platinium (1+0)
+ 50.00 €
Passage à double alimentation redondante 1600W Platinium (1+1)
+ 165.00 €
Passage à mono alimentation non redondante 2000W (C19/C20) Platinium ( 1+0)
+ 70.00 €
Passage à double alimentation redondante 2000W (C19/C20) Platinium (1+1)
+ 219.00 €
Passage à double alimentation redondante 2400W (C19/C20) Platinium (1+1)
+ 379.00 €
Rails pour rack
Sans rails de rack ni bras de gestion des câbles
0.00 €
Rails coulissant Ready rails sans bras de management de cables, pour rack 4 montants
+ 50.00 €
Rails coulissant Ready rails avec bras de management de cables, pour rack 4 montants
+ 75.00 €
Sans rails de rack ni bras de gestion des câbles
0.00 €
Cadre
Sans bordure
0.00 €
Sans bordure
0.00 €
Panneau avant métallique façade et écran LCD
+ 50.00 €
Panneau Quick Sync
Sans Quick Sync
0.00 €
Sans Quick Sync
0.00 €
Module Quick Sync (Bluetooth/Wifi)
+ 80.00 €
Cordons d'alimentation
Cordons d'alimentation style PDU 2M (C13/C14 10A)
0.00 €
Passage de câble d'alimentation de 2m à 0,6m
0.00 €
Cordons d'alimentation style PDU 2M (C13/C14 10A)
0.00 €
Passage de câble d'alimentation de 2m à 4m
0.00 €
Extensions de garanties
+ProSupport 5 ans, intervention sur site J+1: support professionnel de +niveau 2 comprenant assistance matériel et logiciel, 24H/24, 7j/7
0.00 €
ProSupport + 5 ans, intervention sur site J+1: support professionnel de niveau 2 +comprenant assistance matériel et logiciel, 24H/24, 7j/7
0.00 €
Extension de garantie 5 ans intervention H+4 (24h/24h, 7j/7j) DELL Prosupport
+ 690.00 €
Extension de garantie 7 ans intervention J+1 (heures ouvrées, jours ouvrés) DELL Prosupport
+ 630.00 €
Extension de garantie 7 ans intervention H+4 (24h/24h, 7j/7j) DELL Prosupport
+ 1890.00 €
Livraison supplementaire
Delivery Plus Flag
0.00 €
Regulatory
PowerEdge R940 CE,CCC,BIS Marking
0.00 €
PowerEdge R940 CE,CCC,BIS Marking
0.00 €
Prix3784.00 €
Options0.00 €
Total3784.00 €
+
+ + + + + +
Besoin d'aide ?
+ + + +
+ +
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file