<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://icstaging.mywikis.net/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Skaestle</id>
	<title>Internet Computer Wiki Staging - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://icstaging.mywikis.net/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Skaestle"/>
	<link rel="alternate" type="text/html" href="https://icstaging.mywikis.net/wiki/Special:Contributions/Skaestle"/>
	<updated>2026-04-20T00:08:05Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.17</generator>
	<entry>
		<id>https://icstaging.mywikis.net/w/index.php?title=Internet_Computer_performance&amp;diff=421</id>
		<title>Internet Computer performance</title>
		<link rel="alternate" type="text/html" href="https://icstaging.mywikis.net/w/index.php?title=Internet_Computer_performance&amp;diff=421"/>
		<updated>2021-11-10T13:06:01Z</updated>

		<summary type="html">&lt;p&gt;Skaestle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This post describes the DFINITY foundation&#039;s performance evaluation of the Internet computer. &lt;br /&gt;
We will periodically update the numbers in this article to reflect improvements we will achieve over time.&lt;br /&gt;
&lt;br /&gt;
Scalability of the Internet Computer comes from partitioning the IC into subnetworks.&lt;br /&gt;
&lt;br /&gt;
Subnetworks process update calls from Ingress messages independently from other subnetworks. They can scale up by adding more subnetworks at the cost of having more network traffic (as applications then need to potentially communicate across subnetworks). In its current form, the IC should be able to scale out to hundreds of subnetworks.&lt;br /&gt;
&lt;br /&gt;
Query calls are read-only calls that are processed locally on each node. Scalability comes from adding more nodes, either to an existing subnetwork (at the cost of making consensus i.e. update calls more expensive) or as new subnetworks.&lt;br /&gt;
&lt;br /&gt;
== Test setup ==&lt;br /&gt;
&lt;br /&gt;
We are running all of our experiments concurrently against all subnetworks other than the NNS and some of the most utilized application subnetworks to avoid disturbance of active IC users. &lt;br /&gt;
We send load against those subnetworks directly and are not using boundary nodes for those experiments. Boundary nodes have additional rate limiting which is currently set slightly more conservative compared to what the IC can handle and running against them therefore is unsuitable for performance evaluation. &lt;br /&gt;
We are targeting all nodes in each subnetwork concurrently, much the same as what boundary nodes would be doing if we would use them.&lt;br /&gt;
&lt;br /&gt;
We have installed one counter canister in each subnetwork. This counter canister is essentially a no-op canister. It only maintains a counter, which can be queries via a query call and incremented via update call. The counter value is not using orthogonal persistence, so the overhead for the execution layer of the IC is minimal. Stressing the counter canister can be seen as a way to determine the system overhead or baseline performance.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Measurements ==&lt;br /&gt;
=== Update calls ===&lt;br /&gt;
&lt;br /&gt;
The Internet Computer can currently sustain more than 11000 updates/second for a period of four minutes, with peaks over 11500 updates/second.&lt;br /&gt;
&lt;br /&gt;
The update calls we have been measuring here are triggered from Ingress messages sent from outside the IC.&lt;br /&gt;
&lt;br /&gt;
[[File:update-call-performance.png|1024px|Update Call Performance]]&lt;br /&gt;
&lt;br /&gt;
=== Query calls ===&lt;br /&gt;
Arguably more important are query calls, since they contribute with more than 90% of the traffic we are observing on the IC.&lt;br /&gt;
&lt;br /&gt;
[[File:query-call-performance.png|1024px|Query Call Performance]]&lt;br /&gt;
&lt;br /&gt;
The Internet Computer can currently process up to 250,000 queries per second.&lt;br /&gt;
During our experiments, we increment the load incrementally and run each load for a period of 5 minutes.&lt;br /&gt;
&lt;br /&gt;
== Conclusion and next steps ==&lt;br /&gt;
&lt;br /&gt;
The Internet Computer today already shows impressive performance. On top of that, it should be possible to further scale out the IC by:&lt;br /&gt;
&lt;br /&gt;
* More subnetworks: This will immediate increase the query and update throughput. While adding subnetworks might eventually lead to other scalability problems, the IC in its current shape should be able to support hundreds of subnetworks.&lt;br /&gt;
* Performance improvements: Performance can also be improved by better single machine, network and consensus performance tuning. Increasing the performance by at least an order of magnitude should be possible.&lt;/div&gt;</summary>
		<author><name>Skaestle</name></author>
	</entry>
	<entry>
		<id>https://icstaging.mywikis.net/w/index.php?title=Internet_Computer_performance&amp;diff=420</id>
		<title>Internet Computer performance</title>
		<link rel="alternate" type="text/html" href="https://icstaging.mywikis.net/w/index.php?title=Internet_Computer_performance&amp;diff=420"/>
		<updated>2021-11-10T09:53:51Z</updated>

		<summary type="html">&lt;p&gt;Skaestle: /* Update calls */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This post describes our performance evaluation of the Internet computer. &lt;br /&gt;
&lt;br /&gt;
Scalability of the Internet Computer comes from partitioning the IC into subnetworks.&lt;br /&gt;
&lt;br /&gt;
Subnetworks process update calls from Ingress messages independently from other subnetworks. They can scale up by adding more subnetworks, which is at the cost of having more network traffic (as applications then need to potentially communicate across a network). In its current form, the IC should be able to scale out to hundreds of subnetworks.&lt;br /&gt;
&lt;br /&gt;
Query calls are read-only calls that are processed locally on each node. Scalability comes from adding more nodes, either to an existing subnetwork (at the cost of making consensus i.e. update calls more expensive) or as new subnetworks.&lt;br /&gt;
&lt;br /&gt;
We will periodically update the numbers in this article to reflect improvements we will achieve over time.&lt;br /&gt;
&lt;br /&gt;
== Test setup ==&lt;br /&gt;
&lt;br /&gt;
We are running all of our experiments concurrently against all subnetworks other than the NNS and some of the most utilized application subnetworks to avoid disturbance of active IC users. &lt;br /&gt;
We send load against those subnetworks directly and are not using boundary nodes for those experiments. Boundary nodes have additional rate limiting which is currently set slightly more conservative compared to what the IC can handle and running against them therefore is unsuitable for performance evaluation. &lt;br /&gt;
We are targeting all nodes in each subnetwork concurrently, much the same as what boundary nodes would be doing if we would use them.&lt;br /&gt;
&lt;br /&gt;
We have installed one counter canister in each subnetwork. This counter canister is essentially a no-op canister. It only maintains a counter, which can be queries via a query call and incremented via update call. The counter value is not using orthogonal persistence, so the overhead for the execution layer of the IC is minimal. Stressing the counter canister can be seen as a way to determine the system overhead or baseline performance.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Measurements ==&lt;br /&gt;
=== Update calls ===&lt;br /&gt;
&lt;br /&gt;
The Internet Computer can currently sustain more than 11000 updates/second for a period of four minutes, with peaks over 11500 updates/second.&lt;br /&gt;
&lt;br /&gt;
The update calls we have been measuring here are triggered from Ingress messages sent from outside the IC.&lt;br /&gt;
&lt;br /&gt;
[[File:update-call-performance.png|1024px|Update Call Performance]]&lt;br /&gt;
&lt;br /&gt;
=== Query calls ===&lt;br /&gt;
Arguably more important are query calls, since they contribute with more than 90% of the traffic we are observing on the IC.&lt;br /&gt;
&lt;br /&gt;
[[File:query-call-performance.png|1024px|Query Call Performance]]&lt;br /&gt;
&lt;br /&gt;
The Internet Computer can currently process up to 250,000 queries per second.&lt;br /&gt;
During our experiments, we increment the load incrementally and run each load for a period of 5 minutes.&lt;br /&gt;
&lt;br /&gt;
== Conclusion and next steps ==&lt;br /&gt;
&lt;br /&gt;
The Internet Computer today already shows impressive performance. On top of that, it should be possible to further scale out the IC by:&lt;br /&gt;
&lt;br /&gt;
* More subnetworks: This will immediate increase the query and update throughput. While adding subnetworks might eventually lead to other scalability problems, the IC in its current shape should be able to support hundreds of subnetworks.&lt;br /&gt;
* Performance improvements: Performance can also be improved by better single machine, network and consensus performance tuning. Increasing the performance by at least an order of magnitude should be possible.&lt;/div&gt;</summary>
		<author><name>Skaestle</name></author>
	</entry>
	<entry>
		<id>https://icstaging.mywikis.net/w/index.php?title=Internet_Computer_performance&amp;diff=419</id>
		<title>Internet Computer performance</title>
		<link rel="alternate" type="text/html" href="https://icstaging.mywikis.net/w/index.php?title=Internet_Computer_performance&amp;diff=419"/>
		<updated>2021-11-10T09:40:06Z</updated>

		<summary type="html">&lt;p&gt;Skaestle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This post describes our performance evaluation of the Internet computer. &lt;br /&gt;
&lt;br /&gt;
Scalability of the Internet Computer comes from partitioning the IC into subnetworks.&lt;br /&gt;
&lt;br /&gt;
Subnetworks process update calls from Ingress messages independently from other subnetworks. They can scale up by adding more subnetworks, which is at the cost of having more network traffic (as applications then need to potentially communicate across a network). In its current form, the IC should be able to scale out to hundreds of subnetworks.&lt;br /&gt;
&lt;br /&gt;
Query calls are read-only calls that are processed locally on each node. Scalability comes from adding more nodes, either to an existing subnetwork (at the cost of making consensus i.e. update calls more expensive) or as new subnetworks.&lt;br /&gt;
&lt;br /&gt;
We will periodically update the numbers in this article to reflect improvements we will achieve over time.&lt;br /&gt;
&lt;br /&gt;
== Test setup ==&lt;br /&gt;
&lt;br /&gt;
We are running all of our experiments concurrently against all subnetworks other than the NNS and some of the most utilized application subnetworks to avoid disturbance of active IC users. &lt;br /&gt;
We send load against those subnetworks directly and are not using boundary nodes for those experiments. Boundary nodes have additional rate limiting which is currently set slightly more conservative compared to what the IC can handle and running against them therefore is unsuitable for performance evaluation. &lt;br /&gt;
We are targeting all nodes in each subnetwork concurrently, much the same as what boundary nodes would be doing if we would use them.&lt;br /&gt;
&lt;br /&gt;
We have installed one counter canister in each subnetwork. This counter canister is essentially a no-op canister. It only maintains a counter, which can be queries via a query call and incremented via update call. The counter value is not using orthogonal persistence, so the overhead for the execution layer of the IC is minimal. Stressing the counter canister can be seen as a way to determine the system overhead or baseline performance.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Measurements ==&lt;br /&gt;
=== Update calls ===&lt;br /&gt;
&lt;br /&gt;
The Internet Computer can currently sustain more than 11000 updates/second for a period of four minutes, with peaks over 11500 updates/second.&lt;br /&gt;
&lt;br /&gt;
[[File:update-call-performance.png|1024px|Update Call Performance]]&lt;br /&gt;
&lt;br /&gt;
=== Query calls ===&lt;br /&gt;
Arguably more important are query calls, since they contribute with more than 90% of the traffic we are observing on the IC.&lt;br /&gt;
&lt;br /&gt;
[[File:query-call-performance.png|1024px|Query Call Performance]]&lt;br /&gt;
&lt;br /&gt;
The Internet Computer can currently process up to 250,000 queries per second.&lt;br /&gt;
During our experiments, we increment the load incrementally and run each load for a period of 5 minutes.&lt;br /&gt;
&lt;br /&gt;
== Conclusion and next steps ==&lt;br /&gt;
&lt;br /&gt;
The Internet Computer today already shows impressive performance. On top of that, it should be possible to further scale out the IC by:&lt;br /&gt;
&lt;br /&gt;
* More subnetworks: This will immediate increase the query and update throughput. While adding subnetworks might eventually lead to other scalability problems, the IC in its current shape should be able to support hundreds of subnetworks.&lt;br /&gt;
* Performance improvements: Performance can also be improved by better single machine, network and consensus performance tuning. Increasing the performance by at least an order of magnitude should be possible.&lt;/div&gt;</summary>
		<author><name>Skaestle</name></author>
	</entry>
	<entry>
		<id>https://icstaging.mywikis.net/w/index.php?title=Internet_Computer_performance&amp;diff=418</id>
		<title>Internet Computer performance</title>
		<link rel="alternate" type="text/html" href="https://icstaging.mywikis.net/w/index.php?title=Internet_Computer_performance&amp;diff=418"/>
		<updated>2021-11-10T09:24:07Z</updated>

		<summary type="html">&lt;p&gt;Skaestle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This post describes our performance evaluation of the Internet computer. &lt;br /&gt;
&lt;br /&gt;
Scalability of the Internet Computer comes from partitioning the IC into subnetworks.&lt;br /&gt;
&lt;br /&gt;
Subnetworks process update calls from Ingress messages independently from other subnetworks. They can scale up by adding more subnetworks, which is at the cost of having more network traffic (as applications then need to potentially communicate across a network). In its current form, the IC should be able to scale out to hundreds of subnetworks.&lt;br /&gt;
&lt;br /&gt;
Query calls are read-only calls that are processed locally on each node. Scalability comes from adding more nodes, either to an existing subnetwork (at the cost of making consensus i.e. update calls more expensive) or as new subnetworks.&lt;br /&gt;
&lt;br /&gt;
We will periodically update the numbers in this article to reflect improvements we will achieve over time.&lt;br /&gt;
&lt;br /&gt;
== Test setup ==&lt;br /&gt;
&lt;br /&gt;
We are running all of our experiments concurrently against all subnetworks other than the NNS and some of the most utilized application subnetworks to avoid disturbance of active IC users. &lt;br /&gt;
We send load against those subnetworks directly and are not using boundary nodes for those experiments. Boundary nodes have additional rate limiting which is currently set slightly more conservative compared to what the IC can handle and running against them therefore is unsuitable for performance evaluation. &lt;br /&gt;
We are targeting all nodes in each subnetwork concurrently, much the same as what boundary nodes would be doing if we would use them.&lt;br /&gt;
&lt;br /&gt;
We have installed one counter canister in each subnetwork. This counter canister is essentially a no-op canister. It only maintains a counter, which can be queries via a query call and incremented via update call. The counter value is not using orthogonal persistence, so the overhead for the execution layer of the IC is minimal. Stressing the counter canister can be seen as a way to determine the system overhead or baseline performance.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Measurements ==&lt;br /&gt;
=== Update calls ===&lt;br /&gt;
&lt;br /&gt;
The Internet Computer can currently sustain more than 11000 updates/second for a period of four minutes, with peaks over 11500 updates/second.&lt;br /&gt;
&lt;br /&gt;
[[File:update-call-performance.png|1024px|Update Call Performance]]&lt;br /&gt;
&lt;br /&gt;
=== Query calls ===&lt;br /&gt;
Arguably more important are query calls, since they contribute with more than 90% of the traffic we are observing on the IC.&lt;br /&gt;
&lt;br /&gt;
[[File:query-call-performance.png|1024px|Query Call Performance]]&lt;br /&gt;
&lt;br /&gt;
The Internet Computer can currently process up to 250,000 queries per second.&lt;br /&gt;
We are working on several improvements to those numbers that should improve the query performance by at least one order of magnitude.&lt;br /&gt;
During our experiments, we increment the load incrementally and run each load for a period of 5 minutes.&lt;/div&gt;</summary>
		<author><name>Skaestle</name></author>
	</entry>
	<entry>
		<id>https://icstaging.mywikis.net/w/index.php?title=Internet_Computer_performance&amp;diff=281</id>
		<title>Internet Computer performance</title>
		<link rel="alternate" type="text/html" href="https://icstaging.mywikis.net/w/index.php?title=Internet_Computer_performance&amp;diff=281"/>
		<updated>2021-11-09T17:39:20Z</updated>

		<summary type="html">&lt;p&gt;Skaestle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This post describes our performance evaluation of the Internet computer. &lt;br /&gt;
&lt;br /&gt;
Scalability Internet Computer comes from partitioning the IC into subnetworks.&lt;br /&gt;
&lt;br /&gt;
Subnetworks process update calls from Ingress messages independently from other subnetworks. They can scale up by adding more subnetworks, which is at the cost of having more network traffic (as applications then need to potentially communicate across a network). In its current form, the IC should be able to scale out to hundreds of subnetworks.&lt;br /&gt;
&lt;br /&gt;
Query calls are read-only calls that are processed locally on each node. Scalability comes from adding more nodes, either to an existing subnetwork (at the cost of making consensus i.e. update calls more expensive) or as new subnetworks.&lt;br /&gt;
&lt;br /&gt;
We will periodically update the numbers in this article to reflect improvements we will achieve over time.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Measurements ==&lt;br /&gt;
=== Update calls ===&lt;br /&gt;
&lt;br /&gt;
The Internet Computer can currently sustain more than 11000 updates/second for a period of four minutes, with peaks over 11500 updates/second.&lt;br /&gt;
&lt;br /&gt;
[[File:update-call-performance.png|1024px|Update Call Performance]]&lt;br /&gt;
&lt;br /&gt;
=== Query calls ===&lt;br /&gt;
Arguably more important are query calls, since they contribute with more than 90% of the traffic we are observing on the IC.&lt;br /&gt;
&lt;br /&gt;
[[File:query-call-performance.png|1024px|Query Call Performance]]&lt;br /&gt;
&lt;br /&gt;
The Internet Computer can currently process up to 250’000 queries per second.&lt;br /&gt;
We are working on several improvements to those numbers that should improve the query performance by at least on order of magnitude.&lt;br /&gt;
During our experiments, we increment the load incrementally and run each load for a period of 5 minutes.&lt;/div&gt;</summary>
		<author><name>Skaestle</name></author>
	</entry>
	<entry>
		<id>https://icstaging.mywikis.net/w/index.php?title=Internet_Computer_performance&amp;diff=280</id>
		<title>Internet Computer performance</title>
		<link rel="alternate" type="text/html" href="https://icstaging.mywikis.net/w/index.php?title=Internet_Computer_performance&amp;diff=280"/>
		<updated>2021-11-09T17:37:15Z</updated>

		<summary type="html">&lt;p&gt;Skaestle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Measurements ==&lt;br /&gt;
=== Update calls ===&lt;br /&gt;
&lt;br /&gt;
The Internet Computer can currently sustain more than 11000 updates/second for a period of four minutes, with peaks over 11500 updates/second.&lt;br /&gt;
&lt;br /&gt;
[[File:update-call-performance.png|1024px|Update Call Performance]]&lt;br /&gt;
&lt;br /&gt;
=== Query calls ===&lt;br /&gt;
Arguably more important are query calls, since they contribute with more than 90% of the traffic we are observing on the IC.&lt;br /&gt;
&lt;br /&gt;
[[File:query-call-performance.png|1024px|Query Call Performance]]&lt;br /&gt;
&lt;br /&gt;
The Internet Computer can currently process up to 250’000 queries per second.&lt;br /&gt;
We are working on several improvements to those numbers that should improve the query performance by at least on order of magnitude.&lt;br /&gt;
During our experiments, we increment the load incrementally and run each load for a period of 5 minutes.&lt;/div&gt;</summary>
		<author><name>Skaestle</name></author>
	</entry>
	<entry>
		<id>https://icstaging.mywikis.net/w/index.php?title=Internet_Computer_performance&amp;diff=279</id>
		<title>Internet Computer performance</title>
		<link rel="alternate" type="text/html" href="https://icstaging.mywikis.net/w/index.php?title=Internet_Computer_performance&amp;diff=279"/>
		<updated>2021-11-09T17:33:54Z</updated>

		<summary type="html">&lt;p&gt;Skaestle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Measurements ==&lt;br /&gt;
=== Update calls ===&lt;br /&gt;
&lt;br /&gt;
The Internet Computer can currently sustain more than 11000 updates/second for a period of four minutes, with peaks over 11500 updates/second.&lt;br /&gt;
&lt;br /&gt;
[[File:update-call-performance.png|Update Call Performance]]&lt;br /&gt;
&lt;br /&gt;
=== Query calls ===&lt;br /&gt;
Arguably more important are query calls, since they contribute with more than 90% of the traffic we are observing on the IC.&lt;br /&gt;
&lt;br /&gt;
[[File:query-call-performance.png|Query Call Performance]]&lt;br /&gt;
&lt;br /&gt;
The Internet Computer can currently process up to 250’000 queries per second.&lt;br /&gt;
We are working on several improvements to those numbers that should improve the query performance by at least on order of magnitude.&lt;br /&gt;
During our experiments, we increment the load incrementally and run each load for a period of 5 minutes.&lt;/div&gt;</summary>
		<author><name>Skaestle</name></author>
	</entry>
	<entry>
		<id>https://icstaging.mywikis.net/w/index.php?title=File:Query-call-performance.png&amp;diff=278</id>
		<title>File:Query-call-performance.png</title>
		<link rel="alternate" type="text/html" href="https://icstaging.mywikis.net/w/index.php?title=File:Query-call-performance.png&amp;diff=278"/>
		<updated>2021-11-09T17:32:51Z</updated>

		<summary type="html">&lt;p&gt;Skaestle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Skaestle</name></author>
	</entry>
	<entry>
		<id>https://icstaging.mywikis.net/w/index.php?title=File:Update-call-performance.png&amp;diff=277</id>
		<title>File:Update-call-performance.png</title>
		<link rel="alternate" type="text/html" href="https://icstaging.mywikis.net/w/index.php?title=File:Update-call-performance.png&amp;diff=277"/>
		<updated>2021-11-09T17:32:31Z</updated>

		<summary type="html">&lt;p&gt;Skaestle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Skaestle</name></author>
	</entry>
	<entry>
		<id>https://icstaging.mywikis.net/w/index.php?title=Internet_Computer_performance&amp;diff=276</id>
		<title>Internet Computer performance</title>
		<link rel="alternate" type="text/html" href="https://icstaging.mywikis.net/w/index.php?title=Internet_Computer_performance&amp;diff=276"/>
		<updated>2021-11-09T17:31:39Z</updated>

		<summary type="html">&lt;p&gt;Skaestle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Measurements ==&lt;br /&gt;
=== Update calls ===&lt;br /&gt;
&lt;br /&gt;
The Internet Computer can currently sustain more than 11000 updates/second for a period of four minutes, with peaks over 11500 updates/second.&lt;br /&gt;
&lt;br /&gt;
=== Query calls ===&lt;br /&gt;
Arguably more important are query calls, since they contribute with more than 90% of the traffic we are observing on the IC.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Internet Computer can currently process up to 250’000 queries per second.&lt;br /&gt;
We are working on several improvements to those numbers that should improve the query performance by at least on order of magnitude.&lt;br /&gt;
During our experiments, we increment the load incrementally and run each load for a period of 5 minutes.&lt;/div&gt;</summary>
		<author><name>Skaestle</name></author>
	</entry>
	<entry>
		<id>https://icstaging.mywikis.net/w/index.php?title=Internet_Computer_performance&amp;diff=275</id>
		<title>Internet Computer performance</title>
		<link rel="alternate" type="text/html" href="https://icstaging.mywikis.net/w/index.php?title=Internet_Computer_performance&amp;diff=275"/>
		<updated>2021-11-09T17:31:02Z</updated>

		<summary type="html">&lt;p&gt;Skaestle: This page describes the performance of the Internet Computer.~&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Measurements ==&lt;br /&gt;
=== Update calls ===&lt;br /&gt;
&lt;br /&gt;
The internet computer can currently sustain more than 11000 updates/second for a period of four minutes, with peaks over 11500 updates/second.&lt;br /&gt;
&lt;br /&gt;
=== Query calls ===&lt;br /&gt;
Arguably more important are query calls, since they contribute with more than 90% of the traffic we are observing on the IC.&lt;br /&gt;
&lt;br /&gt;
The internet computer can currently process up to 250’000 queries per second.&lt;br /&gt;
We are working on several improvements to those numbers that should improve the query performance by at least on order of magnitude.&lt;br /&gt;
During our experiments, we increment the load incrementally and run each load for a period of 5 minutes.&lt;/div&gt;</summary>
		<author><name>Skaestle</name></author>
	</entry>
	<entry>
		<id>https://icstaging.mywikis.net/w/index.php?title=Internet_Computer_wiki&amp;diff=274</id>
		<title>Internet Computer wiki</title>
		<link rel="alternate" type="text/html" href="https://icstaging.mywikis.net/w/index.php?title=Internet_Computer_wiki&amp;diff=274"/>
		<updated>2021-11-09T17:29:24Z</updated>

		<summary type="html">&lt;p&gt;Skaestle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to the Internet Computer Wiki!&amp;lt;/strong&amp;gt; Feel free to join in. All are welcome!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Topics Central =&lt;br /&gt;
&lt;br /&gt;
* [[Internet computer]]&lt;br /&gt;
* [[Index of dapps on the Internet Computer]]&lt;br /&gt;
* [[ICP token]]&lt;br /&gt;
* [https://dashboard.internetcomputer.org/ Internet Computer dashboard] &lt;br /&gt;
* [[Internet Computer Performance]]&lt;br /&gt;
* [[DFINITY]]&lt;br /&gt;
&lt;br /&gt;
== For blockchain &amp;amp; crypto enthusiasts ==&lt;br /&gt;
* [[Myths and facts]]&lt;br /&gt;
* [[The cryptography behind the Internet Computer]]&lt;br /&gt;
* [https://www.reddit.com/r/dfinity/ r/dfinity]&lt;br /&gt;
* [[How to stake on the Internet computer]]&lt;br /&gt;
* [[Tokenomics of the Internet Computer]]&lt;br /&gt;
* [[Governance of the Internet Computer]]&lt;br /&gt;
&lt;br /&gt;
== For dapp developers ==&lt;br /&gt;
* [[Internet Computer for dapp developers]]&lt;br /&gt;
* [[Best practices for NFT drops]]&lt;br /&gt;
* [https://forum.dfinity.org/ IC community developer forum]&lt;br /&gt;
&lt;br /&gt;
== For computer scientists ==&lt;br /&gt;
* [[The Internet Computer for Computer Scientists]]&lt;br /&gt;
&lt;br /&gt;
== For node owners ==&lt;br /&gt;
* [[Internet Computer for node owners]]&lt;br /&gt;
&lt;br /&gt;
= FAQs =&lt;br /&gt;
&lt;br /&gt;
* [[FAQ]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Computer Scientists FAQ&#039;&#039;&#039;&lt;br /&gt;
* [[The Internet Computer for Computer Scientists]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Using the wiki ==&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
Use this page to test editing&lt;br /&gt;
* [[Test editing the Internet Computer Wiki]]&lt;/div&gt;</summary>
		<author><name>Skaestle</name></author>
	</entry>
</feed>