mirror of
				https://github.com/open-metadata/OpenMetadata.git
				synced 2025-10-31 18:48:35 +00:00 
			
		
		
		
	 f1ae49e1a0
			
		
	
	
		f1ae49e1a0
		
			
		
	
	
	
	
		
			
			* Fix OpenSearch Content Size Issue entity content is too long [204857600] for the configured buffer limit [104857600] * Change Type to Long * Add Payload Size to take dynamic entry * Migrations for 1.5.6 * Mark Stale Entries Stopped * Format checkstyle * Fix failure --------- Co-authored-by: Sriharsha Chintalapani <harshach@users.noreply.github.com>
		
			
				
	
	
		
			5 lines
		
	
	
		
			480 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			5 lines
		
	
	
		
			480 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
| -- Delete Search Indexing Application 
 | |
| DELETE FROM  entity_relationship er  USING installed_apps ia WHERE (er.fromId = ia.id OR er.toId = ia.id) AND ia.name = 'SearchIndexingApplication';
 | |
| DELETE FROM  entity_relationship er  USING apps_marketplace ia WHERE (er.fromId = ia.id OR er.toId = ia.id) AND ia.name = 'SearchIndexingApplication';
 | |
| DELETE FROM  installed_apps where name = 'SearchIndexingApplication';
 | |
| DELETE FROM  apps_marketplace where name = 'SearchIndexingApplication'; |