Project

General

Profile

1
/**
2
 *  '$RCSfile$'
3
 *    Purpose: Implements a service for managing a Hazelcast cluster member
4
 *  Copyright: 2011 Regents of the University of California and the
5
 *             National Center for Ecological Analysis and Synthesis
6
 *    Authors: Christopher Jones
7
 * 
8
 *   '$Author: leinfelder $'
9
 *     '$Date: 2011-11-02 21:58:31 -0700 (Wed, 02 Nov 2011) $'
10
 * '$Revision: 6596 $'
11
 *
12
 * This program is free software; you can redistribute it and/or modify
13
 * it under the terms of the GNU General Public License as published by
14
 * the Free Software Foundation; either version 2 of the License, or
15
 * (at your option) any later version.
16
 *
17
 * This program is distributed in the hope that it will be useful,
18
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20
 * GNU General Public License for more details.
21
 *
22
 * You should have received a copy of the GNU General Public License
23
 * along with this program; if not, write to the Free Software
24
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
25
 */
26

    
27
package edu.ucsb.nceas.metacat.dataone.hazelcast;
28

    
29
import java.io.FileNotFoundException;
30
import java.util.Collection;
31
import java.util.Date;
32

    
33
import org.apache.log4j.Logger;
34
import org.dataone.service.types.v1.Identifier;
35
import org.dataone.service.types.v1.Node;
36
import org.dataone.service.types.v1.NodeReference;
37
import org.dataone.service.types.v1.SystemMetadata;
38

    
39
import com.hazelcast.client.HazelcastClient;
40
import com.hazelcast.config.Config;
41
import com.hazelcast.config.FileSystemXmlConfig;
42
import com.hazelcast.core.EntryEvent;
43
import com.hazelcast.core.EntryListener;
44
import com.hazelcast.core.Hazelcast;
45
import com.hazelcast.core.IMap;
46
import com.hazelcast.core.InstanceEvent;
47
import com.hazelcast.core.InstanceListener;
48
import com.hazelcast.core.Member;
49
import com.hazelcast.partition.Partition;
50
import com.hazelcast.partition.PartitionService;
51
import com.hazelcast.query.EntryObject;
52
import com.hazelcast.query.Predicate;
53
import com.hazelcast.query.PredicateBuilder;
54

    
55
import edu.ucsb.nceas.metacat.IdentifierManager;
56
import edu.ucsb.nceas.metacat.McdbDocNotFoundException;
57
import edu.ucsb.nceas.metacat.dataone.D1NodeService;
58
import edu.ucsb.nceas.metacat.properties.PropertyService;
59
import edu.ucsb.nceas.metacat.shared.BaseService;
60
import edu.ucsb.nceas.metacat.shared.ServiceException;
61
import edu.ucsb.nceas.utilities.FileUtil;
62
import edu.ucsb.nceas.utilities.PropertyNotFoundException;
63
/**
64
 * The Hazelcast service enables Metacat as a Hazelcast cluster member
65
 */
66
public class HazelcastService extends BaseService
67
  implements InstanceListener, EntryListener<Identifier, SystemMetadata> {
68
  
69
  private static final String SINCE_PROPERTY = "dateSysMetadataModified";
70

    
71
/* The instance of the logging class */
72
  private static Logger logMetacat = Logger.getLogger(HazelcastService.class);
73
  
74
  /* The singleton instance of the hazelcast service */
75
  private static HazelcastService hzService = null;
76
  
77
  /* The Hazelcast configuration */
78
  private Config hzConfig;
79
  
80
  /* The instance of the Hazelcast client */
81
//  private HazelcastClient hzClient;
82

    
83
  /* The name of the DataONE Hazelcast cluster group */
84
  private String groupName;
85

    
86
  /* The name of the DataONE Hazelcast cluster password */
87
  private String groupPassword;
88
  
89
  /* The name of the DataONE Hazelcast cluster IP addresses */
90
  private String addressList;
91
  
92
  /* The name of the node map */
93
  private String nodeMap;
94

    
95
  /* The name of the system metadata map */
96
  private String systemMetadataMap;
97
  
98
  /* The Hazelcast distributed task id generator namespace */
99
  private String taskIds;
100
  
101
  /* The Hazelcast distributed node map */
102
  private IMap<NodeReference, Node> nodes;
103

    
104
  /* The Hazelcast distributed system metadata map */
105
  private IMap<Identifier, SystemMetadata> systemMetadata;
106
    
107
  /*
108
   * Constructor: Creates an instance of the hazelcast service. Since
109
   * this uses a singleton pattern, use getInstance() to gain the instance.
110
   */
111
  private HazelcastService() {
112
    
113
    super();
114
    _serviceName="HazelcastService";
115
    
116
    try {
117
      init();
118
      
119
    } catch (ServiceException se) {
120
      logMetacat.error("There was a problem creating the HazelcastService. " +
121
                       "The error message was: " + se.getMessage());
122
      
123
    }
124
    
125
  }
126
  
127
  /**
128
   *  Get the instance of the HazelcastService that has been instantiated,
129
   *  or instantiate one if it has not been already.
130
   *
131
   * @return hazelcastService - The instance of the hazelcast service
132
   */
133
  public static HazelcastService getInstance(){
134
    
135
    if ( hzService == null ) {
136
      
137
      hzService = new HazelcastService();
138
      
139
    }
140
    return hzService;
141
  }
142
  
143
  /**
144
   * Initializes the Hazelcast service
145
   */
146
  public void init() throws ServiceException {
147
    
148
    logMetacat.debug("HazelcastService.doRefresh() called.");
149
    
150
	String configFileName = null;
151
	Config config = null;
152
	try {
153
		configFileName = PropertyService.getProperty("dataone.hazelcast.configFilePath");
154
		config = new FileSystemXmlConfig(configFileName);
155
	} catch (Exception e) {
156
		logMetacat.warn("Custom Hazelcast configuration not defined, using default.", e);
157
		configFileName = PropertyService.CONFIG_FILE_DIR + FileUtil.getFS() + "hazelcast.xml";
158
		// make sure we have the config
159
		try {
160
			config = new FileSystemXmlConfig(configFileName);
161
		} catch (FileNotFoundException e1) {
162
			String msg = e.getMessage();
163
			logMetacat.error(msg);
164
			throw new ServiceException(msg);
165
		}
166
	}
167

    
168
	Hazelcast.init(config);
169
    
170
    // Get configuration properties on instantiation
171
    try {
172
      groupName = 
173
        PropertyService.getProperty("dataone.hazelcast.processCluster.groupName");
174
      groupPassword = 
175
        PropertyService.getProperty("dataone.hazelcast.processCluster.password");
176
      addressList = 
177
        PropertyService.getProperty("dataone.hazelcast.processCluster.instances");
178
//      nodeMap = 
179
//        PropertyService.getProperty("dataone.hazelcast.processCluster.nodesMap");
180
      systemMetadataMap = 
181
        PropertyService.getProperty("dataone.hazelcast.storageCluster.systemMetadataMap");
182

    
183
      // Become a DataONE-process cluster client
184
//      String[] addresses = addressList.split(",");
185
//      hzClient = 
186
//        HazelcastClient.newHazelcastClient(this.groupName, this.groupPassword, addresses);
187
//      nodes = hzClient.getMap(nodeMap);
188
      
189
      // Get a reference to the shared system metadata map as a cluster member
190
      systemMetadata = Hazelcast.getMap(systemMetadataMap);
191
      
192
      // Listen for changes to the system metadata map
193
      systemMetadata.addEntryListener(this, true);
194
      
195
    } catch (PropertyNotFoundException e) {
196

    
197
      String msg = "Couldn't find Hazelcast properties for the DataONE clusters. " +
198
        "The error message was: " + e.getMessage();
199
      logMetacat.error(msg);
200
      
201
    }
202
    
203
    // make sure we have all metadata locally
204
    try {
205
	    // add index for resynch() method
206
    	// can only be added once, TODO: figure out how this works
207
	    //systemMetadata.addIndex(SINCE_PROPERTY, true);
208
		//resynch();
209
	} catch (Exception e) {
210
		String msg = "Problem synchronizing system metadata. " + e.getMessage();
211
		logMetacat.error(msg, e);
212
	}
213
        
214
  }
215
  
216
  /**
217
   * Get the system metadata map
218
   * 
219
   * @return systemMetadata - the hazelcast map of system metadata
220
   */
221
  public IMap<Identifier,SystemMetadata> getSystemMetadataMap() {
222
	  return systemMetadata;
223
  }
224
  
225
  /**
226
   * Get the DataONE hazelcast node map
227
   * @return nodes - the hazelcast map of nodes
228
   */
229
//  public IMap<NodeReference, Node> getNodesMap() {
230
//	  return nodes;
231
//  }
232
  
233
  /**
234
   * Indicate whether or not this service is refreshable.
235
   *
236
   * @return refreshable - the boolean refreshable status
237
   */
238
  public boolean refreshable() {
239
    // TODO: Determine the consequences of restarting the Hazelcast instance
240
    // Set this to true if it's okay to drop from the cluster, lose the maps,
241
    // and start back up again
242
    return false;
243
    
244
  }
245
  
246
  /**
247
   * Stop the HazelcastService. When stopped, the service will no longer
248
   * respond to requests.
249
   */
250
  public void stop() throws ServiceException {
251
    
252
    Hazelcast.getLifecycleService().shutdown();
253
    
254
  }
255

    
256
  /**
257
   * Listen for new Hazelcast member events
258
   */
259
  @Override
260
  public void instanceCreated(InstanceEvent event) {
261
    logMetacat.info("New Hazelcast instance created: " +
262
      event.getInstance().getId() + ", " +
263
      event.getInstance().getInstanceType());
264
    
265
  }
266

    
267
  @Override
268
  public void instanceDestroyed(InstanceEvent event) {
269
    logMetacat.info("Hazelcast instance removed: " +
270
        event.getInstance().getId() + ", " +
271
        event.getInstance().getInstanceType());
272
    
273
  }
274
  
275
  /**
276
   * Refresh the Hazelcast service by restarting it
277
   */
278
  @Override
279
  protected void doRefresh() throws ServiceException {
280

    
281
    // TODO: verify that the correct config file is still used
282
    Hazelcast.getLifecycleService().restart();
283
    
284
  }
285
  
286
  /**
287
	 * Implement the EntryListener interface for Hazelcast, reponding to entry
288
	 * added events in the hzSystemMetadata map. Evaluate the entry and create
289
	 * CNReplicationTasks as appropriate (for DATA, METADATA, RESOURCE)
290
	 * 
291
	 * @param event - The EntryEvent that occurred
292
	 */
293
	@Override
294
	public void entryAdded(EntryEvent<Identifier, SystemMetadata> event) {
295
		// handle as update - that method will create if necessary
296
		entryUpdated(event);
297
	}
298

    
299
	/**
300
	 * Implement the EntryListener interface for Hazelcast, reponding to entry
301
	 * evicted events in the hzSystemMetadata map.  Evaluate the entry and create
302
	 * CNReplicationTasks as appropriate (for DATA, METADATA, RESOURCE)
303
	 * 
304
	 * @param event - The EntryEvent that occurred
305
	 */
306
	@Override
307
	public void entryEvicted(EntryEvent<Identifier, SystemMetadata> event) {
308
	  // nothing to do, entries are still in the backing store
309
	  
310
	}
311
	
312
	/**
313
	 * Implement the EntryListener interface for Hazelcast, reponding to entry
314
	 * removed events in the hzSystemMetadata map.  Evaluate the entry and create
315
	 * CNReplicationTasks as appropriate (for DATA, METADATA, RESOURCE)
316
	 * 
317
	 * @param event - The EntryEvent that occurred
318
	 */
319
	@Override
320
	public void entryRemoved(EntryEvent<Identifier, SystemMetadata> event) {
321
	  // we don't remove objects
322
	  
323
	}
324
	
325
	/**
326
	 * Implement the EntryListener interface for Hazelcast, reponding to entry
327
	 * updated events in the hzSystemMetadata map.  Evaluate the entry and create
328
	 * CNReplicationTasks as appropriate (for DATA, METADATA, RESOURCE)
329
	 * 
330
	 * @param event - The EntryEvent that occurred
331
	 */
332
	@Override
333
	public void entryUpdated(EntryEvent<Identifier, SystemMetadata> event) {
334
	
335
			logMetacat.debug("Entry added/updated to System Metadata map: " + event.getKey().getValue());
336
			PartitionService partitionService = Hazelcast.getPartitionService();
337
			Partition partition = partitionService.getPartition(event.getKey());
338
			Member ownerMember = partition.getOwner();
339
			if (!ownerMember.localMember()) {
340
				// need to pull the entry into the local store
341
				saveLocally(event.getValue());
342
			}
343
	
344
			// TODO evaluate the type of system metadata change, decide if it
345
			// warrants a replication event, what type (DATA, METADATA, RESOURCE),
346
			// iteratively lock the PID, create and submit the tasks, and expect a
347
			// result back. Deal with exceptions.
348
			SystemMetadata sysmeta = event.getValue();
349
			if (sysmeta != null) {
350
				boolean isMetadata = D1NodeService.isScienceMetadata(event.getValue());
351
				// TODO: do we need to do anything explicit here?
352
			}
353
	  
354
	}
355
	
356
	/**
357
	 * Save SystemMetadata to local store if needed
358
	 * @param sm
359
	 */
360
	private void saveLocally(SystemMetadata sm) {
361
		logMetacat.debug("Saving entry locally: " + sm.getIdentifier().getValue());
362
		try {
363
			if (!IdentifierManager.getInstance().systemMetadataExists(sm.getIdentifier().getValue())) {
364
				IdentifierManager.getInstance().createSystemMetadata(sm);
365
			} else {
366
				IdentifierManager.getInstance().updateSystemMetadata(sm);
367
			}
368
		} catch (McdbDocNotFoundException e) {
369
			logMetacat.error(
370
					"Could not save System Metadata to local store.", e);
371
		}
372
	}
373
	
374
	public void resynch() throws Exception {
375
		
376
		// get the CN that is online
377
		// TODO: do we even need to use a specific CN?
378
		// All the System Metadata records should be available via the shared map
379
//		NodeList allNodes = CNodeService.getInstance().listNodes();
380
//		Node onlineCN = null;
381
//		for (Node node: allNodes.getNodeList()) {
382
//			if (node.getType().equals(NodeType.CN)) {
383
//				if (node.getState().equals(NodeState.UP)) {
384
//					onlineCN = node;
385
//					break;
386
//				}
387
//			}
388
//		}
389
		
390
		// get the list of items that have changed since X
391
		Date since = IdentifierManager.getInstance().getLastModifiedDate();
392
		EntryObject e = new PredicateBuilder().getEntryObject();
393
		Predicate predicate = e.get(SINCE_PROPERTY).greaterEqual(since);
394
		Collection<SystemMetadata> updatedSystemMetadata = getSystemMetadataMap().values(predicate);
395
		for (SystemMetadata sm: updatedSystemMetadata) {
396
			saveLocally(sm);
397
		}
398
	}
399

    
400
}
(1-1/3)