Member since 
    
	
		
		
		01-09-2014
	
	
	
	
	
	
	
	
	
	
	
	
	
	
			
      
                283
            
            
                Posts
            
        
                70
            
            
                Kudos Received
            
        
                50
            
            
                Solutions
            
        My Accepted Solutions
| Title | Views | Posted | 
|---|---|---|
| 2261 | 06-19-2019 07:50 AM | |
| 3502 | 05-01-2019 08:07 AM | |
| 3551 | 04-10-2019 08:49 AM | |
| 3636 | 03-20-2019 09:30 AM | |
| 2842 | 01-23-2019 10:58 AM | 
			
    
	
		
		
		07-28-2015
	
		
		07:08 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							MirrorMaker is only needed if you are syncing topics from one kafka cluster to another. If you only have one kafka installation, you won't be using the MirrorMaker role.
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		07-27-2015
	
		
		02:55 PM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							Can you confirm what version of Cloudera Manager and CDH you are running?    Within the Kafka service configuration, if you search for "Java Heap Size of Broker in Megabytes" is there anything set for this value? If not, try to set it to 256 MB (at least) and attempt to restart.    -PD
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		06-11-2015
	
		
		01:58 PM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
	
		1 Kudo
		
	
				
		
	
		
					
							The latest kafka parcels can be found here:  http://archive-primary.cloudera.com/kafka/parcels/latest/    And adding that URL to your parcel repository list will make them available to download in Cloudera Manager.
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		05-01-2015
	
		
		06:52 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
	
		1 Kudo
		
	
				
		
	
		
					
							It should definitely show up in netstat as a LISTENING port. You could also use 'lsof -iTCP:8989' to confirm if it is listening.    
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		04-30-2015
	
		
		07:51 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							 If there was some changes to the MapReduce or Yarn service, you can see those configuration changes by hitting the "History and Rollback" button on the configuration page for the service.  That will display the most recent changes, and you can review those and rollback if needed. 
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		04-23-2015
	
		
		09:28 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							It appears as though there is some problems in your custom source instantiating the class. You can verify that the jar file is being loaded by running this:  lsof -u flume |grep MyFlumeSource.jar    If it is then you need to review your code to determine what is causing that exception, here are a few pointers: http://craftingjava.blogspot.com/2012/06/javalanginstantiationexception.html  
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		04-23-2015
	
		
		08:01 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
	
		1 Kudo
		
	
				
		
	
		
					
							 If you have a Cloudera Enterprise license, you can also configure alerts via snmp traps:     http://www.cloudera.com/content/cloudera/en/documentation/core/latest/topics/cm_ag_snmp.html       
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		03-17-2015
	
		
		11:01 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							If you are wanting to add more shards (to better distribute the updates), then yes, I would suggest planning in advance and oversharding. If you are more concerned about query performance, and want to keep the same number of shards but just add more replicas per shard, then just creating replicas on the new nodes will be sufficient.
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		03-17-2015
	
		
		07:18 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
				
		
	
		
					
							Khaled,    If you'd like to add more replicas to existing shards, you can use this method with the CREATE action on the new nodes that you want to add replicas to. If you need to add more shards, you'll want to recreate the collection with a larger number of shards after you've added solr to the new nodes.
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		
			
    
	
		
		
		02-09-2015
	
		
		06:58 AM
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	
				
		
			
					
	
		2 Kudos
		
	
				
		
	
		
					
							 It looks like you may be using an old Twitter Source which is now included standard in the apache flume distribution.  You'll need to update your source class to reflect the new location:        If your original source looks like:  TwitterAgent.sources.TwitterSource.type = com.cloudera.flume.source.TwitterSource     Please change it to:  TwitterAgent.sources.TwitterSource.type=org.apache.flume.source.twitter.TwitterSource       
						
					
					... View more
				
			
			
			
			
			
			
			
			
			
		- « Previous
- Next »
 
        













