#idempiere IRC log for Wednesday, 2015-12-02

*** hieplq has joined #idempiere01:01
*** hieplq has quit IRC02:11
*** hieplq has joined #idempiere02:16
*** CarlosRuiz has quit IRC02:20
*** a42niem has joined #idempiere04:20
Not-c3a5[IDEMPIERE] deepak updated IDEMPIERE-2955 assignee set to "Deepak Pansheriya"05:34
Not-c3a5[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-295505:34
*** silphium has joined #idempiere06:19
*** nmicoud has joined #idempiere07:47
*** hieplq has quit IRC09:13
*** gschneider has joined #idempiere11:09
*** ngordon7000 has joined #idempiere11:22
*** hieplq has joined #idempiere11:57
*** CarlosRuiz has joined #idempiere12:08
*** ChanServ sets mode: +o CarlosRuiz12:08
*** aguerra has joined #idempiere12:37
aguerraGood morning and Feliz cumplaƱos CarlosRuiz, how was?12:38
CarlosRuizHi aguerra - thanks - it was good   :-)12:38
aguerra:-)12:40
a42niemyeah! CarlosRuiz Happy Birthday afterwards!12:41
aguerraany one has a integration with magneto that want to share ?12:42
*** Deepak has joined #idempiere12:48
CarlosRuizthanks a42niem  :)12:48
*** smartjsp has joined #idempiere12:58
DeepakCarlos, Happy Be lated Birthday12:59
*** HideakiHagiwara has joined #idempiere12:59
CarlosRuizGood morning13:00
DeepakGood Morning All13:00
HideakiHagiwaraGood morning :D13:00
CarlosRuiz:) Thanks Deepak13:07
smartjspGood Morning everyone ....13:09
DeepakGood Morning Pedro13:10
DeepakCarlos, I want to discuss about single session implementation you did13:11
DeepakWe took same route first and then we just detoured considering some risk13:11
smartjspgood to hear from you side Deepak ...13:11
DeepakRisk are may be keeping compiere service object connected for longer time13:11
DeepakAnd second risk is sharing ctx between multiple request13:12
hieplq@CarlosRuiz, i tested ant download from sourceforge, and it do without any delay.13:13
DeepakSo what we did is cloned Ctx just after first login and if we are getting authentication login, then we are just adding clone of cached ctx. This save us from time spent for login and role verifcation13:14
Deepaksmartjsp thanks13:15
CarlosRuizhieplq, that sounds good13:17
CarlosRuizwhat is your sourceforge user?13:17
hieplqi forget it, so i download form zkoss13:17
CarlosRuizcan you please check?  is to give you upload permissions on sf13:18
DeepakIf all interested I would like to ask opinion for new iDempiere portal theme13:18
Deepakhttps://docs.google.com/spreadsheets/d/1hewQbFa4QUIdxDka1Hd3uQJKNgzdVHD2SRmRmJIivtU/edit#gid=013:18
DeepakHere I had listed some13:18
hieplqhi @Deepak, need request right to access?13:19
CarlosRuizDeepak, the main goal we talked at Bischofstein about improving performance on webservices was about to reuse the same session13:19
DeepakPlease send, So I can give you access13:19
Deepakhieplq, access granted13:21
CarlosRuizI'm trying with my proposed patch to achieve that without adding anything to webservices - is full backward compatible13:21
Deepak@carlosRuiz, yes and performance will be almost same of with both approach13:21
DeepakCurrently major time taken for small request is for login13:21
CarlosRuizAs I understood your patch didn't implement that13:21
Deepak@CarlosRuiz, my patch is backward compitable now, But it has added nillable additional element in login request13:22
hieplq@CarlosRuiz, it's hiepgau13:23
DeepakNorbert tested backward compitablity as he is using lots of web service13:24
hieplqthanks @Deepak13:24
CarlosRuizI mean backward compatible is that it didn't add anything to the webservices - I didn't change or added any field13:24
CarlosRuizI didn't add tokens or anything - it just reuse the same login info13:24
DeepakYes, Carlos13:24
CarlosRuizbut - again - what Saul told me before and you confirmed is that in your patch it didn't implement the reuse of session13:24
DeepakBut for Authentication token implementation, We need to add this field later13:25
DeepakYes, there is no reuse of session13:25
CarlosRuizso - I want to firstly solve that13:25
CarlosRuizand my patch propose a way to solve it without impact to the actual web services13:25
CarlosRuizthen we look for the auth token - which I think has a different goal13:26
DeepakBut I see risk of 2 web service interfering with each other13:26
DeepakFor example if you made 2 composite request call, With same credential and they try to use same session13:27
DeepakWe need to test for this13:27
Deepakif one service pickup ctx variable from other service and it become non predictable behavior13:27
CarlosRuizgood idea for a test case13:28
DeepakYes13:28
CarlosRuizif the session comes from the same IP with same login data - it will try to reuse the same session13:29
DeepakAs I mentioned we first did same approach like you, and then when I start thinking all possible things, I concluded that it is my wrong decision to share compiere service object between session13:29
CarlosRuiznot sure about that risk - is the same session with same login data - which is the risk?13:30
DeepakNo13:30
DeepakUsing compiere service object between multiple request13:31
DeepakI like your idea of same login detail using to avoid relogin13:31
CarlosRuizhieplq, you have permissions to upload to idempiere now -> https://sourceforge.net/projects/idempiere/13:32
CarlosRuizI think could be good to create a folder there libraries/3.1  ?13:33
CarlosRuizor "jarfiles" ?13:33
hieplqyes. will do13:35
CarlosRuizand I think can be good to have one folder per version - so we could materialize old versions in future13:36
Deepak@CarlosRuiz13:38
DeepakShould we continue with exp branch concept or just use patch?13:38
DeepakCreating Exp branch for just one ticket not looks good idea13:39
CarlosRuizDeepak, yes - I haven't checked if every webservice call is threaded or all of them are using the same thread - if all using the same thread then there's a risk there about mixing stuff - unless the process is sequential13:39
Deepak@CarlosRuiz, I am thinking that once this tested, We need to merge your patch and our patch for taking better things13:40
CarlosRuizI prefer not to mix them in principle13:41
CarlosRuizexperimental is suggested for potentially disruptive things13:41
CarlosRuizabout the reuse session - I'm trying to make it non-disruptive - changing the less possible - to integrate into 3.113:43
CarlosRuizfor the auth tokens - we need to check how disruptive it will be - but I prefer not to mix both - different goals13:43
Deepak@carlosRuiz, in terms of backward compatibility, it will not stop existing service to work13:48
DeepakAlso for existing service there will not be any behavior change13:48
DeepakAs Token is additional non required field, and also this behavior start after a system configuration, untill user do not enable it, it should work same way13:49
CarlosRuizgood - that's what I need to test13:51
CarlosRuizbut first I want to tackle the performance / thousand-sessions issue13:51
Deepak@CarlosRuiz, Visitor here13:53
DeepakWe can discuss further later, May be over skype13:53
*** norbertbede has joined #idempiere13:56
norbertbedehi all13:56
CarlosRuizHi norbertbede14:00
*** smartjsp has quit IRC14:08
*** norbertbede has quit IRC14:17
*** KermitTheFragger has joined #idempiere14:24
*** norbertbede has joined #idempiere14:40
*** HideakiHagiwara has quit IRC14:46
Not-c3a5[IDEMPIERE] hieplq updated IDEMPIERE-2940 Attachment set to "IDEMPIERE-2940-moveFileServer.patch"14:56
Not-c3a5[IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-294014:56
hieplq@CarlosRuiz, maybe you ask jenkins server for test this https://idempiere.atlassian.net/secure/attachment/23101/IDEMPIERE-2940-moveFileServer.patch14:58
hieplqtoday, my network is slow to test materialize14:58
*** ngordon7000 has quit IRC15:04
*** ChanServ has quit IRC15:34
*** Deepak has quit IRC15:34
*** gschneider has quit IRC15:34
*** aguerra has quit IRC15:35
*** CarlosRuiz has quit IRC15:35
*** nmicoud has quit IRC15:35
*** a42niem has quit IRC15:35
*** KermitTheFragger has quit IRC15:36
*** RecordingBot has joined #idempiere15:39
*** posde has joined #idempiere15:40
*** norbertbede has joined #idempiere15:40
*** hieplq has joined #idempiere15:40
*** Not-c3a5 has joined #idempiere15:40
*** RecordingBot` has joined #idempiere15:40
*** Deepak has joined #idempiere15:42
*** gschneider has joined #idempiere15:42
aguerraCarlos Ruiz, i am trying to use NF 1.0 GL Journal Generator, how i select the period of adjust when generated the note15:43
aguerraok i see that in the GL Journal that was generated we need to change for that period, no ?15:50
*** norbertbede has quit IRC15:52
*** hieplq has quit IRC15:52
*** Not-c3a5 has quit IRC15:52
*** RecordingBot` has quit IRC15:52
*** a42niem has joined #idempiere15:59
*** a42niem has quit IRC16:09
*** a42niem has joined #idempiere16:12
*** RecordingBot has joined #idempiere16:21
*** orwell.freenode.net sets mode: +ns 16:21
*** Not-42d1 has joined #idempiere16:27
Not-42d1[iDempiere3.1] jenkins built #15 completed (failure) http://ci.idempiere.org/job/iDempiere3.1/15/16:27
*** orwell.freenode.net sets mode: -o RecordingBot16:28
-orwell.freenode.net- *** Notice -- TS for #idempiere changed from 1449073310 to 130342441616:28
*** orwell.freenode.net sets mode: +ct-s 16:28
*** a42niem has joined #idempiere16:28
*** orwell.freenode.net sets mode: +bbb Michael_Judd!*@* *!*~juddm*@*.6-3.cable.virginmedia.com trifon*!*@*16:28
*** orwell.freenode.net changes topic to "This IRC is being recorded and published openly. Meetings every wednesday 13:00 UTC."16:28
*** gschneider has joined #idempiere16:46
*** posde has joined #idempiere16:46
*** CarlosRuiz has joined #idempiere16:46
*** aguerra has joined #idempiere16:46
*** orwell.freenode.net sets mode: +o CarlosRuiz16:46
aguerrathank CarlosRuiz,16:55
*** aguerra has quit IRC16:55
Not-42d1[iDempiere3.1] jenkins built #16 completed (success) http://ci.idempiere.org/job/iDempiere3.1/16/17:03
*** ChanServ has joined #idempiere17:04
*** orwell.freenode.net sets mode: +o ChanServ17:04
*** hieplq has joined #idempiere17:06
CarlosRuizthanks hieplq - integrated your patch and fixed the sourceforge links17:10
*** mand1nga has joined #idempiere17:42
*** a42niem has quit IRC17:49
hieplqthanks @CarlosRuiz. when you recreate experience branch, please notify me.17:54
*** hieplq has quit IRC18:09
*** CarlosRuiz has quit IRC18:29
*** mand1nga has quit IRC19:07
*** norbertbede1 has joined #idempiere19:28
*** norbertbede1 has joined #idempiere19:40
*** gschneider has quit IRC19:47
*** a42niem has joined #idempiere19:58
*** norbertbede1 has quit IRC20:25
*** norbertbede has joined #idempiere20:42
*** norbertbede has quit IRC21:49
*** CarlosRuiz has joined #idempiere22:54
*** ChanServ sets mode: +o CarlosRuiz22:54
*** a42niem has quit IRC23:23

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!