Update of /cvsroot/cweb/bigdata/src/java/com/bigdata/service
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv25521/src/java/com/bigdata/service
Modified Files:
DataService.java
Log Message:
Removed generated JNI header files, adding their names to .cvsignore.
Removed old TODO.txt, migrating still relevant items to various Java source files.
Index: DataService.java
===================================================================
RCS file: /cvsroot/cweb/bigdata/src/java/com/bigdata/service/DataService.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** DataService.java 13 Apr 2007 15:04:19 -0000 1.6
--- DataService.java 16 Apr 2007 10:35:28 -0000 1.7
***************
*** 145,150 ****
*
* @todo all of the interfaces implemented by this class need to extend
! * {@link Remote} in order to be made visible on the proxy object
! * exported by JERI.
*/
public class DataService implements IDataService,
--- 145,162 ----
*
* @todo all of the interfaces implemented by this class need to extend
! * {@link Remote} in order to be made visible on the proxy object exported
! * by JERI.
! *
! * @todo Write benchmark test to measure interhost transfer rates. Should be
! * 100Mbits/sec (~12M/sec) on a 100BaseT switched network. With full
! * duplex in the network and the protocol, that rate should be
! * bidirectional. Can that rate be sustained with a fully connected
! * bi-directional transfer?
! *
! * @todo We will use non-blocking I/O for the page transfer protocol. Review
! * options to secure that protocol since we can not use JERI for that
! * purpose. For example, using SSL or an SSH tunnel. For most purposes I
! * expect bigdata to operate on a private network, but replicate across
! * gateways is also a common use case. Do we have to handle it specially?
*/
public class DataService implements IDataService,
|