我只有RDBMS PostgresSQL的经验,但我是Apache Spark和MongoDB的新手.
所以我有以下混淆请取悦我
1)Apache Spark SQL和MongoDB有什么区别?
2)我需要使用SparkSQL或MongoDB或组合方式的哪种场所/场景/域?
3)Apache Spark取代了像mondoDB,cassandra ......?
4)我在MongoDB中拥有多个TB的数据,我希望进行数据分析,然后需要提供报告.
所以,请分享我的知识,并给我你的投入
关心
Shankar S.
在wildfly 8.1.0服务器中部署我的耳朵时出现以下错误
1)错误:
Caused by: javax.resource.spi.InvalidPropertyException: Destination is mandatory",
"jboss.deployment.subunit.\"wildfly.ear\".\"wildfly- ejb.jar\".component.ReRattingMDB.START" => "org.jboss.msc.service.StartException in service jboss.deployment.subunit.\"wildfly.ear\".\"wildfly-ejb.jar\".component.ReRattingMDB.START: java.lang.RuntimeException: javax.resource.spi.InvalidPropertyException: Destination is mandatory
Run Code Online (Sandbox Code Playgroud)
2)MDB代码:
@MessageDriven(mappedName = "ReRatting_Queue",activationConfig =
{
@ActivationConfigProperty(propertyName="messagingType", propertyValue="javax.jms.MessageListener"),
@ActivationConfigProperty(propertyName="destinationType", propertyValue="javax.jms.Queue"),
@ActivationConfigProperty(propertyName="Destination", propertyValue="java:/queue/ReRatting_Queue"),
@ActivationConfigProperty(propertyName="ConnectionFactoryName", propertyValue="ConnectionFactory"),
@ActivationConfigProperty(propertyName="MaxPoolSize", propertyValue="1"),
@ActivationConfigProperty(propertyName="MaxMessages", propertyValue="1"),
@ActivationConfigProperty(propertyName = "useJNDI", propertyValue = "true")
})
Run Code Online (Sandbox Code Playgroud)
3)标准full.xml:
<jms-queue name="ReRatting_Queue">
<entry name="java:/queue/ReRatting_Queue"/>
<durable>true</durable>
</jms-queue>
Run Code Online (Sandbox Code Playgroud)
请帮助我任何一个为什么会出现此错误以及如何在wildfly8应用程序服务器中解决此问题
关心尚卡尔