Did you build Zeppelin from sources or use binary release? From Ignite configuration I see that you use Ignite 2.x, but still there is no Zeppelin release with Ignite 2.x.
Also I asked you share cache configuration but I see only Ignite configuration. Could you please share configuration for cache Item? On Tue, Jul 18, 2017 at 2:16 PM, Megha Mittal <[email protected]> wrote: > Hi, > > When I execute the paragraph on zeppelin notebook, I get these logs in > Zeppelin : > > INFO [2017-07-18 16:43:03,550] ({pool-2-thread-17} > SchedulerFactory.java[jobStarted]:131) - Job > paragraph_1500273041300_616329143 started by scheduler > org.apache.zeppelin.interpreter.remote.RemoteInterpretershared_session474696442 > INFO [2017-07-18 16:43:03,551] ({pool-2-thread-17} > Paragraph.java[jobRun]:362) - run paragraph 20170717-120041_1127772031 using > ignite.ignitesql > org.apache.zeppelin.interpreter.LazyOpenInterpreter@491f00d6 > WARN [2017-07-18 16:43:03,556] ({pool-2-thread-17} > NotebookServer.java[afterStatusChange]:2058) - *Job > 20170717-120041_1127772031 is finished, status: ERROR, exception: null, > result: %text Failed to establish connection.* > INFO [2017-07-18 16:43:03,565] ({pool-2-thread-17} > SchedulerFactory.java[jobFinished]:137) - Job > paragraph_1500273041300_616329143 finished by scheduler > org.apache.zeppelin.interpreter.remote.RemoteInterpretershared_session474696442 > > > Also, here are my configurations are : > > IgniteConfiguration igniteConfiguration = new IgniteConfiguration(); > > TcpDiscoverySpi discoverySpi = new TcpDiscoverySpi(); > TcpDiscoveryS3IpFinder ipFinder = new TcpDiscoveryS3IpFinder(); > ipFinder.setAwsCredentials(new > BasicAWSCredentials(awsProperties.getAccessKey(), > awsProperties.getSecretKey())); > ipFinder.setBucketName(awsProperties.getIgniteBucketName()); > discoverySpi.setIpFinder(ipFinder); > igniteConfiguration.setDiscoverySpi(discoverySpi); > > MemoryPolicyConfiguration memoryPolicyConfiguration = new > MemoryPolicyConfiguration(); > > memoryPolicyConfiguration.setName(igniteProperties.getMemoryPolicyName()); > > memoryPolicyConfiguration.setInitialSize(igniteProperties.getMemoryRegionInitialSize()); > > memoryPolicyConfiguration.setMaxSize(igniteProperties.getMemoryRegionMaxSize()); > > memoryPolicyConfiguration.setPageEvictionMode(DataPageEvictionMode.DISABLED); > memoryPolicyConfiguration.setMetricsEnabled(true); > MemoryConfiguration memoryConfiguration = new MemoryConfiguration(); > memoryConfiguration.setMemoryPolicies(memoryPolicyConfiguration); > igniteConfiguration.setMemoryConfiguration(memoryConfiguration); > > > igniteConfiguration.setClientMode(igniteProperties.getClientModeEnabled()); > igniteConfiguration.setCommunicationSpi(new > TcpCommunicationSpi().setMessageQueueLimit(igniteProperties.getMessageQueueLimit())); > > > > > > > -- > View this message in context: > http://apache-ignite-users.70518.x6.nabble.com/Issue-with-Ignite-Zeppelin-tp14990p15052.html > Sent from the Apache Ignite Users mailing list archive at Nabble.com.
