<div dir="ltr"><div><div><div><div><div><div>Hi Marcus,<br><br></div>There are no issues with geo-rep and disperse volumes. It works with disperse volume<br></div>being master or slave or both. You can run replicated distributed at master and diperse distributed<br></div>at slave or disperse distributed at both master and slave. There was an issue with lookup on / taking<br></div>longer time because of eager locks in disperse and that&#39;s been fixed. Which version are you running?<br><br></div>Thanks,<br></div>Kotresh HR<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Mar 2, 2018 at 3:05 PM, Marcus Pedersén <span dir="ltr">&lt;<a href="mailto:marcus.pedersen@slu.se" target="_blank">marcus.pedersen@slu.se</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi again,<br>
I have been testing and reading up on other solutions<br>
and just wanted to check if my ideas are ok.<br>
I have been looking at dispersed volumes and wonder if there are any<br>
problems running replicated-distributed cluster on the master node and<br>
a dispersed-distributed cluster on the slave side of a geo-replication.<br>
Second thought, running disperesed on both sides, is that a problem<br>
(Master: dispersed-distributed, slave: dispersed-distributed)?<br>
<br>
Many thanks in advance!<br>
<br>
Best regards<br>
<span class="HOEnZb"><font color="#888888">Marcus<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
<br>
On Thu, Feb 08, 2018 at 02:57:48PM +0530, Kotresh Hiremath Ravishankar wrote:<br>
&gt; Answers inline<br>
&gt;<br>
&gt; On Thu, Feb 8, 2018 at 1:26 PM, Marcus Pedersén &lt;<a href="mailto:marcus.pedersen@slu.se">marcus.pedersen@slu.se</a>&gt;<br>
&gt; wrote:<br>
&gt;<br>
&gt; &gt; Thank you, Kotresh<br>
&gt; &gt;<br>
&gt; &gt; I talked to your storage colleagues at Open Source Summit in Prag last<br>
&gt; &gt; year.<br>
&gt; &gt; I described my layout idea for them and they said it was a good solution.<br>
&gt; &gt; Sorry if I mail you in private, but I see this as your internal matters.<br>
&gt; &gt;<br>
&gt; &gt; The reason that I seem stressed is that I have already placed my order<br>
&gt; &gt; on new file servers for this so I need to change that as soon as possible.<br>
&gt; &gt;<br>
&gt; &gt; So, a last double check with you:<br>
&gt; &gt; If I build the master cluster as I thought from the beginning,<br>
&gt; &gt; distributed/replicated (replica 3 arbiter 1) and in total 4 file servers<br>
&gt; &gt; and one arbiter (same arbiter used for both &quot;pairs&quot;),<br>
&gt; &gt; and build the slave cluster the same, distributed/replicated (replica 3<br>
&gt; &gt; arbiter 1)<br>
&gt; &gt; and in total 4 file servers and one arbiter (same arbiter used for both<br>
&gt; &gt; &quot;pairs&quot;).<br>
&gt; &gt; Do I get a good technical solution?<br>
&gt; &gt;<br>
&gt;<br>
&gt;      Yes, that works fine.<br>
&gt;<br>
&gt; &gt;<br>
&gt; &gt; I liked your description on how the sync works, that made me understand<br>
&gt; &gt; much<br>
&gt; &gt; better how the system works!<br>
&gt; &gt;<br>
&gt;<br>
&gt; Thank you very much for all your help!<br>
&gt; &gt;<br>
&gt;<br>
&gt;  No problem. We are happy to help you.<br>
&gt;<br>
&gt; &gt;<br>
&gt; &gt; Best regards<br>
&gt; &gt; Marcus<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; On Wed, Feb 07, 2018 at 09:40:32PM +0530, Kotresh Hiremath Ravishankar<br>
&gt; &gt; wrote:<br>
&gt; &gt; &gt; Answers inline<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; On Wed, Feb 7, 2018 at 8:44 PM, Marcus Pedersén &lt;<a href="mailto:marcus.pedersen@slu.se">marcus.pedersen@slu.se</a>&gt;<br>
&gt; &gt; &gt; wrote:<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; Thank you for your help!<br>
&gt; &gt; &gt; &gt; Just to make things clear to me (and get a better understanding of<br>
&gt; &gt; &gt; &gt; gluster):<br>
&gt; &gt; &gt; &gt; So, if I make the slave cluster just distributed and node 1 goes down,<br>
&gt; &gt; &gt; &gt; data (say file.txt) that belongs to node 1 will not be synced.<br>
&gt; &gt; &gt; &gt; When node 1 comes back up does the master not realize that file.txt<br>
&gt; &gt; has not<br>
&gt; &gt; &gt; &gt; been synced and makes sure that it is synced when it has contact with<br>
&gt; &gt; node<br>
&gt; &gt; &gt; &gt; 1 again?<br>
&gt; &gt; &gt; &gt; So file.txt will not exist on node 1 at all?<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; Geo-replication syncs changes based on changelog journal which records<br>
&gt; &gt; all<br>
&gt; &gt; &gt; the file operations.<br>
&gt; &gt; &gt; It syncs every file in two steps<br>
&gt; &gt; &gt; 1. File creation with same attributes as on master via rpc (CREATE is<br>
&gt; &gt; &gt; recorded in changelog)<br>
&gt; &gt; &gt; 2. Data sync via rsync (DATA is recorded in changelog. Any further<br>
&gt; &gt; appends<br>
&gt; &gt; &gt; will only record DATA)<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; The changelog processing will not halt on encountering ENOENT(It thinks<br>
&gt; &gt; &gt; it&#39;s a safe error). It&#39;s not<br>
&gt; &gt; &gt; straight forward. When I said, file won&#39;t be synced, it means the file is<br>
&gt; &gt; &gt; created on node1 and when<br>
&gt; &gt; &gt; you append the data, the data would not sync as it gets ENOENT since the<br>
&gt; &gt; &gt; node1 is down. But if the<br>
&gt; &gt; &gt; &#39;CREATE&#39; of file is not synced to node1, then it is persistent failure<br>
&gt; &gt; &gt; (ENOTCON) and waits till node1 comes back.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; I did a small test on my testing machines.<br>
&gt; &gt; &gt; &gt; Turned one of the geo machines off and created 10000 files containing<br>
&gt; &gt; one<br>
&gt; &gt; &gt; &gt; short string in the master nodes.<br>
&gt; &gt; &gt; &gt; Nothing became synced with the geo slaves.<br>
&gt; &gt; &gt; &gt; When I turned on the geo machine again all 10000 files were synced to<br>
&gt; &gt; the<br>
&gt; &gt; &gt; &gt; geo slaves.<br>
&gt; &gt; &gt; &gt; Ofcause devided between the two machines.<br>
&gt; &gt; &gt; &gt; Is this the right/expected behavior of geo-replication with a<br>
&gt; &gt; distributed<br>
&gt; &gt; &gt; &gt; cluster?<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; Yes, it&#39;s correct. As I said earlier, CREATE itself would have failed<br>
&gt; &gt; with<br>
&gt; &gt; &gt; ENOTCON. geo-rep waited till slave comes back.<br>
&gt; &gt; &gt; Bring slave node down, and now append data to files which falls under<br>
&gt; &gt; node<br>
&gt; &gt; &gt; which is down, you won&#39;t see appended data.<br>
&gt; &gt; &gt; So it&#39;s always recommended to use replica/ec/arbiter<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; Many thanks in advance!<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; Regards<br>
&gt; &gt; &gt; &gt; Marcus<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; On Wed, Feb 07, 2018 at 06:39:20PM +0530, Kotresh Hiremath Ravishankar<br>
&gt; &gt; &gt; &gt; wrote:<br>
&gt; &gt; &gt; &gt; &gt; We are happy to help you out. Please find the answers inline.<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; On Tue, Feb 6, 2018 at 4:39 PM, Marcus Pedersén &lt;<br>
&gt; &gt; <a href="mailto:marcus.pedersen@slu.se">marcus.pedersen@slu.se</a>&gt;<br>
&gt; &gt; &gt; &gt; &gt; wrote:<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; Hi all,<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; I am planning my new gluster system and tested things out in<br>
&gt; &gt; &gt; &gt; &gt; &gt; a bunch of virtual machines.<br>
&gt; &gt; &gt; &gt; &gt; &gt; I need a bit of help to understand how geo-replication behaves.<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; I have a master gluster cluster replica 2<br>
&gt; &gt; &gt; &gt; &gt; &gt; (in production I will use an arbiter and replicatied/distributed)<br>
&gt; &gt; &gt; &gt; &gt; &gt; and the geo cluster is distributed with 2 machines.<br>
&gt; &gt; &gt; &gt; &gt; &gt; (in production I will have the geo cluster distributed)<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; It&#39;s recommended to use slave also to be distribute<br>
&gt; &gt; &gt; &gt; replicate/aribiter/ec.<br>
&gt; &gt; &gt; &gt; &gt; Choosing only distribute will cause issues<br>
&gt; &gt; &gt; &gt; &gt; when of the slave node is down and a file is being synced which<br>
&gt; &gt; belongs<br>
&gt; &gt; &gt; &gt; to<br>
&gt; &gt; &gt; &gt; &gt; that node. It would not sync<br>
&gt; &gt; &gt; &gt; &gt; later.<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; Everything is up and running and creating files from client both<br>
&gt; &gt; &gt; &gt; &gt; &gt; replicates and is distributed in the geo cluster.<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; The thing I am wondering about is:<br>
&gt; &gt; &gt; &gt; &gt; &gt; When I run: gluster volume geo-replication status<br>
&gt; &gt; &gt; &gt; &gt; &gt; I see both slave nodes one is active and the other is passive.<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; MASTER NODE    MASTER VOL     MASTER BRICK    SLAVE USER    SLAVE<br>
&gt; &gt; &gt; &gt; &gt; &gt;                                 SLAVE NODE      STATUS     CRAWL<br>
&gt; &gt; STATUS<br>
&gt; &gt; &gt; &gt; &gt; &gt;    LAST_SYNCED<br>
&gt; &gt; &gt; &gt; &gt; &gt; ------------------------------<wbr>------------------------------<br>
&gt; &gt; &gt; &gt; &gt; &gt; ------------------------------<wbr>------------------------------<br>
&gt; &gt; &gt; &gt; &gt; &gt; ------------------------------<wbr>---------------------<br>
&gt; &gt; &gt; &gt; &gt; &gt; gluster1       interbullfs    /interbullfs    geouser<br>
&gt; &gt; &gt; &gt; &gt; &gt;  ssh://geouser@gluster-geo1::<wbr>interbullfs-geo    gluster-geo2<br>
&gt; &gt; Active<br>
&gt; &gt; &gt; &gt; &gt; &gt;  Changelog Crawl    2018-02-06 11:46:08<br>
&gt; &gt; &gt; &gt; &gt; &gt; gluster2       interbullfs    /interbullfs    geouser<br>
&gt; &gt; &gt; &gt; &gt; &gt;  ssh://geouser@gluster-geo1::<wbr>interbullfs-geo    gluster-geo1<br>
&gt; &gt; &gt; &gt; Passive<br>
&gt; &gt; &gt; &gt; &gt; &gt;   N/A                N/A<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; If I shutdown the active slave the status changes to faulty<br>
&gt; &gt; &gt; &gt; &gt; &gt; and the other one continues to be passive.<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; MASTER NODE    MASTER VOL     MASTER BRICK    SLAVE USER    SLAVE<br>
&gt; &gt; &gt; &gt; &gt; &gt;                                 SLAVE NODE      STATUS     CRAWL<br>
&gt; &gt; STATUS<br>
&gt; &gt; &gt; &gt; &gt; &gt; LAST_SYNCED<br>
&gt; &gt; &gt; &gt; &gt; &gt; ------------------------------<wbr>------------------------------<br>
&gt; &gt; &gt; &gt; &gt; &gt; ------------------------------<wbr>------------------------------<br>
&gt; &gt; &gt; &gt; &gt; &gt; ------------------------------<wbr>----------<br>
&gt; &gt; &gt; &gt; &gt; &gt; gluster1       interbullfs    /interbullfs    geouser<br>
&gt; &gt; &gt; &gt; &gt; &gt;  ssh://geouser@gluster-geo1::<wbr>interbullfs-geo    N/A<br>
&gt; &gt;  Faulty<br>
&gt; &gt; &gt; &gt; &gt; &gt;  N/A             N/A<br>
&gt; &gt; &gt; &gt; &gt; &gt; gluster2       interbullfs    /interbullfs    geouser<br>
&gt; &gt; &gt; &gt; &gt; &gt;  ssh://geouser@gluster-geo1::<wbr>interbullfs-geo    gluster-geo1<br>
&gt; &gt; &gt; &gt; Passive<br>
&gt; &gt; &gt; &gt; &gt; &gt;   N/A             N/A<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; In my understanding I thought that if the active slave stopped<br>
&gt; &gt; &gt; &gt; &gt; &gt; working the passive slave should become active and should<br>
&gt; &gt; &gt; &gt; &gt; &gt; continue to replicate from master.<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; Am I wrong? Is there just one active slave if it is setup as<br>
&gt; &gt; &gt; &gt; &gt; &gt; a distributed system?<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; The Active/Passive notion is for master node. If gluster1 master<br>
&gt; &gt; node is<br>
&gt; &gt; &gt; &gt; &gt; down  glusterd2 master node will become Active.<br>
&gt; &gt; &gt; &gt; &gt; It&#39;s not for slave node.<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; What I use:<br>
&gt; &gt; &gt; &gt; &gt; &gt; Centos 7, gluster 3.12<br>
&gt; &gt; &gt; &gt; &gt; &gt; I have followed the geo instructions:<br>
&gt; &gt; &gt; &gt; &gt; &gt; <a href="http://docs.gluster.org/en/latest/Administrator%20Guide/Geo%" rel="noreferrer" target="_blank">http://docs.gluster.org/en/<wbr>latest/Administrator%20Guide/<wbr>Geo%</a><br>
&gt; &gt; &gt; &gt; 20Replication/<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; Many thanks in advance!<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; Bets regards<br>
&gt; &gt; &gt; &gt; &gt; &gt; Marcus<br>
&gt; &gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; &gt; --<br>
&gt; &gt; &gt; &gt; &gt; &gt; ******************************<wbr>********************<br>
&gt; &gt; &gt; &gt; &gt; &gt; * Marcus Pedersén                                *<br>
&gt; &gt; &gt; &gt; &gt; &gt; * System administrator                           *<br>
&gt; &gt; &gt; &gt; &gt; &gt; ******************************<wbr>********************<br>
&gt; &gt; &gt; &gt; &gt; &gt; * Interbull Centre                               *<br>
&gt; &gt; &gt; &gt; &gt; &gt; * ================                               *<br>
&gt; &gt; &gt; &gt; &gt; &gt; * Department of Animal Breeding &amp; Genetics — SLU *<br>
&gt; &gt; &gt; &gt; &gt; &gt; * Box 7023, SE-750 07                            *<br>
&gt; &gt; &gt; &gt; &gt; &gt; * Uppsala, Sweden                                *<br>
&gt; &gt; &gt; &gt; &gt; &gt; ******************************<wbr>********************<br>
&gt; &gt; &gt; &gt; &gt; &gt; * Visiting address:                              *<br>
&gt; &gt; &gt; &gt; &gt; &gt; * Room 55614, Ulls väg 26, Ultuna                *<br>
&gt; &gt; &gt; &gt; &gt; &gt; * Uppsala                                        *<br>
&gt; &gt; &gt; &gt; &gt; &gt; * Sweden                                         *<br>
&gt; &gt; &gt; &gt; &gt; &gt; *                                                *<br>
&gt; &gt; &gt; &gt; &gt; &gt; * Tel: +46-(0)18-67 1962                         *<br>
&gt; &gt; &gt; &gt; &gt; &gt; *                                                *<br>
&gt; &gt; &gt; &gt; &gt; &gt; ******************************<wbr>********************<br>
&gt; &gt; &gt; &gt; &gt; &gt; *     ISO 9001 Bureau Veritas No SE004561-1      *<br>
&gt; &gt; &gt; &gt; &gt; &gt; ******************************<wbr>********************<br>
&gt; &gt; &gt; &gt; &gt; &gt; ______________________________<wbr>_________________<br>
&gt; &gt; &gt; &gt; &gt; &gt; Gluster-users mailing list<br>
&gt; &gt; &gt; &gt; &gt; &gt; <a href="mailto:Gluster-users@gluster.org">Gluster-users@gluster.org</a><br>
&gt; &gt; &gt; &gt; &gt; &gt; <a href="http://lists.gluster.org/mailman/listinfo/gluster-users" rel="noreferrer" target="_blank">http://lists.gluster.org/<wbr>mailman/listinfo/gluster-users</a><br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; &gt; --<br>
&gt; &gt; &gt; &gt; &gt; Thanks and Regards,<br>
&gt; &gt; &gt; &gt; &gt; Kotresh H R<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; --<br>
&gt; &gt; &gt; &gt; ******************************<wbr>********************<br>
&gt; &gt; &gt; &gt; * Marcus Pedersén                                *<br>
&gt; &gt; &gt; &gt; * System administrator                           *<br>
&gt; &gt; &gt; &gt; ******************************<wbr>********************<br>
&gt; &gt; &gt; &gt; * Interbull Centre                               *<br>
&gt; &gt; &gt; &gt; * ================                               *<br>
&gt; &gt; &gt; &gt; * Department of Animal Breeding &amp; Genetics — SLU *<br>
&gt; &gt; &gt; &gt; * Box 7023, SE-750 07                            *<br>
&gt; &gt; &gt; &gt; * Uppsala, Sweden                                *<br>
&gt; &gt; &gt; &gt; ******************************<wbr>********************<br>
&gt; &gt; &gt; &gt; * Visiting address:                              *<br>
&gt; &gt; &gt; &gt; * Room 55614, Ulls väg 26, Ultuna                *<br>
&gt; &gt; &gt; &gt; * Uppsala                                        *<br>
&gt; &gt; &gt; &gt; * Sweden                                         *<br>
&gt; &gt; &gt; &gt; *                                                *<br>
&gt; &gt; &gt; &gt; * Tel: +46-(0)18-67 1962                         *<br>
&gt; &gt; &gt; &gt; *                                                *<br>
&gt; &gt; &gt; &gt; ******************************<wbr>********************<br>
&gt; &gt; &gt; &gt; *     ISO 9001 Bureau Veritas No SE004561-1      *<br>
&gt; &gt; &gt; &gt; ******************************<wbr>********************<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; --<br>
&gt; &gt; &gt; Thanks and Regards,<br>
&gt; &gt; &gt; Kotresh H R<br>
&gt; &gt;<br>
&gt; &gt; --<br>
&gt; &gt; ******************************<wbr>********************<br>
&gt; &gt; * Marcus Pedersén                                *<br>
&gt; &gt; * System administrator                           *<br>
&gt; &gt; ******************************<wbr>********************<br>
&gt; &gt; * Interbull Centre                               *<br>
&gt; &gt; * ================                               *<br>
&gt; &gt; * Department of Animal Breeding &amp; Genetics — SLU *<br>
&gt; &gt; * Box 7023, SE-750 07                            *<br>
&gt; &gt; * Uppsala, Sweden                                *<br>
&gt; &gt; ******************************<wbr>********************<br>
&gt; &gt; * Visiting address:                              *<br>
&gt; &gt; * Room 55614, Ulls väg 26, Ultuna                *<br>
&gt; &gt; * Uppsala                                        *<br>
&gt; &gt; * Sweden                                         *<br>
&gt; &gt; *                                                *<br>
&gt; &gt; * Tel: +46-(0)18-67 1962                         *<br>
&gt; &gt; *                                                *<br>
&gt; &gt; ******************************<wbr>********************<br>
&gt; &gt; *     ISO 9001 Bureau Veritas No SE004561-1      *<br>
&gt; &gt; ******************************<wbr>********************<br>
&gt; &gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Thanks and Regards,<br>
&gt; Kotresh H R<br>
<br>
--<br>
******************************<wbr>********************<br>
* Marcus Pedersén                                *<br>
* System administrator                           *<br>
******************************<wbr>********************<br>
* Interbull Centre                               *<br>
* ================                               *<br>
* Department of Animal Breeding &amp; Genetics — SLU *<br>
* Box 7023, SE-750 07                            *<br>
* Uppsala, Sweden                                *<br>
******************************<wbr>********************<br>
* Visiting address:                              *<br>
* Room 55614, Ulls väg 26, Ultuna                *<br>
* Uppsala                                        *<br>
* Sweden                                         *<br>
*                                                *<br>
* Tel: +46-(0)18-67 1962                         *<br>
*                                                *<br>
******************************<wbr>********************<br>
*     ISO 9001 Bureau Veritas No SE004561-1      *<br>
******************************<wbr>********************<br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div>Thanks and Regards,<br></div>Kotresh H R<br></div></div>
</div>