[JBoss JIRA] (TEIID-3507) Matview vdb start/stop scripts are not cluster safe
by Steven Hawkins (JIRA)
[ https://issues.jboss.org/browse/TEIID-3507?page=com.atlassian.jira.plugin... ]
Steven Hawkins resolved TEIID-3507.
-----------------------------------
Resolution: Done
Simply updated the docs to add a warning about the start/stop scripts as moderate changes would be needed to add this check in code. We can revisit this though later if needed.
> Matview vdb start/stop scripts are not cluster safe
> ---------------------------------------------------
>
> Key: TEIID-3507
> URL: https://issues.jboss.org/browse/TEIID-3507
> Project: Teiid
> Issue Type: Quality Risk
> Components: Query Engine
> Affects Versions: 8.7
> Reporter: Steven Hawkins
> Assignee: Steven Hawkins
> Fix For: 8.12
>
>
> The on vdb start/stop scripts will run on each cluster member start. This needs to be cluster safe or documented that it won't be safe.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 2 months
[JBoss JIRA] (TEIID-3747) Deploying a .vdb where a dynamic vdb has already been deployed, fails due to duplicates
by Steven Hawkins (JIRA)
[ https://issues.jboss.org/browse/TEIID-3747?page=com.atlassian.jira.plugin... ]
Steven Hawkins updated TEIID-3747:
----------------------------------
Fix Version/s: 8.12
> Deploying a .vdb where a dynamic vdb has already been deployed, fails due to duplicates
> ---------------------------------------------------------------------------------------
>
> Key: TEIID-3747
> URL: https://issues.jboss.org/browse/TEIID-3747
> Project: Teiid
> Issue Type: Bug
> Components: Server
> Affects Versions: 8.7.1.6_2
> Reporter: Van Halbert
> Assignee: Steven Hawkins
> Fix For: 8.12
>
>
> deployed a dynamic vdb using CLI: deploy teiidfiles/vdb/portfolio-vdb.xml
> then in Designer, tried to deploy the same named VDB, but as a .vdb and the deployment fails with errors indicating duplicate service:
> 11:26:31,301 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-6) MSC000001: Failed to start service jboss.deployment.unit."Portfolio.vdb".INSTALL: org.jboss.msc.service.StartException in service jboss.deployment.unit."Portfolio.vdb".INSTALL: JBAS018733: Failed to process phase INSTALL of deployment "Portfolio.vdb"
> at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:166) [jboss-as-server-7.5.0.Final-redhat-21.jar:7.5.0.Final-redhat-21]
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1980) [jboss-msc-1.1.5.Final-redhat-1.jar:1.1.5.Final-redhat-1]
> at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1913) [jboss-msc-1.1.5.Final-redhat-1.jar:1.1.5.Final-redhat-1]
> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) [rt.jar:1.7.0_55]
> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) [rt.jar:1.7.0_55]
> at java.lang.Thread.run(Thread.java:745) [rt.jar:1.7.0_55]
> Caused by: org.jboss.msc.service.DuplicateServiceException: Service jboss.teiid.ds-listener.Portfolio.1./accounts-ds is already registered
> at org.jboss.msc.service.ServiceRegistrationImpl.setInstance(ServiceRegistrationImpl.java:158) [jboss-msc-1.1.5.Final-redhat-1.jar:1.1.5.Final-redhat-1]
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 2 months
[JBoss JIRA] (TEIID-3112) Incorrect plural name with parent to child join
by Steven Hawkins (JIRA)
[ https://issues.jboss.org/browse/TEIID-3112?page=com.atlassian.jira.plugin... ]
Steven Hawkins commented on TEIID-3112:
---------------------------------------
> This should be fixed in dv6.2, am I right ?
You first need to clarify whose issue this is. The salesforce changes here also rely on import/metadata changes. So if you start with a dynamic vdb or the Teiid connection importer and can reproduce the above, then it's a Teiid issue. If you are performing an import through Teiid Designer's salesforce importer, then it's their issue.
> Incorrect plural name with parent to child join
> -----------------------------------------------
>
> Key: TEIID-3112
> URL: https://issues.jboss.org/browse/TEIID-3112
> Project: Teiid
> Issue Type: Bug
> Components: Salesforce Connector
> Affects Versions: 7.7
> Reporter: Steven Hawkins
> Assignee: Steven Hawkins
> Fix For: 8.9, 8.7.2, 8.7.1.6_2
>
>
> The salesforce logic assumes the plural name can be created with just an 's' at the end, however objects such as Opportunity do not follow that pattern.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 2 months
[JBoss JIRA] (TEIID-3112) Incorrect plural name with parent to child join
by Matus Makovy (JIRA)
[ https://issues.jboss.org/browse/TEIID-3112?page=com.atlassian.jira.plugin... ]
Matus Makovy edited comment on TEIID-3112 at 10/12/15 3:16 AM:
---------------------------------------------------------------
Today I tried to reproduce other bug(originaly reported for Teiid Designer) with DV 6.2 (GA), but I got this error:
{quote}
Didn't understand relationship 'Opportunitys' in FROM part of query call. If you are attempting to use a custom relationship, be sure to append the '__r' after the custom relationship name. Please reference your WSDL or the describe call for the appropriate names
{quote}
when trying to submit this query:
{quote}
select distinct YEAR("Opportunity"."CloseDate") as "Opportunity_CloseDate1" from "SalesForceSource".salesforce.Campaign AS "Campaign" LEFT OUTER JOIN "SalesForceSource".salesforce.Opportunity AS "Opportunity" ON Campaign."Id" = Opportunity."CampaignId" order by YEAR("Opportunity"."CloseDate") ASC LIMIT 0 , 32
{quote}
This should be fixed in dv6.2, am I right ?
was (Author: mmakovy):
Today I tried to reproduce other bug(originaly reported for Teiid Designer) with DV 6.2 (GA), but I got this error:
??Didn't understand relationship 'Opportunitys' in FROM part of query call. If you are attempting to use a custom relationship, be sure to append the '__r' after the custom relationship name. Please reference your WSDL or the describe call for the appropriate names??
when trying to submit this query:
??
select distinct YEAR("Opportunity"."CloseDate") as "Opportunity_CloseDate1" from "SalesForceSource".salesforce.Campaign AS "Campaign" LEFT OUTER JOIN "SalesForceSource".salesforce.Opportunity AS "Opportunity" ON Campaign."Id" = Opportunity."CampaignId" order by YEAR("Opportunity"."CloseDate") ASC LIMIT 0 , 32??
This should be fixed in dv6.2, am I right ?
> Incorrect plural name with parent to child join
> -----------------------------------------------
>
> Key: TEIID-3112
> URL: https://issues.jboss.org/browse/TEIID-3112
> Project: Teiid
> Issue Type: Bug
> Components: Salesforce Connector
> Affects Versions: 7.7
> Reporter: Steven Hawkins
> Assignee: Steven Hawkins
> Fix For: 8.9, 8.7.2, 8.7.1.6_2
>
>
> The salesforce logic assumes the plural name can be created with just an 's' at the end, however objects such as Opportunity do not follow that pattern.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 2 months
[JBoss JIRA] (TEIID-3112) Incorrect plural name with parent to child join
by Matus Makovy (JIRA)
[ https://issues.jboss.org/browse/TEIID-3112?page=com.atlassian.jira.plugin... ]
Matus Makovy reopened TEIID-3112:
---------------------------------
Today I tried to reproduce other bug(originaly reported for Teiid Designer) with DV 6.2 (GA), but I got this error:
??Didn't understand relationship 'Opportunitys' in FROM part of query call. If you are attempting to use a custom relationship, be sure to append the '__r' after the custom relationship name. Please reference your WSDL or the describe call for the appropriate names??
when trying to submit this query:
??
select distinct YEAR("Opportunity"."CloseDate") as "Opportunity_CloseDate1" from "SalesForceSource".salesforce.Campaign AS "Campaign" LEFT OUTER JOIN "SalesForceSource".salesforce.Opportunity AS "Opportunity" ON Campaign."Id" = Opportunity."CampaignId" order by YEAR("Opportunity"."CloseDate") ASC LIMIT 0 , 32??
This should be fixed in dv6.2, am I right ?
> Incorrect plural name with parent to child join
> -----------------------------------------------
>
> Key: TEIID-3112
> URL: https://issues.jboss.org/browse/TEIID-3112
> Project: Teiid
> Issue Type: Bug
> Components: Salesforce Connector
> Affects Versions: 7.7
> Reporter: Steven Hawkins
> Assignee: Steven Hawkins
> Fix For: 8.9, 8.7.2, 8.7.1.6_2
>
>
> The salesforce logic assumes the plural name can be created with just an 's' at the end, however objects such as Opportunity do not follow that pattern.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 2 months