openlsd-devel Mailing List for OpenLSD : Legacy Storage Document
Brought to you by:
fredbregier,
openlsd
You can subscribe to this list here.
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(6) |
Jun
(1) |
Jul
(1) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
| 2010 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: GoldenGate O. <op...@fr...> - 2010-05-31 19:15:50
|
Bonjour, A priori cela vient du fait que le script était écrit pour ksh (shell par défaut sous AIX), ce qui permet l'exportation dans le shell courant. Sous Linux (bash par défaut), la commande alias n'accepte pas l'argument -x. Pour corriger ce point, il faut inclure le fichier de configuration ENV dans le .bashrc ou le charger dynamiquement dans le shell actif (source ./ENV). Cela devrait alors fonctionner. L'erreur indiquait que java ne trouvait pas la classe ch.qos.logback.classic.Level qui fait partie du package /usr/share/GoldenGateR66/lib/logback-classic-0.9.17.jar comme spécifié dans votre classpath N'hésitez pas à me recontacter si vous avez d'autres problèmes... Cordialement, Frédéric Brégier Le 31/05/2010 11:39, Jerome a écrit : > re-bonjour > > a j'avais pas vu que les versions étaient différentes dans le fichier > ENV > j'ai modifié et maintenant j'ai ca ! > > /usr/share/GoldenGateR66$ sudo sh init.sh > [sudo] password for rootb: > + PATH_R66=/usr/share/GoldenGateR66 > + export PATH_R66 > + hostname > + hostname > + /usr/share/GoldenGateR66/src/main/example/bin/r66command.sh > openr66.server.ServerInitDatabase > /usr/share/GoldenGateR66/src/main/example/conf/configinitREY00014.xml > -initdb -dir /usr/share/GoldenGateR66/src/main/example/conf/ -auth > /usr/share/GoldenGateR66/src/main/example/conf/authent.xml -limit > /usr/share/GoldenGateR66/src/main/example/conf/limitConfigREY00014.xml > Start R66Command > alias: -x not found > alias: -x not found > alias: -x not found > alias: -x not found > alias: -x not found > alias: -x not found > alias: -x not found > alias: -x not found > alias: -x not found > alias: -x not found > alias: -x not found > alias: -x not found > /usr/lib/jvm/java-6-openjdk/jre/bin/java -Xms256m -Xmx1024m -cp > /usr/share/GoldenGateR66/lib/slf4j-api-1.5.8.jar:/usr/share/GoldenGateR66/lib/logback-access-0.9.17.jar:/usr/share/GoldenGateR66/lib/logback-classic-0.9.17.jar:/usr/share/GoldenGateR66/lib/logback-core.jar:/usr/share/GoldenGateR66/lib/dom4j-1.6.1.jar:/usr/share/GoldenGateR66/lib/jaxen.jar:/usr/share/GoldenGateR66/lib/commons-io-1.4.jar:/usr/share/GoldenGateR66/lib/commons-codec-1.3.jar:/usr/share/GoldenGateR66/lib/commons-exec-1.0.jar:/usr/share/GoldenGateR66/lib/ojdbc5.jar:/usr/share/GoldenGateR66/lib/orai18n.jar:/usr/share/GoldenGateR66/lib/GoldenGateCommon.jar:/usr/share/GoldenGateR66/lib/GoldenGateDigest.jar:/usr/share/GoldenGateR66/lib/NettyExtension.jar:/usr/share/GoldenGateR66/lib/netty.GA.jar:/usr/share/GoldenGateR66/lib/GoldenGateR66.jar > -Dlogback.configurationFile=/usr/share/GoldenGateR66/conf/logback-client.xml > openr66.server.ServerInitDatabase > /usr/share/GoldenGateR66/src/main/example/conf/configinitREY00014.xml > -initdb -dir /usr/share/GoldenGateR66/src/main/example/conf/ -auth > /usr/share/GoldenGateR66/src/main/example/conf/authent.xml -limit > /usr/share/GoldenGateR66/src/main/example/conf/limitConfigREY00014.xml > Exception in thread "main" java.lang.NoClassDefFoundError: > ch/qos/logback/classic/Level > at > openr66.server.ServerInitDatabase.main(ServerInitDatabase.java:99) > Caused by: java.lang.ClassNotFoundException: ch.qos.logback.classic.Level > at java.net.URLClassLoader$1.run(URLClassLoader.java:217) > at java.security.AccessController.doPrivileged(Native Method) > at java.net.URLClassLoader.findClass(URLClassLoader.java:205) > at java.lang.ClassLoader.loadClass(ClassLoader.java:321) > at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294) > at java.lang.ClassLoader.loadClass(ClassLoader.java:266) > at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:334) > ... 1 more > R66Command stopped > > merci par avance ! > Cdlt. > > > |
|
From: OpenLSD <op...@fr...> - 2010-02-24 19:48:31
|
Hi, First I'm glad that you are using OpenLSD ! Now on your question, to store documents in a database instead of file system, one should rewrite the openlsd.network.server.legacy such that it is still compliant with the interface, and specifically the LSDDocument class. It should not be trivial since it is not intend to use other thing than file system, but it is possible. However, before you go this way, think about it twice... Using a database to store a lot of files is not the best idea from my point of view. Of course it depends on the number of files and their sizes. To summarize it (I can go further in detail on it if you want me to do so), it is more problematic to have 10 TB of database than 10 TB of files, both in terms of backup (if no replication is used) and in terms of production, since handling a database of 10 TB starts to become a challenge (if 10 TB is not a problem, think about 100 TB or even bigger). We create OpenLSD to be able to handle more than 1 000 TB, so obviously outside the database to store the files. Also, having one database storing all files is a single point of failure, since if the database is corrupted, you loose everything. On the file system side, since OpenLSD allows you to use several file system (as recommanded), then at most you have a corruption of 1 file system, while the other are still valid. Then having a mirror of those files (using for instance the OpenLSD support) allows you to repopulate this corrupted file system only without any loss. We make some remarks on the web site about this part. But if you need more information or if you have any questions, please continue to do so !!! Cheers, Frederic Le 24/02/2010 10:55, Nedim Ozan Tekin a écrit : > Hi to all, > I m using OpenLSD in my application to store the documents , > but now due to a requirement I must store the documents in a database? > Does OpenLSD present such a solution? Can we store documents in database > instead of file system? > > Thanks. > > > > Dikkat: Bu elektronik posta mesaji kisisel ve ozeldir. Eger size gonderilmediyse lutfen gondericiyi bilgilendirip mesaji siliniz.Firmamiza gelen ve giden mesajlar virus taramasindan gecirilmektedir.Mesajdaki gorusler gondericiye ait olup HAVELSAN A.S. resmi gorusu olmak zorunda degildir. > > Attention: This e-mail message is private and privileged.If you are not the recipient for whom this e-mail message is intended, please notify the sender immediately and delete this e-mail message from your system.All sent and received e-mail messages go through a virus scan in our company. Any opinions presented in this e-mail message are solely those of the author and do not necessarily represent HAVELSAN A.S.`s formal and authorized views. > > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://p.sf.net/sfu/intel-sw-dev > _______________________________________________ > Openlsd-devel mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/openlsd-devel > > |
|
From: Nedim O. T. <nt...@ha...> - 2010-02-24 10:14:08
|
Hi to all, I m using OpenLSD in my application to store the documents , but now due to a requirement I must store the documents in a database? Does OpenLSD present such a solution? Can we store documents in database instead of file system? Thanks. Dikkat: Bu elektronik posta mesaji kisisel ve ozeldir. Eger size gonderilmediyse lutfen gondericiyi bilgilendirip mesaji siliniz.Firmamiza gelen ve giden mesajlar virus taramasindan gecirilmektedir.Mesajdaki gorusler gondericiye ait olup HAVELSAN A.S. resmi gorusu olmak zorunda degildir. Attention: This e-mail message is private and privileged.If you are not the recipient for whom this e-mail message is intended, please notify the sender immediately and delete this e-mail message from your system.All sent and received e-mail messages go through a virus scan in our company. Any opinions presented in this e-mail message are solely those of the author and do not necessarily represent HAVELSAN A.S.`s formal and authorized views. |
|
From: OpenLSD <op...@fr...> - 2008-10-05 09:12:47
|
Bonjour,
OpenLSD est un logiciel libre, vous pouvez donc l'utiliser et proposer des contributions.
J'ai réalisé un ensemble de documentations que j'espère utiles.
Bien sûr, si celles-ci n'étaient pas suffisantes ou si vous rencontriez des problèmes,
n'hésitez pas à me contacter.
Je suis toujours preneur de bonnes idées pour améliorer ce projet.
Bien cordialement,
Frédéric Brégier
----- Original Message -----
From: Fateh Larbi
Sent: Sunday, October 05, 2008 1:44 AM
Subject: Bonjour au sujet de OPENLSD
Bonjour Monsieur
je me présente, je suis étudiant en 5ème années ingéniera informatique a l'Université USTHB d'Alger Algerie, et en préparation de mon diplôme j'ai choisie avec mon binôme, au sein d'un société le déploiement d'un Framework d'archivage numérique sur le web.
On cherchons sur internet on a trouve Le projet OPENLSD qui est a mon avis la solution qui conviens le plus au travail demandé par a société, et ça dans le cadre de notre projet.
D’après notre 1ère exploration de votre projet tous es bien fait et nous voudrions, toujours dans le cadre de notre PFE, utilisé et si possible contribue a amélioré OPENLSD.
Pour cela je vous demande si possible pendant les prochain moi, de nous donne la possibilité de vous contacté et de vous demandé des informations ou peut être si vous avez le temps de nous aidé dans les futurs problèmes qu'on va rencontre.
Dans l'attente d'une repose de votre part veuillez agrès monsieur, mes salutations les plus distingués.
LARBI FATEH
Étudiant en 5ème année ingénieur.
|
|
From: Frederic B. <fre...@fr...> - 2008-05-09 10:21:30
|
I am pleased to announce a new minor release of OpenLSD is out. OpenLSD 09/05/2008 : V1.0.4 - Web retrieve improvement for big file (> 1 MB) to try to prevent OOM - Little fix on EMPTYMD5 (16bytes to 32bytes) and its associated ugly bug (fix in V1.0.3) - Documentation enhancement (benchmarks) As always, any comments, advices, feedback are welcomed! Frederic |
|
From: Frederic B. <fre...@fr...> - 2008-05-01 20:02:29
|
I am pleased to announce a new minor release of OpenLSD is out. OpenLSD 01/05/2008 : V1.0.2 - Little fix on EMPTYMD5 (16bytes to 32bytes) - Documentation enhancement (benchmarks) As always, any comments, advices, feedback are welcomed! Frederic |
|
From: <fre...@fr...> - 2008-04-26 20:00:38
|
I am pleased to announce the new major release of OpenLSD is out. This is really a new major one! And more, this version is now production ready as it is the 1.0 version. OpenLSD 26/04/2008 : V1.0.0 Mainly, except the correction of bugs, it includes: - Efficiency increasing - Complete Multiple Legacies Support - Pool of connection and KeepAlive feature - Improve Consistency Check - Adapt to Mina 2.0-preM2 - ... and others It comes also with OpenLSM new version to be compatible with OpenLSD V1.0. OpenLSM 21/04/2008 : V0.8.1 Mainly it is an update to be compatible with OpenLSD V1.0. As always, any comments, advices, feedback are welcomed! Frederic |
|
From: <fre...@fr...> - 2007-08-06 14:11:32
|
This is a short update, mainly due to OpenLSM upcoming project (OpenLSDWebImpl Eclipse project include a small servlet for OpenLSM). It includes also the OpenLSD Multiple Legacies documentation. This is the first public release of OpenLSM (Open Legacy Storage Mail), an eMail archiving framework in V0.8.0. It includes an extension of Thunderbird and an extension of OpenLSD to enable email archiving. This is a framework since the authentification process is out of the scope so you will have to adapt the servlet process (or invent one) to get this application fully functional. As always, any comments, advices, feedback are welcomed! Frederic |
|
From: Frederic B. <fre...@fr...> - 2007-07-01 17:53:09
|
I am pleased to announce a new release of OpenLSD is out. This is a minor but really a new major one! OpenLSD 07/01/2007 : V0.9.2 It corrects some bugs but mainly includes: - Add PostGreSQL support (fully tested and supported) - Create LSDInitOpFromDBForStorage that takes 1 Legacy 1 Storage and 1 IDIP id - Web Common services return now an int to distinguish which kind of error occurs. - Add test of existence of each file (source and destination) during work of Import in Op Handler As always, any comments, advices, feedback are welcomed! Frederic |
|
From: Frederic B. <fre...@fr...> - 2007-06-17 17:24:58
|
I am pleased to announce a new major release of OpenLSD is out. This is really a new major one! OpenLSD 06/17/2007 : V0.9.0 Mainly, except the correction of bugs, it includes: - Enhancement of the framework usage (1 class to create only) - Beginning of the Multiple Legacies Support (admin, check, import, delete) - Pool of connection - Delete Web support - Improve the filesystem handling by taking into account the size of one block (4K) on the filesystem - ... and others As always, any comments, advices, feedback are welcomed! Frederic |
|
From: Frederic B. <fre...@fr...> - 2007-05-29 22:27:54
|
I am pleased to announce a new sub-release of OpenLSD is out. OpenLSD 05/29/2007 : V0.8.1 Very small update but nevertheless useful - I hope ;-) - Small refactorization on LSDCheckInDBAbstract from LSDCheckInDBImpl - Add some error logging - Create a separate package containing the same example of extension of LSDBusinessImpl in Example in a separate project OpenLSDImpl with the correct class name openlsd.business instead of openlsd.newbusiness - Improve documentations As always, any comments, advices, feedback are welcomed! Frederic |
|
From: Frederic B. <fre...@fr...> - 2007-05-27 23:44:00
|
I am please to announce that the second main release of OpenLSD is out :
OpenLSD 05/28/2007 : V0.8.0
It includes:
- Refactorization of Import, Check, Delete, Business information in
LSDExtDbDocument
- Simplify the process of extension by providing explicit Implementation
classes
that should be modify and adapt to the business logic (BusinessImpl)
LSDBusinessImpl: implement LSDBusiness that contains all data for
Business
LSDCheckInDbImpl: implement LSCheckInDB that contains all data for
Business
LSDDeleteEmptyImpl: implement LSDDeleteEmpty that contains all data
for Business
LSDImportEmptyImpl: implement LSDImportEmpty that contains all data
for Business
LSDInitExtDbDocumentImpl: implement initialization of internal
LSDBusiness
representation in LSDExtDbDocument that contains all data for
Business
- Correct Bug in LSDDelete
- Refactorize Directories and jars in Common - Common.jar, Server and
ServerApp -
Server.jar, ClientSupport and ClientApp - Client.jar , BusinessImpl
- Impl.jar,
WebSupport - Web.jar
- Update docs and provide new Howtos :
- OpenLSD API focus (internal and external)
- Example of use of OpenLSD Framework
As always, any comments, advices, feedback are welcomed!
Frederic
|
|
From: Frederic B. <fre...@fr...> - 2007-05-22 22:16:56
|
I am pleased to announce the V0.7.4 of OpenLSD.
It is mainly a "cleaning" version which removes some unused code and
simplify some others, notably one PL/SQL procedure.
OpenLSD 05/22/2007 : V0.7.4
- Clean Import functions:
LSDImportFileBlock.java (clean comment)
LSDCommonFunctions (delete some unused functions and create Specific
support for the 1-file procedure)
LSDSpecific, LSDMySQL, LSDOracle delete unused functions and create
specific support for the 1-file procedure
LSDDbDocument, LSDExtDbocument remove unused functions (find_first)
Procedure InsertDocNoCommit : delete of idm (not useful)
As always, any comments, contributions or remarks are welcommed!
Frederic
|
|
From: <ope...@li...> - 2007-05-21 21:41:45
|
Hi everyone out there ! I just get out version 0.7.3B since I forgot to include some new files. It now includes also: - JDK5 and JDK6 version for Jars (ALLJARS and in Eclispe Projects) - AIX 53 binaries for Fast MD5 library and for OpenLSDC executable (checkFileFromPath) As always, any comments, contributions or testing are welcomed ! Frederic |
|
From: <ope...@li...> - 2007-05-20 07:50:06
|
Hi everyone out there ! I am pleased to announce version 0.7.3. It includes: - Improve documentations (Logic and Concept, Howto) - Refactorize internal functions for Server configuration file reading. - Create a new function to initialize database information based on the xml configuration files Any comments, contributions or testing are welcomed ! Frederic |
|
From: openlsd <op...@fr...> - 2007-05-14 20:42:52
|
Hi everyone out there ! Well, after publishing the first public version 0.7, I think it was time too to open a public mailing list for developers and users... I hope you will find any information you need in it. OpenLSD is what you want it to be, so everyone is welcomed ! Frederic |