Re: Not able to get Salesforce Platform events in JSON format with Camel Salesforce

2020-08-11 Thread Saiteja
I finally got it working with following: PlatformEvent platformEvent = exchange.getIn().getBody(PlatformEvent.class); System.out.println("JSON = " + JSON.toString(platformEvent.getEventData())); On Mon, Aug 10, 2020 at 7:11 PM Saiteja wrote: > Hi, > > I'm not able to

Not able to get Salesforce Platform events in JSON format with Camel Salesforce

2020-08-10 Thread Saiteja
null,"News_Content__c":"Fuse Test 2","CreatedById":"0053t07YosdAAC","CreatedDate":"2020-08-11T01:16:07.092Z","Test_c__c":"mytest"},"event":{"replayId":892348}} The null values or number values are coming as strings instead of actual objects. Example: "TestNull__c":null is expected But getting "TestNull__c":"null" Thank you. Saiteja Parna.

Re: Poor Performance of Camel-Sql Batch insertions with Oracle DB

2019-05-23 Thread Saiteja Parna
: do you tried to change initial and max pool > size ? Or connectionharvest settings? > > > King regards > > > Il Gio 23 Mag 2019, 23:12 Saiteja Parna ha > scritto: > > > This issue is resolved. My post might help others. > > Batch Update/Insert/Delete has i

Re: Poor Performance of Camel-Sql Batch insertions with Oracle DB

2019-05-23 Thread Saiteja Parna
/delete with very big records(like a record with 90 columns). Oracle team used my test case(Spring JDBC with Oracle Driver) and confirmed the bug. On Mon, Apr 15, 2019 at 10:36 AM Saiteja Parna wrote: > Hello, > > Batch update/insert are deprecated in the Oracle drivers 12c. Ple

Test Nabble Forum 2(Please Ignore)

2019-04-17 Thread Saiteja Parna
My posts are not getting delivered. Testing!

Test Nabble Forum (Please Ignore)

2019-04-17 Thread Saiteja Parna

Re: Rest DSL vs CXF: rs

2019-04-17 Thread Saiteja Parna
Before convert the body to string, log the response from webservice ( {{dummy.Service}} ) . On Wed, Apr 17, 2019 at 12:35 AM Omkar Palekar wrote: > hey, > > Can you help with below issue. > > while using Rest DSL response is coming in below format. > ds???w?V??S > > While using with CXF:rs

Re: Poor Performance of Camel-Sql Batch insertions with Oracle DB

2019-04-15 Thread Saiteja Parna
> http://camel.apache.org/schema/blueprint";> > > uri="timer://test?delay=2000&fixedRate=true&period=2000" /> > > > message="${in.header.CamelSqlRowCount} > records are retrieved" /> > >

Re: Poor Performance of Camel-Sql Batch insertions with Oracle DB

2019-04-12 Thread Saiteja Parna
http://camel.apache.org/schema/blueprint";> On Fri, Apr 12, 2019 at 11:42 AM Saiteja Parna wrote: > Fuse: 6.3.0.redhat-317 R10 > My Route in blueprint: Timer to SqlSelect to SqlInsert(batch=true) > Camel-sql retrieves 4000 records and does

Poor Performance of Camel-Sql Batch insertions with Oracle DB

2019-04-12 Thread Saiteja Parna
Fuse: 6.3.0.redhat-317 R10 My Route in blueprint: Timer to SqlSelect to SqlInsert(batch=true) Camel-sql retrieves 4000 records and does batch insertion to Oracle db. Camel-sql is taking 30 mins to insert 4000 records to Oracle database(remote) 12.2.0.1. Each record has 90 columns with no indexes,