Project

General

Profile

Feature #2184

create and populate the temp-table on the remote side, based on the received metadata and result set

Added by Greg Shah over 10 years ago. Updated over 7 years ago.

Status:
Closed
Priority:
Normal
Start date:
Due date:
% Done:

100%

Estimated time:
32.00 h
billable:
No
vendor_id:
GCD

ca_upd20140407a.zip (33.1 KB) Constantin Asofiei, 04/07/2014 03:30 AM

svl_upd20140415a.zip (137 KB) Stanislav Lomany, 04/15/2014 09:36 AM

svl_upd20140508a.zip (137 KB) Stanislav Lomany, 05/08/2014 07:09 AM

svl_upd20140519a.zip (137 KB) Stanislav Lomany, 05/19/2014 07:33 AM


Related issues

Related to Base Language - Feature #1608: implement full appserver support (from 4GL clients only) Closed 02/08/2013 05/24/2013
Blocked by Database - Feature #2122: add runtime support for dynamically prepared temp-tables Closed 04/11/2013 06/18/2013

History

#1 Updated by Eric Faulhaber over 10 years ago

  • Assignee changed from Constantin Asofiei to Stanislav Lomany

#2 Updated by Greg Shah over 10 years ago

  • Target version changed from Milestone 7 to Milestone 12

This comes into play to dynamically create and/or populate an input temp-table (on the appserver side) or an output temp-table (on the requester 4GL side).

#3 Updated by Eric Faulhaber over 10 years ago

  • Assignee changed from Stanislav Lomany to Constantin Asofiei
  • Target version changed from Milestone 12 to Milestone 5
  • Start date deleted (10/07/2013)

#4 Updated by Eric Faulhaber about 10 years ago

  • Target version changed from Milestone 5 to Milestone 11
  • Assignee changed from Constantin Asofiei to Stanislav Lomany

#5 Updated by Stanislav Lomany about 10 years ago

Guys, there is an issue with scoping on app server. Consider a simple testcase:

def temp-table tt
     field field-one as integer
     field field-two as char.

create tt.
tt.field-one = 3. tt.field-two = "field 3".
create tt.
tt.field-one = 4. tt.field-two = "field 4".

message "appserver external program 2 ran".
for each tt:
   message string(tt.field-one) + "    " + string(tt.field-two).
end.

It does the job, but finishes with two warnings and exception:

[04/05/2014 12:52:07 TMT] (com.goldencode.p2j.persist.trigger.DatabaseTriggerManager:WARNING) Invalid scope finished.
[04/05/2014 12:52:07 TMT] (com.goldencode.p2j.persist.trigger.DatabaseTriggerManager:WARNING) Invalid scope finished.
[04/05/2014 12:52:07 TMT] (com.goldencode.p2j.util.Agent:WARNING) Agent encountered an error while executing a command for appserver app_server
java.lang.NullPointerException
        at com.goldencode.p2j.persist.BufferManager.scopeDeleted(BufferManager.java:808)
        at com.goldencode.p2j.util.ProcedureManager.delete(ProcedureManager.java:1087)
        at com.goldencode.p2j.util.ExternalProgramWrapper.delete(ExternalProgramWrapper.java:735)
        at com.goldencode.p2j.util.Agent$9.execute(Agent.java:1131)
        at com.goldencode.p2j.util.Agent.listen(Agent.java:349)
        at com.goldencode.p2j.util.AgentPool.start(AgentPool.java:409)
        at com.goldencode.p2j.util.AppServerManager.startAppServer(AppServerManager.java:766)
        at com.goldencode.p2j.main.StandardServer.standardEntry(StandardServer.java:265)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:601)
        at com.goldencode.p2j.util.MethodInvoker.invoke(MethodInvoker.java:76)
        at com.goldencode.p2j.net.Dispatcher.processInbound(Dispatcher.java:693)
        at com.goldencode.p2j.net.Conversation.block(Conversation.java:319)
        at com.goldencode.p2j.net.Conversation.run(Conversation.java:163)
        at java.lang.Thread.run(Thread.java:722)

The issue is about the global scope which is popped by scopeFinished, and when scopeDeleted comes into play loadedBuffers has no scopes.

public void scopeDeleted()
   {
      Object referent = ProcedureManager.getProcessedProcedure();
      PersistentProcScope scope = persistProcScopes.get(referent);
      // this needs to be executed only when the procedure gets deleted.
      if (referent != null && scope != null && !ProcedureManager._isPersistent(referent))
      {
         // remove all these from the global scope
         loadedBuffers.getDictionaryAtScope(loadedBuffers.size() - 1, true)
                      .keySet().removeAll(scope.loadedBuffers.keySet());

Simple loadedBuffers.size() > 0 check works as workaround for me, but warnings remain.
I'm not sure how this code is supposed to work.

#6 Updated by Constantin Asofiei about 10 years ago

Stanislav, you are correct: the loadedBuffers.size() > 0 check is needed in scopeDeleted(). The problem here is that an appserver persistent procedure can be deleted when the connection terminates, and at this time the appserver agent has no active scopes (as the procedure has finished executing). The code wants to remove from the global scope all the buffers associated with the persistent procedure, but in this case, as the global scope is no more, it needs to be a no-op.

The warnings are related to something else: the DatabaseTriggerManager's context-local var needs to be loaded each time the agent initiates or resets its context.

See attached for both fixes. You can integrate them and regression test them with your update.

#7 Updated by Stanislav Lomany about 10 years ago

Guys, consider an external persistent procedure and a buffer scoped to that procedure. When we call an internal procedure from that external procedure which references that buffer then we do not have a proper record for that buffer in allBuffers. I see that that contents of allBuffers is saved into PersistentProcScope.allBuffers on external procedure call, but I cannot find where they are restored (should they?) when internal one is called. Note that topmost scope for the external procedure is also deleted.

#8 Updated by Constantin Asofiei about 10 years ago

Stanislav Lomany wrote:

Note that topmost scope for the external procedure is also deleted.

I think the problem is here. When an appserver procedure is ran persistent and its topmost scope is finished, I think BufferManager needs to be aware of this and keep the global (and current?) scope for the ScopedDictionary variables.

When a persistent proc is deleted and BufferManager.scopeDeleted is called, this needs to remove all the data saved in the PersistentProcScope instance from the BufferManager - see the scopeDeleted implementation.

#9 Updated by Stanislav Lomany about 10 years ago

I think the problem is here. When an appserver procedure is ran persistent and its topmost scope is finished, I think BufferManager needs to be aware of this and keep the global (and current?) scope for the ScopedDictionary variables.

The scope which is referenced as "global" in the comments

// add all these to the global scope, too
allBuffers.getDictionaryAtScope(allBuffers.size() - 1, true).putAll(scope.allBuffers);

is actually the "startup" scope:

// add the topmost scope to the TransactionManager
TransactionManager.pushScope("startup", TransactionManager.NO_TRANSACTION,...);
...
// remove the topmost scope from the TransactionManager
TransactionManager.popScope();

Where should we "keep" the values - in the global scopes (should we add them?) of scoped dictionaries inside BufferManager or separately in PersistentProcScope?

#10 Updated by Constantin Asofiei about 10 years ago

Stanislav Lomany wrote:

Where should we "keep" the values - in the global scopes (should we add them?) of scoped dictionaries inside BufferManager or separately in PersistentProcScope?

I think we need a real global scope, for the appserver agents, created just below the "startup" scope. The PersistentProcScope instances just keep data about to the buffers which need to be deleted when the procedure gets deleted, I don't want to use it for anything else than that, as will complicate things in BufferManager. Instead, following might work:
  1. at the end of Agent.prepare, use TM.pushScope to push an appserver-agent scope (similar to the "startup" scope).
  2. in Agent$ResetContextCommand.execute, before calling resetContext, call TM.popScope to pop the appserver-agent scope.

This will allow a global, per-agent, scope, in which the surviving buffers can be "leaked".

#11 Updated by Stanislav Lomany about 10 years ago

Constantin, is there a simple way do determine that the specific context is run using an agent?

#12 Updated by Constantin Asofiei about 10 years ago

Stanislav Lomany wrote:

Constantin, is there a simple way do determine that the specific context is run using an agent?

Yes, use AppServerManager.isRemote - it will return true if this context is for an agent.

#13 Updated by Stanislav Lomany about 10 years ago

Update for review.

#14 Updated by Eric Faulhaber almost 10 years ago

Stas, I apologize it has taken so long for me to review this. Because of this delay, it is no longer in sync with the latest bzr revision; please sync it up.

Constantin: The update looks OK to me, but I am out of my depth with the appserver implications. Once Stas has sync'd to the latest revision, please review also.

#15 Updated by Stanislav Lomany almost 10 years ago

Merged with the latest revision.

#16 Updated by Constantin Asofiei almost 10 years ago

Stanislav Lomany wrote:

Merged with the latest revision.

Stanislav, the logic looks good to me.

#17 Updated by Stanislav Lomany almost 10 years ago

Merged update.

#18 Updated by Stanislav Lomany almost 10 years ago

  • Status changed from WIP to Review

#19 Updated by Eric Faulhaber almost 10 years ago

  • % Done changed from 0 to 100
  • Status changed from Review to Closed

#20 Updated by Greg Shah over 7 years ago

  • Target version changed from Milestone 11 to Cleanup and Stablization for Server Features

Also available in: Atom PDF