Erik Johnston 
							
						 
					 
					
						
						
						
						
							
						
						
							22f935ab7c 
							
						 
					 
					
						
						
							
							Merge pull request  #2159  from matrix-org/erikj/reduce_join_cache_size  
						
						... 
						
						
						
						Reduce size of joined_user cache 
						
						
					 
					
						2017-04-25 17:22:02 +01:00 
						 
				 
			
				
					
						
							
							
								Erik Johnston 
							
						 
					 
					
						
						
						
						
							
						
						
							9388eece2b 
							
						 
					 
					
						
						
							
							Merge pull request  #2149  from enckse/develop  
						
						... 
						
						
						
						setting up metrics, just adding/clarifying 2 very minor items 
						
						
					 
					
						2017-04-25 16:37:46 +01:00 
						 
				 
			
				
					
						
							
							
								Erik Johnston 
							
						 
					 
					
						
						
						
						
							
						
						
							acb58bfb6a 
							
						 
					 
					
						
						
							
							fix up  
						
						
						
						
					 
					
						2017-04-25 15:39:19 +01:00 
						 
				 
			
				
					
						
							
							
								Erik Johnston 
							
						 
					 
					
						
						
						
						
							
						
						
							f7181615f2 
							
						 
					 
					
						
						
							
							Don't specify default as dict  
						
						
						
						
					 
					
						2017-04-25 15:22:59 +01:00 
						 
				 
			
				
					
						
							
							
								Erik Johnston 
							
						 
					 
					
						
						
						
						
							
						
						
							f144365281 
							
						 
					 
					
						
						
							
							Comment  
						
						
						
						
					 
					
						2017-04-25 15:18:26 +01:00 
						 
				 
			
				
					
						
							
							
								Erik Johnston 
							
						 
					 
					
						
						
						
						
							
						
						
							d9aa645f86 
							
						 
					 
					
						
						
							
							Reduce size of joined_user cache  
						
						... 
						
						
						
						The _get_joined_users_from_context cache stores a mapping from user_id
to avatar_url and display_name. Instead of storing those in a dict,
store them in a namedtuple as that uses much less memory.
We also try converting the string to ascii to further reduce the size. 
						
						
					 
					
						2017-04-25 14:38:51 +01:00 
						 
				 
			
				
					
						
							
							
								Erik Johnston 
							
						 
					 
					
						
						
						
						
							
						
						
							22f3d3ae76 
							
						 
					 
					
						
						
							
							Reduce _get_state_group_for_event cache size  
						
						
						
						
					 
					
						2017-04-25 11:43:03 +01:00 
						 
				 
			
				
					
						
							
							
								Erik Johnston 
							
						 
					 
					
						
						
						
						
							
						
						
							b4da08cad8 
							
						 
					 
					
						
						
							
							Merge pull request  #2158  from matrix-org/erikj/reduce_cache_size  
						
						... 
						
						
						
						Reduce cache size by not storing deferreds 
						
						
					 
					
						2017-04-25 11:18:07 +01:00 
						 
				 
			
				
					
						
							
							
								Erik Johnston 
							
						 
					 
					
						
						
						
						
							
						
						
							efab1dadde 
							
						 
					 
					
						
						
							
							Remove DEBUG_CACHES  
						
						
						
						
					 
					
						2017-04-25 10:54:09 +01:00 
						 
				 
			
				
					
						
							
							
								Mark Haines 
							
						 
					 
					
						
						
						
						
							
						
						
							33d5134b59 
							
						 
					 
					
						
						
							
							Merge pull request  #2156  from matrix-org/markjh/old_verify_keys  
						
						... 
						
						
						
						Fix code for reporting old verify keys in synapse 
						
						
					 
					
						2017-04-25 10:44:25 +01:00 
						 
				 
			
				
					
						
							
							
								Erik Johnston 
							
						 
					 
					
						
						
						
						
							
						
						
							119cb9bbcf 
							
						 
					 
					
						
						
							
							Reduce cache size by not storing deferreds  
						
						... 
						
						
						
						Currently the cache descriptors store deferreds rather than raw values,
this is a simple way of triggering only one database hit and sharing the
result if two callers attempt to get the same value.
However, there are a few caches that simply store a mapping from string
to string (or int). These caches can have a large number of entries,
under the assumption that each entry is small. However, the size of a
deferred (specifically the size of ObservableDeferred) is signigicantly
larger than that of the raw value, 2kb vs 32b.
This PR therefore changes the cache descriptors to store the raw values
rather than the deferreds.
As a side effect cached storage function now either return a deferred or
the actual value, as the cached list decriptor already does. This is
fine as we always end up just yield'ing on the returned value
eventually, which handles that case correctly. 
						
						
					 
					
						2017-04-25 10:23:11 +01:00 
						 
				 
			
				
					
						
							
							
								Mark Haines 
							
						 
					 
					
						
						
						
						
							
						
						
							e6e2627636 
							
						 
					 
					
						
						
							
							Fix code for reporting old verify keys in synapse  
						
						
						
						
					 
					
						2017-04-24 18:51:25 +01:00 
						 
				 
			
				
					
						
							
							
								Richard van der Hoff 
							
						 
					 
					
						
						
						
						
							
						
						
							30f7bfa121 
							
						 
					 
					
						
						
							
							Merge pull request  #2145  from matrix-org/rav/reject_invite_to_unreachable_server  
						
						... 
						
						
						
						Fix rejection of invites to unreachable servers 
						
						
					 
					
						2017-04-24 15:20:52 +01:00 
						 
				 
			
				
					
						
							
							
								Erik Johnston 
							
						 
					 
					
						
						
						
						
							
						
						
							7af825bae4 
							
						 
					 
					
						
						
							
							Merge pull request  #2155  from matrix-org/erikj/string_intern  
						
						... 
						
						
						
						Only intern ascii strings 
						
						
					 
					
						2017-04-24 14:28:41 +01:00 
						 
				 
			
				
					
						
							
							
								Erik Johnston 
							
						 
					 
					
						
						
						
						
							
						
						
							26bcda31b8 
							
						 
					 
					
						
						
							
							Merge pull request  #2154  from matrix-org/erikj/remove_unused_cache  
						
						... 
						
						
						
						Remove unused cache 
						
						
					 
					
						2017-04-24 14:24:46 +01:00 
						 
				 
			
				
					
						
							
							
								Erik Johnston 
							
						 
					 
					
						
						
						
						
							
						
						
							d134d0935e 
							
						 
					 
					
						
						
							
							Only intern ascii strings  
						
						
						
						
					 
					
						2017-04-24 14:07:48 +01:00 
						 
				 
			
				
					
						
							
							
								Erik Johnston 
							
						 
					 
					
						
						
						
						
							
						
						
							e4f3431116 
							
						 
					 
					
						
						
							
							Remove unused cache  
						
						
						
						
					 
					
						2017-04-24 13:27:38 +01:00 
						 
				 
			
				
					
						
							
							
								David Baker 
							
						 
					 
					
						
						
						
						
							
						
						
							a46982cee9 
							
						 
					 
					
						
						
							
							Need the HTTP status code  
						
						
						
						
					 
					
						2017-04-21 16:20:12 +01:00 
						 
				 
			
				
					
						
							
							
								David Baker 
							
						 
					 
					
						
						
						
						
							
						
						
							70caf49914 
							
						 
					 
					
						
						
							
							Do the same for get_json  
						
						
						
						
					 
					
						2017-04-21 16:09:03 +01:00 
						 
				 
			
				
					
						
							
							
								Sean Enck 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							719aec4064 
							
						 
					 
					
						
						
							
							clarify metric setup to use 'scrape_configs' section of yaml and use an array for target  
						
						
						
						
					 
					
						2017-04-21 11:03:32 -04:00 
						 
				 
			
				
					
						
							
							
								Richard van der Hoff 
							
						 
					 
					
						
						
						
						
							
						
						
							cea7839911 
							
						 
					 
					
						
						
							
							Document some of the admin APIs ( #2143 )  
						
						... 
						
						
						
						I haven't (yet) documented all of the user-list APIs introduced in
https://github.com/matrix-org/synapse/pull/1784  because the API shape seems
very odd, given the functionality. 
						
						
					 
					
						2017-04-21 11:55:07 +01:00 
						 
				 
			
				
					
						
							
							
								David Baker 
							
						 
					 
					
						
						
						
						
							
						
						
							a1595cec78 
							
						 
					 
					
						
						
							
							Don't error for 3xx responses  
						
						
						
						
					 
					
						2017-04-21 11:51:17 +01:00 
						 
				 
			
				
					
						
							
							
								David Baker 
							
						 
					 
					
						
						
						
						
							
						
						
							2e165295b7 
							
						 
					 
					
						
						
							
							Merge remote-tracking branch 'origin/develop' into dbkr/http_request_propagate_error  
						
						
						
						
					 
					
						2017-04-21 11:35:52 +01:00 
						 
				 
			
				
					
						
							
							
								David Baker 
							
						 
					 
					
						
						
						
						
							
						
						
							a90a0f5c8a 
							
						 
					 
					
						
						
							
							Propagate errors sensibly from proxied IS requests  
						
						... 
						
						
						
						When we're proxying Matrix endpoints, parse out Matrix error
responses and turn them into SynapseErrors so they can be
propagated sensibly upstream. 
						
						
					 
					
						2017-04-21 11:32:48 +01:00 
						 
				 
			
				
					
						
							
							
								Richard van der Hoff 
							
						 
					 
					
						
						
						
						
							
						
						
							91b3981800 
							
						 
					 
					
						
						
							
							Try harder when sending leave events  
						
						... 
						
						
						
						When we're rejecting invites, ignore the backoff data, so that we have a better
chance of not getting the room out of sync. 
						
						
					 
					
						2017-04-21 01:50:36 +01:00 
						 
				 
			
				
					
						
							
							
								Richard van der Hoff 
							
						 
					 
					
						
						
						
						
							
						
						
							0cdb32fc43 
							
						 
					 
					
						
						
							
							Remove redundant try/except clauses  
						
						... 
						
						
						
						The `except SynapseError` clauses were pointless because the wrapped functions
would never throw a `SynapseError` (they either throw a `CodeMessageException`
or a `RuntimeError`).
The `except CodeMessageException` is now also pointless because the caller
treats all exceptions equally, so we may as well just throw the
`CodeMessageException`. 
						
						
					 
					
						2017-04-21 01:32:01 +01:00 
						 
				 
			
				
					
						
							
							
								Richard van der Hoff 
							
						 
					 
					
						
						
						
						
							
						
						
							838810b76a 
							
						 
					 
					
						
						
							
							Broaden the conditions for locally_rejecting invites  
						
						... 
						
						
						
						The logic for marking invites as locally rejected was all well and good, but
didn't happen when the remote server returned a 500, or wasn't reachable, or
had no DNS, or whatever.
Just expand the except clause to catch everything.
Fixes https://github.com/matrix-org/synapse/issues/761 . 
						
						
					 
					
						2017-04-21 01:31:37 +01:00 
						 
				 
			
				
					
						
							
							
								Richard van der Hoff 
							
						 
					 
					
						
						
						
						
							
						
						
							736b9a4784 
							
						 
					 
					
						
						
							
							Remove redundant function  
						
						... 
						
						
						
						inline `reject_remote_invite`, which only existed to make tracing the callflow
more difficult. 
						
						
					 
					
						2017-04-21 01:31:09 +01:00 
						 
				 
			
				
					
						
							
							
								Richard van der Hoff 
							
						 
					 
					
						
						
						
						
							
						
						
							4903ccf159 
							
						 
					 
					
						
						
							
							Fix some lies, and other clarifications, in docstrings  
						
						... 
						
						
						
						The documentation on get_json has been wrong ever since the very first commit
to synapse... 
						
						
					 
					
						2017-04-21 01:31:09 +01:00 
						 
				 
			
				
					
						
							
							
								Bruno Bigras 
							
						 
					 
					
						
						
						
						
							
						
						
							51fb884c52 
							
						 
					 
					
						
						
							
							Fix the system requirements list in README.rst  
						
						
						
						
					 
					
						2017-04-19 17:32:00 -04:00 
						 
				 
			
				
					
						
							
							
								Matthew Wolff 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d4040e9e28 
							
						 
					 
					
						
						
							
							Queried CONDITIONAL_REQUIREMENTS  
						
						
						
						
					 
					
						2017-04-18 16:19:48 -05:00 
						 
				 
			
				
					
						
							
							
								Luke Barnard 
							
						 
					 
					
						
						
						
						
							
						
						
							3fb8784c92 
							
						 
					 
					
						
						
							
							m.read_marker -> m.fully_read ( #2128 )  
						
						... 
						
						
						
						Also:
 - change the REST endpoint to have a "S" on the end (so it's now /read_markers)
 - change the content of the m.read_up_to event to have the key "event_id" instead of "marker". 
						
						
					 
					
						2017-04-18 17:46:15 +01:00 
						 
				 
			
				
					
						
							
							
								Matthew Hodgson 
							
						 
					 
					
						
						
						
						
							
						
						
							c02b6a37d6 
							
						 
					 
					
						
						
							
							Merge pull request  #2132  from feld/patch-1  
						
						... 
						
						
						
						Update README.rst 
						
						
					 
					
						2017-04-17 16:18:34 +01:00 
						 
				 
			
				
					
						
							
							
								Mark Felder 
							
						 
					 
					
						
						
						
						
							
						
						
							814fb032eb 
							
						 
					 
					
						
						
							
							Update README.rst  
						
						... 
						
						
						
						The FreeBSD port has been moved to the net-im category 
						
						
					 
					
						2017-04-17 08:26:50 -05:00 
						 
				 
			
				
					
						
							
							
								Matthew Wolff 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							54f9a4cb59 
							
						 
					 
					
						
						
							
							Fixed travis build failure  
						
						... 
						
						
						
						Signed-off-by: Matthew Wolff <matthewjwolff@gmail.com> 
						
						
					 
					
						2017-04-17 01:38:27 -05:00 
						 
				 
			
				
					
						
							
							
								Matthew Wolff 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							8e780b113d 
							
						 
					 
					
						
						
							
							web_server_root documentation fix  
						
						... 
						
						
						
						Signed-off-by: Matthew Wolff <matthewjwolff@gmail.com> 
						
						
					 
					
						2017-04-17 00:49:11 -05:00 
						 
				 
			
				
					
						
							
							
								Anant Prakash 
							
						 
					 
					
						
						
						
						
							
						
						
							574d573ac2 
							
						 
					 
					
						
						
							
							Check that requested room_id exists  
						
						
						
						
					 
					
						2017-04-14 23:50:59 +05:30 
						 
				 
			
				
					
						
							
							
								Luke Barnard 
							
						 
					 
					
						
						
						
						
							
						
						
							78f0ddbfad 
							
						 
					 
					
						
						
							
							Merge pull request  #2120  from matrix-org/luke/read-markers  
						
						... 
						
						
						
						Implement Read Marker API 
						
						
					 
					
						2017-04-13 14:21:31 +01:00 
						 
				 
			
				
					
						
							
							
								Luke Barnard 
							
						 
					 
					
						
						
						
						
							
						
						
							6a70647d45 
							
						 
					 
					
						
						
							
							Correct logic in is_event_after  
						
						
						
						
					 
					
						2017-04-13 13:46:17 +01:00 
						 
				 
			
				
					
						
							
							
								Anant Prakash 
							
						 
					 
					
						
						
						
						
							
						
						
							c1f52a321d 
							
						 
					 
					
						
						
							
							synctl.py: Check if synapse is already running  
						
						
						
						
					 
					
						2017-04-13 18:00:02 +05:30 
						 
				 
			
				
					
						
							
							
								Luke Barnard 
							
						 
					 
					
						
						
						
						
							
						
						
							b9557064bf 
							
						 
					 
					
						
						
							
							Simplify is_event_after logic  
						
						
						
						
					 
					
						2017-04-12 14:36:20 +01:00 
						 
				 
			
				
					
						
							
							
								Luke Barnard 
							
						 
					 
					
						
						
						
						
							
						
						
							cf6121e3da 
							
						 
					 
					
						
						
							
							More null-guard changes  
						
						
						
						
					 
					
						2017-04-12 14:02:03 +01:00 
						 
				 
			
				
					
						
							
							
								Erik Johnston 
							
						 
					 
					
						
						
						
						
							
						
						
							247c736b9b 
							
						 
					 
					
						
						
							
							Merge pull request  #2115  from matrix-org/erikj/dedupe_federation_repl  
						
						... 
						
						
						
						Reduce federation replication traffic 
						
						
					 
					
						2017-04-12 11:07:13 +01:00 
						 
				 
			
				
					
						
							
							
								Paul Evans 
							
						 
					 
					
						
						
						
						
							
						
						
							8fbc0d29ee 
							
						 
					 
					
						
						
							
							Merge pull request  #2121  from matrix-org/paul/sent-transactions-metric  
						
						... 
						
						
						
						Add a counter metric for successfully-sent transactions 
						
						
					 
					
						2017-04-12 11:04:31 +01:00 
						 
				 
			
				
					
						
							
							
								Erik Johnston 
							
						 
					 
					
						
						
						
						
							
						
						
							c06c00190f 
							
						 
					 
					
						
						
							
							Merge pull request  #2116  from matrix-org/erikj/dedupe_federation_repl2  
						
						... 
						
						
						
						Dedupe KeyedEdu and Devices federation repl traffic 
						
						
					 
					
						2017-04-12 10:57:24 +01:00 
						 
				 
			
				
					
						
							
							
								Luke Barnard 
							
						 
					 
					
						
						
						
						
							
						
						
							c0aba0a23e 
							
						 
					 
					
						
						
							
							Remove Unused ref to hs  
						
						
						
						
					 
					
						2017-04-12 10:52:11 +01:00 
						 
				 
			
				
					
						
							
							
								Luke Barnard 
							
						 
					 
					
						
						
						
						
							
						
						
							b9676a75f6 
							
						 
					 
					
						
						
							
							Move a space  
						
						
						
						
					 
					
						2017-04-12 10:51:17 +01:00 
						 
				 
			
				
					
						
							
							
								Luke Barnard 
							
						 
					 
					
						
						
						
						
							
						
						
							69a18514e9 
							
						 
					 
					
						
						
							
							Only notify user, not entire room  
						
						
						
						
					 
					
						2017-04-12 10:50:37 +01:00 
						 
				 
			
				
					
						
							
							
								Luke Barnard 
							
						 
					 
					
						
						
						
						
							
						
						
							122cd52ce4 
							
						 
					 
					
						
						
							
							Remove comment, simplify null-guard  
						
						
						
						
					 
					
						2017-04-12 10:48:32 +01:00 
						 
				 
			
				
					
						
							
							
								Erik Johnston 
							
						 
					 
					
						
						
						
						
							
						
						
							26ae5178a4 
							
						 
					 
					
						
						
							
							Add some comments  
						
						
						
						
					 
					
						2017-04-12 10:36:29 +01:00