Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Hardik Juneja
erp5
Commits
90a59073
Commit
90a59073
authored
Oct 27, 2017
by
Hardik Juneja
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CMFActivity: Make ValidationErrorDelay overridable and change getResult to getResultDict
parent
36290703
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
25 additions
and
13 deletions
+25
-13
product/CMFActivity/ActiveProcess.py
product/CMFActivity/ActiveProcess.py
+10
-7
product/CMFActivity/Activity/Queue.py
product/CMFActivity/Activity/Queue.py
+4
-1
product/CMFActivity/Activity/SQLBase.py
product/CMFActivity/Activity/SQLBase.py
+2
-1
product/CMFActivity/Activity/SQLJoblib.py
product/CMFActivity/Activity/SQLJoblib.py
+4
-1
product/CMFActivity/ActivityJoblibBackend.py
product/CMFActivity/ActivityJoblibBackend.py
+5
-3
No files found.
product/CMFActivity/ActiveProcess.py
View file @
90a59073
...
...
@@ -146,21 +146,24 @@ class ActiveProcess(Base):
except
AttributeError
:
# BBB: self was created before implementation of __init__
return
[]
if
type
(
result_list
)
is
not
ConflictFreeLog
:
# BBB: result_list is IOBTree
if
type
(
result_list
)
is
not
ConflictFreeLog
:
# BBB: result_list is IOBTree or LOBTree
return
result_list
.
values
()
return
list
(
result_list
)
security
.
declareProtected
(
CMFCorePermissions
.
ManagePortal
,
'getResult'
)
def
getResult
(
self
,
key
,
**
kw
):
def
getResult
Dict
(
self
,
**
kw
):
"""
Returns the result
with requested key else None
Returns the result
Dict
"""
try
:
result_list
=
self
.
result_list
result
=
result_list
[
key
]
except
KeyError
:
return
None
return
result
except
AttributeError
:
return
{}
if
type
(
result_list
)
is
not
ConflictFreeLog
:
return
result_list
else
:
return
{}
security
.
declareProtected
(
CMFCorePermissions
.
ManagePortal
,
'activateResult'
)
def
activateResult
(
self
,
result
):
...
...
product/CMFActivity/Activity/Queue.py
View file @
90a59073
...
...
@@ -43,7 +43,7 @@ INVALID_ORDER = 2
# Time global parameters
MAX_PROCESSING_TIME
=
900
# in seconds
VALIDATION_ERROR_DELAY
=
1
# in seconds
VALIDATION_ERROR_DELAY
=
1
5
# in seconds
class
Queue
(
object
):
"""
...
...
@@ -261,3 +261,6 @@ class Queue(object):
Values out of this range might work, but are non-standard.
"""
return
128
def
getValidationErrorDelay
(
self
):
return
VALIDATION_ERROR_DELAY
product/CMFActivity/Activity/SQLBase.py
View file @
90a59073
...
...
@@ -37,7 +37,7 @@ from Products.CMFActivity.ActivityTool import (
Message
,
MESSAGE_NOT_EXECUTED
,
MESSAGE_EXECUTED
,
SkippedMessage
)
from
Products.CMFActivity.ActivityRuntimeEnvironment
import
(
DEFAULT_MAX_RETRY
,
ActivityRuntimeEnvironment
,
getTransactionalVariable
)
from
Queue
import
Queue
,
VALID
ATION_ERROR_DELAY
,
VALID
,
INVALID_PATH
from
Queue
import
Queue
,
VALID
,
INVALID_PATH
from
Products.CMFActivity.Errors
import
ActivityFlushError
# TODO: Limit by size in bytes instead of number of rows.
...
...
@@ -571,6 +571,7 @@ class SQLBase(Queue):
make_available_uid_list
=
[]
notify_user_list
=
[]
executed_uid_list
=
deletable_uid_list
VALIDATION_ERROR_DELAY
=
self
.
getValidationErrorDelay
()
if
uid_to_duplicate_uid_list_dict
is
not
None
:
for
m
in
message_list
:
if
m
.
getExecutionState
()
==
MESSAGE_NOT_EXECUTED
:
...
...
product/CMFActivity/Activity/SQLJoblib.py
View file @
90a59073
...
...
@@ -31,13 +31,13 @@ from functools import total_ordering
from
zLOG
import
LOG
,
TRACE
,
INFO
,
WARNING
,
ERROR
,
PANIC
from
SQLBase
import
SQLBase
,
sort_message_key
from
Products.CMFActivity.ActivityTool
import
Message
from
Queue
import
Queue
,
VALIDATION_ERROR_DELAY
,
VALID
,
INVALID_PATH
# Stop validating more messages when this limit is reached
MAX_VALIDATED_LIMIT
=
1000
# Read this many messages to validate.
READ_MESSAGE_LIMIT
=
1000
VALIDATION_ERROR_DELAY
=
1
_DequeueMessageException
=
Exception
()
from
SQLDict
import
SQLDict
...
...
@@ -49,6 +49,9 @@ class SQLJoblib(SQLDict):
sql_table
=
'message_job'
uid_group
=
'portal_activity_job'
def
getValidationErrorDelay
(
self
):
return
VALIDATION_ERROR_DELAY
def
initialize
(
self
,
activity_tool
,
clear
):
"""
Initialize the message table using MYISAM Engine
...
...
product/CMFActivity/ActivityJoblibBackend.py
View file @
90a59073
...
...
@@ -68,9 +68,10 @@ if ENABLE_JOBLIB:
self
.
callback
=
callback
def
get
(
self
,
timeout
=
None
):
if
self
.
active_process
.
getResult
(
self
.
active_process_sig
)
is
None
:
resultDict
=
self
.
active_process
.
getResultDict
()
if
not
resultDict
.
has_key
(
self
.
active_process_sig
):
raise
ConflictError
result
=
self
.
active_process
.
getResult
(
self
.
active_process_sig
)
.
result
result
=
resultDict
[
self
.
active_process_sig
]
.
result
if
isinstance
(
result
,
Exception
):
raise
result
...
...
@@ -101,7 +102,8 @@ if ENABLE_JOBLIB:
# create a signature and convert it to integer
sig
=
joblib_hash
(
batch
.
items
[
0
])
sigint
=
int
(
sig
,
16
)
%
(
10
**
16
)
if
not
self
.
active_process
.
getResult
(
sigint
):
resultDict
=
self
.
active_process
.
getResultDict
()
if
not
resultDict
.
has_key
(
sigint
):
joblib_result
=
portal_activities
.
activate
(
activity
=
'SQLJoblib'
,
tag
=
"joblib_%s"
%
active_process_id
,
signature
=
sig
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment