Oracle® Fusion Middleware Release Notes 11g Release 1 (11.1.1) for Solaris Operating System (SPARC 64-Bit) Part Number E14772-05 |
|
|
View PDF |
This chapter describes issues associated with Oracle Business Rules. It includes the following topics:
This section describes general issues and workarounds. It includes the following topics:
Section 18.1.1, "The MigrateRuleRepository Command Can Return an Incorrect Error Message"
Section 18.1.2, "Migration of Common Java Classes with Aliases Applied"
Section 18.1.3, "Alias and Visibility Settings Not Always Applied to Migrated Dictionary"
Section 18.1.4, "Manual Updates Required for Release 10.1.3.x Migrated Dictionaries"
Section 18.1.5, "Migrator Does not Migrate Certain Java Fact Type Properties"
Section 18.1.6, "Migrator Throws a RUL-05003 Warning in Some Cases"
Section 18.1.7, "Runtime Changes to Dictionary May Cause Error with Decision Point"
Section 18.1.8, "Decision Table Find Gaps with Overlap Does Not Produce Correct Rules"
If the MigrateRuleRepository
utility is used with an existing migrated dictionary structure in the destination path, the following error is returned:
oracle.rules.tools.migrator.MigrationException: failed to connect to destination repository C:\migration\FooRepository-migrated/Foo/INITIAL
This error should report a message indicating that a migrated dictionary structure already exists in the destination location.
Workaround:
The workaround is to delete the migrated dictionary structure in the destination path, and run the MigrateRuleRepository
utility again.
In Oracle Fusion Middleware 11g Release 1 (11.1.1), there is the concept of the "built-in" dictionary which is linked to by all other dictionaries. The built-in dictionary includes fact types for several common Java classes, including: Object
, String
, BigInteger
, BigDecimal
, Calendar
, XMLGregorianCalendar
, List
, and JAXBElement
.
There is a limitation when you are migrating a Release 10.1.3.x dictionary to Oracle Fusion Middleware 11g Release 1 (11.1.1). In Oracle Business Rules Release 10.1.3.x, all classes had to be imported into each dictionary, including Object
which was imported by default. Thus, a user could import the common Java class fact types and change the aliases for properties, methods, and fields. In Oracle Fusion Middleware 11g Release 1 (11.1.1), for such classes users cannot specify custom aliases and these fact types are not migrated from a Release 10.1.3.x dictionary that is being migrated to Oracle Fusion Middleware 11g Release 1 (11.1.1). Thus, if an alias is applied for a common Java class that is part of the built-in dictionary, in Oracle Fusion Middleware 11g Release 1 (11.1.1) these aliases are discarded and the aliases are not available to use in rules.
Workaround:
There is no workaround for this issue.
During dictionary migration from Oracle Business Rules Release 10.1.3.x, Java classes are imported into the new Oracle Fusion Middleware 11g Release 1 (11.1.1) dictionary and then aliases and visibility settings are applied. A bug in the migration prevents the identification of some methods so that alias and visibility settings can be applied.
Workaround:
In such cases, the alias and visibility settings that applied for the Oracle Business Rules Release 10.1.3.x dictionary must be manually applied to the destination Oracle Fusion Middleware 11g Release 1 (11.1.1) dictionary.
Restricted Simple Types
Oracle Business Rules Release 10.1.3.x uses JAXB 1.0. In JAXB 1.0 restricted simple types do not have any special support in the generated Java classes, and are mapped to a property with the same type as the simple type. Oracle Business Rules for Oracle Fusion Middleware 11g Release 1 (11.1.1) uses JAXB 2.0. In JAXB 2.0, restricted simple types of string type are transformed into Java enum values. Because of this difference, after migrating a Release 10.1.3.x dictionary, places in the dictionary that previously used raw strings to represent the restricted values must be manually updated to use the Java enum values.
xsd:dateTime in Migrated Dictionaries
Oracle Business Rules Release 10.1.3.x uses JAXB 1.0. In JAXB 1.0, xsd:dateTime
types are mapped to java.util.Calendar
. Oracle Business Rules for Oracle Fusion Middleware 11g Release 1 (11.1.1) uses JAXB 2.0. In JAXB 2.0, xsd:dateTime
types are mapped to XMLGregorianCalendar
, which more accurately contains the values of an xsd:dateTime
element. Thus, in a dictionary migrated from Release 10.1.3.x, comparisons between properties may no longer function correctly because Calendar
implements a method compareTo
and XMLGregorianCalendar
implements a method compare
. Manual changes are required in the dictionary to change the comparisons. Alternatively, in Oracle Fusion Middleware 11g Release 1 (11.1.1) you can use a Duration
to compare most common date and time formats. Making this change in a migrated dictionary requires manual changes to the data model and to the rules that use the imported fact types.
Invalid Expressions in Migrated Dictionary
Oracle Business Rules for Oracle Fusion Middleware 11g Release 1 (11.1.1) supports rich type-checking that invalidates some expressions migrated from Release 10.1.3.x. For example, if an instance of Integer
is referenced to call the intValue()
method, this may produce a validation warning if Integer
has not been imported into the data model. The solution to this issue is to import Integer
into the data model.
Index-based or Iterator-based Iteration in Collections with RL Functions
In Release 10.1.3.x, it was necessary in functions and RL actions to use index-based or iterator-based iteration over collections with raw RL. In Oracle Fusion Middleware 11g Release 1 (11.1.1), the pre-defined action type "for" implements the for-each iteration loop construct and can replace most uses of these older iteration constructs.
Calling Functions to Return New Variable Instances
In Release 10.1.3.x, it was not possible to invoke a constructor in the initialization expression for a variable. In Oracle Fusion Middleware 11g Release 1 (11.1.1) variables are called globals. Due to this Release 10.1.3.x limitation, in some Release 10.1.3.x dictionaries, there are function calls to initialize expressions and to invoke the constructor and return the new instance. In Oracle Fusion Middleware 11g Release 1 (11.1.1), you can use the new
operator in initialization expressions.
In Release 10.1.3.x, a property was created for a fact type if the fact type had either a setter or getter. In Oracle Fusion Middleware 11g Release 1 (11.1.1), a property is created only if there is both a setter and a getter for the property.
In Oracle Fusion Middleware 11g Release 1 (11.1.1), there is a requirement that Java and XML fact types in a dictionary have a single-inheritance chain as determined by visible fact types. This limitation prevents multiple-inheritance chains, including interfaces, from causing runtime exceptions in the engine. The user must specify a single-inheritance chain by marking classes which should not be considered in an inheritance chain as non-visible. When a multiple-inheritance chain is detected during validation, the follow warning is returned:
RUL-05003: The visible fact type "Foo" should only inherit from one visible fact type, but inherits from visible fact types "Bar" and "Baz".
In this case, marking either Bar
or Baz
as non-visible will fix this warning.
Saving any dictionary in a repository causes all decision points using that repository to refresh their rule session pools, even if the dictionary which they use did not change. This degrades performance, but will not cause errors in general.
Performing an action which causes a "delete" notification to occur will cause the decision point to attempt to refresh its rule session pool. An example of this is RuleRepository.saveAs, which first deletes the dictionary with the target name and then saves the new dictionary with that name. This results in a race condition if the decision point attempts to load the dictionary after it has been deleted but before the new one has been saved.
In a decision table where sibling cell values overlap in any condition row except for the last, the rules recommended by the "gap analysis" feature may be incorrect. A sibling cell is a cell in the same row and with the same parent cell or no parent cell. An example of overlap is one cell with "true" and a sibling with "-".
This section describes configuration issues and their workarounds. It includes the following topics:
If you see the error "Too Many Open Files" while deploying an Oracle Business Rules Decision Component, you might need to increase the file descriptor limit.
The "Too many open files" issue is due to JDK6 bugs. These bugs could occur at runtime or at compile time, depending on the number of JAR files used and a few other variations around the use of file descriptors by the JDK/JRE.
Workaround for this issue is to increase the limit of file descriptors. Per-process, per-user file descriptor limit can be preconfigured by default to the value 1024. If you increase this limit to 4096 or larger, the new value should resolve this issue.
These are the potentially relevant JDK6 bugs,
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6533291
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6485027
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6400872
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6456960
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6206485
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6446657
And a blog entry describes this issue at
http://coldfused.blogspot.com/2007/02/mystery-of-too-many-open-files.html
The command to increase per-process, per-user file descriptor differs across Operating Systems and shells. It is typically done with ulimit
on UNIX platforms so consult the man pages for ulimit
for your Operating System and shell.
For example:
$ ulimit -n 4096